    /* ─── Section backdrop ─────────────────────────────────────── */
    .enzo-agents-backdrop {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(232, 52, 122, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse 40% 30% at 18% 78%, rgba(205, 160, 127, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 82% 82%, rgba(232, 197, 160, 0.18) 0%, transparent 70%),
        linear-gradient(rgba(205, 160, 127, 0.07) 1px, transparent 1px) 0 0 / 44px 44px,
        linear-gradient(90deg, rgba(205, 160, 127, 0.07) 1px, transparent 1px) 0 0 / 44px 44px;
      mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
      pointer-events: none;
    }

    /* ─── Tabs ─────────────────────────────────────────────────── */
    .enzo-agents-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 28px;
    }
    .enzo-agents-tab {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 10px 18px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(42, 42, 42, 0.08);
      color: rgba(42, 42, 42, 0.7);
      font-size: 13.5px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(.2,.7,.2,1);
      box-shadow: 0 1px 2px rgba(42, 42, 42, 0.03);
    }
    .enzo-agents-tab:hover {
      color: #2a2a2a;
      border-color: rgba(42, 42, 42, 0.18);
      transform: translateY(-1px);
    }
    .enzo-agents-tab.is-active {
      color: #2a2a2a;
      background: #fff;
      border-color: var(--tab-accent, #e8347a);
      box-shadow:
        0 0 0 3px color-mix(in srgb, var(--tab-accent, #e8347a) 16%, transparent),
        0 10px 24px -12px color-mix(in srgb, var(--tab-accent, #e8347a) 80%, transparent);
    }
    .enzo-agents-tab-ico {
      display: inline-grid;
      place-items: center;
      width: 22px; height: 22px;
      border-radius: 7px;
      background: color-mix(in srgb, var(--tab-accent, #e8347a) 18%, transparent);
      border: 1px solid color-mix(in srgb, var(--tab-accent, #e8347a) 40%, transparent);
      color: #2a2a2a;
    }
    .enzo-agents-tab-ico svg { width: 13px; height: 13px; }
    .enzo-agents-tab-price {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: rgba(42, 42, 42, 0.4);
    }
    .enzo-agents-tab.is-active .enzo-agents-tab-price { color: #e8347a; }

    /* ─── Stage ────────────────────────────────────────────────── */
    .enzo-agents-stage {
      position: relative;
      width: 100%;
      min-height: 720px;
      display: flex;
      align-items: center;
      justify-content: center;
      --accent: #e8c5a0;
    }
    .enzo-agents-ring {
      position: absolute;
      top: 50%; left: 50%;
      width: 0; height: 0;
      pointer-events: none;
      z-index: 3;
    }
    /* SVG arcs that connect each pill to the card edge */
    .enzo-agents-arcs {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 1;
    }
    .enzo-agents-arcs .wire {
      fill: none;
      stroke: rgba(205, 160, 127, 0.32);
      stroke-width: 1;
      stroke-linecap: round;
    }
    .enzo-agents-arcs .wire.active {
      stroke: #e8347a;
      stroke-width: 1.4;
    }
    .enzo-agents-arcs .node {
      fill: rgba(205, 160, 127, 0.35);
      stroke: rgba(205, 160, 127, 0.5);
      stroke-width: 0.8;
    }
    .enzo-agents-arcs .node.active {
      fill: #e8347a;
      stroke: #fff;
    }
    .enzo-agents-arcs .pulse {
      fill: #e8347a;
      filter: drop-shadow(0 0 4px rgba(232, 52, 122, 0.6));
    }
    /* Autoplay progress bar under the active pill */
    .enzo-agents-progress {
      position: absolute;
      left: 14px; right: 14px;
      bottom: -8px;
      height: 2px;
      border-radius: 2px;
      background: rgba(205, 160, 127, 0.2);
      overflow: hidden;
      pointer-events: none;
    }
    .enzo-agents-progress::after {
      content: '';
      display: block;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, #e8347a, #f472b6);
      border-radius: inherit;
      transform-origin: left center;
      animation: enzoAgentsProgressFill 3500ms linear forwards;
    }
    @keyframes enzoAgentsProgressFill {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }
    .enzo-agents-pill {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) translate(var(--x, 0px), var(--y, 0px));
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px 8px 8px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(205, 160, 127, 0.28);
      color: rgba(42, 42, 42, 0.78);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      pointer-events: auto;
      white-space: nowrap;
      box-shadow: 0 4px 14px -6px rgba(42, 42, 42, 0.08);
      transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
      z-index: 3;
    }
    .enzo-agents-pill:hover {
      color: #2a2a2a;
      border-color: rgba(205, 160, 127, 0.65);
      transform: translate(-50%, -50%) translate(var(--x, 0px), calc(var(--y, 0px) - 2px));
    }
    .enzo-agents-pill.is-active {
      background: #2a2a2a;
      color: #fff;
      border-color: transparent;
      box-shadow:
        0 10px 30px -10px rgba(232, 52, 122, 0.45),
        0 0 0 3px rgba(255, 255, 255, 0.6),
        0 0 0 5px color-mix(in srgb, var(--accent) 35%, transparent);
    }
    .enzo-agents-pill-orb {
      width: 22px; height: 22px; border-radius: 50%;
      background: conic-gradient(from 220deg, #ffffff 0deg, var(--accent, #e8c5a0) 180deg, #ffffff 360deg);
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 12px color-mix(in srgb, var(--accent) 50%, transparent);
      flex-shrink: 0;
      position: relative;
    }
    .enzo-agents-pill-orb::after {
      content: '';
      position: absolute; inset: 3px; border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), transparent 55%);
    }
    .enzo-agents-pill-idx {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      color: rgba(42, 42, 42, 0.4);
      font-size: 11px;
      letter-spacing: 0.04em;
    }
    .enzo-agents-pill.is-active .enzo-agents-pill-idx { color: rgba(255, 255, 255, 0.55); }

    /* ─── Center Card ──────────────────────────────────────────── */
    .enzo-agents-card {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 360px;
      min-height: 440px;
      display: flex;
      flex-direction: column;
      background: #fff;
      border: 1px solid rgba(205, 160, 127, 0.3);
      border-radius: 22px;
      padding: 26px 26px 22px;
      box-shadow:
        0 30px 70px -28px rgba(42, 42, 42, 0.22),
        0 0 0 1px rgba(205, 160, 127, 0.08);
      transition: opacity 0.28s cubic-bezier(.4,0,.2,1), transform 0.28s cubic-bezier(.4,0,.2,1);
    }
    .enzo-agents-card.is-switching {
      opacity: 0;
      transform: translateY(6px);
    }
    .enzo-agents-card-cta { margin-top: auto; }
    .enzo-agents-card-corner {
      position: absolute;
      width: 14px; height: 14px;
      border: 1.5px solid var(--accent, #e8c5a0);
      pointer-events: none;
    }
    .enzo-agents-card-corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; border-top-left-radius: 7px; }
    .enzo-agents-card-corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; border-top-right-radius: 7px; }
    .enzo-agents-card-corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; border-bottom-left-radius: 7px; }
    .enzo-agents-card-corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; border-bottom-right-radius: 7px; }

    .enzo-agents-card-code {
      position: absolute;
      top: 12px; right: 18px;
      font-family: 'Inter', sans-serif;
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: rgba(42, 42, 42, 0.4);
      text-transform: uppercase;
    }
    .enzo-agents-card-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
    }
    .enzo-agents-card-orb {
      width: 44px; height: 44px; border-radius: 50%;
      background: conic-gradient(from 220deg, #ffffff 0deg, var(--accent, #e8c5a0) 180deg, #ffffff 360deg);
      box-shadow: 0 8px 24px -8px color-mix(in srgb, var(--accent) 80%, transparent), inset 0 0 0 1px rgba(0, 0, 0, 0.04);
      flex-shrink: 0;
      position: relative;
    }
    .enzo-agents-card-orb::after {
      content: ''; position: absolute; inset: 5px; border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), transparent 55%);
    }
    .enzo-agents-card-head h3 {
      font-size: 20px;
      font-weight: 600;
      color: #2a2a2a;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin: 0;
    }
    .enzo-agents-card-label {
      display: block;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(42, 42, 42, 0.42);
      margin-bottom: 10px;
    }
    .enzo-agents-card-features {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .enzo-agents-card-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: #3a3a3a;
      letter-spacing: -0.005em;
    }
    .enzo-agents-card-bullet {
      width: 8px; height: 8px; border-radius: 2px;
      background: linear-gradient(135deg, #e8347a, var(--accent, #e8c5a0));
      flex-shrink: 0;
    }
    .enzo-agents-card-collabs {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 20px;
    }
    .enzo-agents-card-collabs span {
      padding: 5px 11px;
      border-radius: 999px;
      background: #faf8f5;
      border: 1px solid rgba(205, 160, 127, 0.3);
      font-size: 12px;
      color: rgba(42, 42, 42, 0.78);
    }
    .enzo-agents-card-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 13px 18px;
      border-radius: 14px;
      background: #2a2a2a;
      color: #fff;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: -0.005em;
      border: 1px solid #2a2a2a;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    .enzo-agents-card-cta:hover {
      background: #e8347a;
      border-color: #e8347a;
      transform: translateY(-1px);
      box-shadow: 0 14px 28px -12px rgba(232, 52, 122, 0.55);
    }
    .enzo-agents-card-spark {
      width: 14px; height: 14px; border-radius: 50%;
      background: conic-gradient(from 220deg, #ffffff 0deg, var(--accent, #e8c5a0) 180deg, #ffffff 360deg);
    }

    /* ─── Nav ──────────────────────────────────────────────────── */
    .enzo-agents-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 24px;
      margin-bottom: 36px;
    }
    .enzo-agents-navbtn {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid rgba(42, 42, 42, 0.1);
      color: #2a2a2a;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: all 0.2s ease;
    }
    .enzo-agents-navbtn svg { width: 16px; height: 16px; }
    .enzo-agents-navbtn:hover {
      border-color: #e8347a;
      color: #e8347a;
      transform: translateY(-1px);
    }
    .enzo-agents-dots {
      display: flex;
      gap: 8px;
    }
    .enzo-agents-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(42, 42, 42, 0.15);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all 0.2s ease;
    }
    .enzo-agents-dot:hover { background: rgba(42, 42, 42, 0.35); }
    .enzo-agents-dot.is-active {
      width: 24px;
      border-radius: 999px;
      background: #e8347a;
    }

    /* ─── Pricing strip ────────────────────────────────────────── */
    .enzo-agents-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      max-width: 960px;
      margin: 0 auto;
    }
    .enzo-agents-strip-col {
      position: relative;
      padding: 20px 22px;
      background: #fff;
      border: 1px solid rgba(205, 160, 127, 0.28);
      border-radius: 18px;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      transition: all 0.22s ease;
    }
    .enzo-agents-strip-col:hover {
      border-color: rgba(232, 52, 122, 0.45);
      transform: translateY(-2px);
      box-shadow: 0 22px 40px -22px rgba(232, 52, 122, 0.25);
    }
    .enzo-agents-strip-col-pop {
      background: linear-gradient(135deg, rgba(232, 52, 122, 0.06), rgba(232, 197, 160, 0.1));
      border-color: rgba(232, 52, 122, 0.4);
    }
    .enzo-agents-strip-eyebrow {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(42, 42, 42, 0.5);
      margin-bottom: 10px;
    }
    .enzo-agents-strip-col-pop .enzo-agents-strip-eyebrow span { color: #e8347a; }
    .enzo-agents-strip-price {
      font-family: 'Inter', sans-serif;
      color: rgba(42, 42, 42, 0.6);
      font-size: 13.5px;
      margin-bottom: 6px;
    }
    .enzo-agents-strip-price strong {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #2a2a2a;
      margin-right: 2px;
    }
    .enzo-agents-strip-price span { font-size: 12px; color: rgba(42, 42, 42, 0.45); }
    .enzo-agents-strip-col p {
      font-size: 13px;
      color: #666;
      line-height: 1.5;
      margin: 0 0 12px;
    }
    .enzo-agents-strip-link {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #e8347a;
      font-size: 13px;
      font-weight: 600;
    }

    /* ─── Responsive ───────────────────────────────────────────── */
    @media (max-width: 960px) {
      .enzo-agents-stage { min-height: 560px; }
      .enzo-agents-strip { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .enzo-agents-stage { min-height: auto; padding: 0; display: block; }
      .enzo-agents-ring,
      .enzo-agents-arcs { display: none !important; }
      .enzo-agents-card {
        position: relative;
        inset: auto;
        transform: none;
        max-width: 100%;
        min-height: auto;
        padding: 22px 20px 18px;
        margin: 0 auto;
      }
      .enzo-agents-card-head h3 { font-size: 18px; }
      .enzo-agents-tab-price { display: none; }
      .enzo-agents-nav { margin-top: 16px; }
    }
    
