
        .btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: var(--space-xs);
          font-family: var(--font-sans);
          font-weight: var(--font-weight-semibold);
          border-radius: var(--radius-md);
          border: none;
          cursor: pointer;
          transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
          text-decoration: none;
        }

        .btn:hover:not(:disabled) {
          transform: translateY(-2px);
        }

        .btn:active:not(:disabled) {
          transform: translateY(0);
        }

        .btn:disabled {
          opacity: 0.5;
          cursor: not-allowed;
        }

        /* Variants */
        .btn-primary {
          background: var(--gradient-primary);
          color: white;
        }

        .btn-primary:hover:not(:disabled) {
          box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
          background: var(--color-bg-tertiary);
          color: var(--color-text-primary);
        }

        .btn-secondary:hover:not(:disabled) {
          background: var(--color-bg-secondary);
          box-shadow: var(--shadow-md);
        }

        .btn-outline {
          background: transparent;
          color: var(--color-accent-primary);
          border: var(--border-width-thick) solid var(--color-accent-primary);
        }

        .btn-outline:hover:not(:disabled) {
          background: var(--color-accent-primary);
          color: white;
        }

        .btn-ghost {
          background: transparent;
          color: var(--color-text-secondary);
        }

        .btn-ghost:hover:not(:disabled) {
          background: var(--color-bg-secondary);
          color: var(--color-text-primary);
        }

        /* Sizes */
        .btn-sm {
          padding: var(--space-xs) var(--space-md);
          font-size: var(--font-size-sm);
        }

        .btn-md {
          padding: var(--space-sm) var(--space-lg);
          font-size: var(--font-size-base);
        }

        .btn-lg {
          padding: var(--space-md) var(--space-xl);
          font-size: var(--font-size-lg);
        }
      


        .glass-nav {
          margin: 20px 20px 0;
          padding: 16px 32px;
          border-radius: 16px;
          position: sticky;
          top: 20px;
          z-index: 100;
        }

        .nav-container {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 32px;
        }

        .nav-logo {
          text-decoration: none;
        }

        .logo-text {
          font-size: 24px;
          font-weight: 800;
          background: linear-gradient(135deg, #fff 0%, #8b5cf6 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .nav-links {
          display: flex;
          align-items: center;
          gap: 32px;
          flex: 1;
          justify-content: center;
        }

        .nav-link {
          color: rgba(255, 255, 255, 0.8);
          text-decoration: none;
          font-size: 15px;
          font-weight: 500;
          transition: color 0.2s;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .nav-link:hover,
        .nav-link.active {
          color: #fff;
        }

        .nav-cta {
          flex-shrink: 0;
        }

        /* Hamburger — hidden on desktop */
        .nav-hamburger {
          display: none;
          flex-direction: column;
          gap: 5px;
          padding: 8px;
          cursor: pointer;
          background: none;
          border: none;
        }

        .hamburger-line {
          display: block;
          width: 24px;
          height: 2px;
          background: rgba(255, 255, 255, 0.9);
          border-radius: 2px;
          transition: transform 0.3s, opacity 0.3s;
        }

        .hamburger-line.open:nth-child(1) {
          transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger-line.open:nth-child(2) {
          opacity: 0;
        }

        .hamburger-line.open:nth-child(3) {
          transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile dropdown — hidden on desktop */
        .nav-mobile-dropdown {
          display: none;
        }

        /* ===== MOBILE ===== */
        @media (max-width: 768px) {
          .glass-nav {
            margin: 10px 10px 0;
            padding: 12px 16px;
          }

          .nav-links {
            display: none;
          }

          .nav-cta {
            display: none;
          }

          .nav-hamburger {
            display: flex;
          }

          .nav-mobile-dropdown {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
          }

          .nav-mobile-link {
            display: block;
            padding: 10px 12px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
          }

          .nav-mobile-link:hover,
          .nav-mobile-link.active {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
          }

          .nav-mobile-cta {
            margin-top: 8px;
            text-decoration: none;
          }
        }
      


        /* Cosmic Page Layout */
        .cosmic-page {
          position: relative;
          min-height: 100vh;
          overflow-x: hidden;
        }

        .content-layer {
          position: relative;
          z-index: 10;
          padding: 0;
        }

        /* Glassmorphism Effect */
        .glass {
          background: rgba(255, 255, 255, 0.03);
          backdrop-filter: blur(20px);
          border: 1px solid rgba(255, 255, 255, 0.1);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        /* Hero Section */
        .agents-hero {
          margin: 20px;
          padding: 60px 48px;
          border-radius: 24px;
          text-align: center;
        }

        .agents-hero .container {
          max-width: 1200px;
          margin: 0 auto;
        }

        .hero-eyebrow {
          font-family: 'JetBrains Mono', monospace;
          font-size: 12px;
          letter-spacing: 0.24em;
          text-transform: uppercase;
          color: rgba(167, 139, 250, 0.75);
          margin-bottom: 22px;
          font-weight: 700;
        }

        .hero-title {
          font-size: clamp(44px, 6vw, 64px);
          font-weight: 900;
          color: #fff;
          margin-bottom: 28px;
          line-height: 1.05;
          letter-spacing: -0.02em;
          text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
        }

        .hero-subtitle {
          background: linear-gradient(135deg, #a78bfa 0%, #67e8f9 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          filter: drop-shadow(0 0 32px rgba(139, 92, 246, 0.35));
        }

        .hero-description {
          font-size: 19px;
          color: rgba(255, 255, 255, 0.82);
          margin-bottom: 40px;
          line-height: 1.65;
          max-width: 720px;
          margin-left: auto;
          margin-right: auto;
          text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-stats {
          display: flex;
          gap: 14px;
          justify-content: center;
          flex-wrap: wrap;
        }

        .stat-badge {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          padding: 12px 20px;
          background:
            radial-gradient(ellipse at top, rgba(139, 92, 246, 0.18), transparent 70%),
            rgba(255, 255, 255, 0.04);
          border: 1px solid rgba(167, 139, 250, 0.28);
          border-radius: 999px;
          transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms, box-shadow 240ms;
        }

        .stat-badge:hover {
          transform: translateY(-2px);
          border-color: rgba(167, 139, 250, 0.55);
          box-shadow: 0 10px 28px rgba(139, 92, 246, 0.22);
        }

        .stat-icon {
          font-size: 16px;
          line-height: 1;
        }

        .stat-text {
          font-family: 'JetBrains Mono', monospace;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          color: rgba(255, 255, 255, 0.92);
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* Why Agents Section */
        .why-agents {
          margin: 40px 20px;
          padding: 72px 48px;
          border-radius: 24px;
          text-align: center;
        }

        .why-agents .container {
          max-width: 1240px;
          margin: 0 auto;
        }

        .why-eyebrow {
          font-family: 'JetBrains Mono', monospace;
          font-size: 11px;
          letter-spacing: 0.22em;
          text-transform: uppercase;
          color: rgba(167, 139, 250, 0.7);
          margin-bottom: 18px;
          font-weight: 700;
        }

        .why-title {
          font-size: clamp(34px, 4.6vw, 50px);
          font-weight: 800;
          color: #fff;
          line-height: 1.05;
          letter-spacing: -0.02em;
          margin-bottom: 14px;
          text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
        }

        .why-title em {
          font-style: normal;
          background: linear-gradient(135deg, #a78bfa 0%, #67e8f9 100%);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
        }

        .why-sub {
          font-size: 17px;
          color: rgba(255, 255, 255, 0.72);
          max-width: 720px;
          margin: 0 auto 56px;
          line-height: 1.6;
        }

        .why-agents-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 18px;
        }

        .why-card {
          padding: 32px 30px 30px;
          border-radius: 18px;
          background:
            radial-gradient(ellipse at top, rgba(139, 92, 246, 0.10), transparent 65%),
            rgba(255, 255, 255, 0.025);
          border: 1px solid rgba(255, 255, 255, 0.08);
          text-align: left;
          transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms, box-shadow 280ms;
          position: relative;
        }

        .why-card:hover {
          transform: translateY(-4px);
          border-color: rgba(167, 139, 250, 0.4);
          box-shadow: 0 18px 48px rgba(139, 92, 246, 0.2);
        }

        .why-num {
          font-family: 'JetBrains Mono', monospace;
          font-size: 11px;
          letter-spacing: 0.22em;
          text-transform: uppercase;
          color: rgba(167, 139, 250, 0.7);
          margin-bottom: 14px;
          font-weight: 700;
        }

        .why-glyph {
          width: 52px;
          height: 52px;
          margin-bottom: 22px;
          border-radius: 14px;
          background:
            radial-gradient(ellipse at top, rgba(139, 92, 246, 0.30), transparent 60%),
            linear-gradient(180deg, rgba(167, 139, 250, 0.06), rgba(99, 102, 241, 0.04));
          border: 1px solid rgba(167, 139, 250, 0.42);
          display: inline-flex;
          align-items: center;
          justify-content: center;
          box-shadow:
            0 8px 22px rgba(139, 92, 246, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2);
        }

        .why-glyph > span {
          font-family: 'JetBrains Mono', ui-monospace, monospace;
          font-size: 24px;
          font-weight: 700;
          letter-spacing: -0.04em;
          line-height: 1;
          background: linear-gradient(135deg, #d4c5ff 0%, #67e8f9 100%);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.55));
        }

        .why-card-title {
          font-size: 22px;
          font-weight: 800;
          color: #fff;
          letter-spacing: -0.01em;
          line-height: 1.2;
          margin-bottom: 14px;
        }

        .why-card-title em {
          font-style: normal;
          background: linear-gradient(135deg, #d4c5ff 0%, #67e8f9 100%);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
        }

        .why-card p {
          font-size: 15px;
          line-height: 1.65;
          color: rgba(255, 255, 255, 0.78);
          margin: 0;
        }

        /* Fractal Section */
        .fractal-section {
          margin: 40px 20px;
          padding: 60px 48px;
          border-radius: 24px;
        }

        .fractal-container {
          max-width: 1200px;
          margin: 0 auto;
        }

        /* Philosophy */
        .agents-philosophy {
          text-align: center;
          margin-bottom: 56px;
          max-width: 880px;
          margin-left: auto;
          margin-right: auto;
        }

        .philosophy-eyebrow {
          font-family: 'JetBrains Mono', monospace;
          font-size: 11px;
          letter-spacing: 0.24em;
          text-transform: uppercase;
          color: rgba(167, 139, 250, 0.7);
          margin-bottom: 18px;
          font-weight: 700;
        }

        .philosophy-heading {
          font-size: clamp(28px, 3.6vw, 38px);
          font-weight: 800;
          color: rgba(255, 255, 255, 0.96);
          margin-bottom: 16px;
          line-height: 1.25;
          letter-spacing: -0.01em;
          text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
        }

        .philosophy-heading em {
          font-style: normal;
          background: linear-gradient(135deg, #a78bfa 0%, #67e8f9 100%);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
        }

        .philosophy-subtext {
          font-family: 'JetBrains Mono', monospace;
          font-size: 12px;
          letter-spacing: 0.12em;
          text-transform: uppercase;
          color: rgba(167, 139, 250, 0.65);
          font-style: normal;
        }

        /* Fractal Tabs */
        .fractal-tabs {
          display: flex;
          gap: 8px;
          margin-bottom: 48px;
          justify-content: center;
          flex-wrap: wrap;
        }

        .fractal-tab {
          background: rgba(255, 255, 255, 0.025);
          border: 1px solid rgba(255, 255, 255, 0.08);
          border-radius: 999px;
          padding: 10px 18px;
          display: inline-flex;
          align-items: center;
          cursor: pointer;
          transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms, background 240ms, box-shadow 240ms;
          color: rgba(255, 255, 255, 0.7);
        }

        .fractal-tab:hover {
          background: rgba(255, 255, 255, 0.05);
          border-color: rgba(167, 139, 250, 0.3);
          transform: translateY(-2px);
        }

        .fractal-tab.active {
          background:
            radial-gradient(ellipse at top, rgba(139, 92, 246, 0.22), transparent 70%),
            rgba(167, 139, 250, 0.08);
          border-color: rgba(167, 139, 250, 0.55);
          color: #fff;
          box-shadow: 0 8px 22px rgba(139, 92, 246, 0.22);
        }

        .tab-label {
          font-family: 'JetBrains Mono', monospace;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 0.08em;
          text-transform: uppercase;
        }

        /* Agents Grid */
        .agents-grid-area {
          min-height: 400px;
        }

        /* In Depth Tab */
        .indepth-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 16px;
          min-height: 400px;
        }

        .indepth-card {
          padding: 28px 26px 24px;
          border-radius: 18px;
          background:
            radial-gradient(ellipse at top, rgba(139, 92, 246, 0.10), transparent 65%),
            rgba(255, 255, 255, 0.025);
          border: 1px solid rgba(255, 255, 255, 0.08);
          text-decoration: none;
          display: flex;
          flex-direction: column;
          gap: 14px;
          transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms, box-shadow 280ms;
          cursor: pointer;
        }

        .indepth-ready:hover {
          transform: translateY(-4px);
          border-color: rgba(167, 139, 250, 0.55);
          box-shadow: 0 18px 48px rgba(139, 92, 246, 0.22);
        }

        .indepth-coming {
          opacity: 0.55;
          cursor: default;
        }

        .indepth-coming:hover {
          transform: none;
          box-shadow: none;
        }

        .indepth-glyph {
          width: 44px;
          height: 44px;
          border-radius: 12px;
          background:
            radial-gradient(ellipse at top, rgba(139, 92, 246, 0.28), transparent 60%),
            linear-gradient(180deg, rgba(167, 139, 250, 0.06), rgba(99, 102, 241, 0.04));
          border: 1px solid rgba(167, 139, 250, 0.4);
          display: inline-flex;
          align-items: center;
          justify-content: center;
          box-shadow:
            0 6px 18px rgba(139, 92, 246, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            inset 0 -1px 0 rgba(0, 0, 0, 0.18);
        }

        .indepth-glyph > span {
          font-family: 'JetBrains Mono', ui-monospace, monospace;
          font-size: 20px;
          font-weight: 700;
          letter-spacing: -0.04em;
          line-height: 1;
          background: linear-gradient(135deg, #d4c5ff 0%, #67e8f9 100%);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
        }

        .indepth-name {
          font-size: 20px;
          font-weight: 800;
          color: #fff;
          margin: 0;
          letter-spacing: -0.01em;
          line-height: 1.25;
        }

        .indepth-desc {
          font-size: 14px;
          color: rgba(255, 255, 255, 0.72);
          line-height: 1.6;
          margin: 0;
        }

        .indepth-link {
          font-family: 'JetBrains Mono', monospace;
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 0.16em;
          text-transform: uppercase;
          color: rgba(167, 139, 250, 0.95);
          margin-top: auto;
        }

        .indepth-soon {
          font-family: 'JetBrains Mono', monospace;
          font-size: 11px;
          font-weight: 700;
          color: rgba(255, 255, 255, 0.35);
          text-transform: uppercase;
          letter-spacing: 0.16em;
          margin-top: auto;
        }

        .agents-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
          gap: 24px;
        }

        .agent-card-actions {
          display: flex;
          gap: 8px;
          justify-content: center;
          margin-top: auto;
          padding-top: 16px;
          flex-wrap: wrap;
        }

        .agent-card-fullpage {
          text-decoration: none;
        }

        .agent-card {
          padding: 28px 24px 22px;
          border-radius: 18px;
          background:
            radial-gradient(ellipse at top, rgba(139, 92, 246, 0.10), transparent 65%),
            rgba(255, 255, 255, 0.025);
          border: 1px solid rgba(255, 255, 255, 0.08);
          transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms, box-shadow 280ms;
          text-align: center;
          display: flex;
          flex-direction: column;
        }

        .agent-card:hover {
          transform: translateY(-4px);
          border-color: rgba(167, 139, 250, 0.45);
          box-shadow: 0 18px 48px rgba(139, 92, 246, 0.22);
        }

        .agent-icon {
          font-size: 44px;
          margin-bottom: 14px;
          line-height: 1;
          filter: drop-shadow(0 0 16px currentColor);
        }

        .agent-name {
          font-size: 20px;
          font-weight: 800;
          color: #fff;
          margin-bottom: 6px;
          letter-spacing: -0.01em;
          line-height: 1.2;
        }

        .agent-class {
          font-family: 'JetBrains Mono', monospace;
          font-size: 10.5px;
          letter-spacing: 0.18em;
          text-transform: uppercase;
          color: rgba(167, 139, 250, 0.85);
          font-weight: 700;
          margin-bottom: 12px;
        }

        .agent-specialty {
          font-size: 14px;
          color: rgba(255, 255, 255, 0.72);
          line-height: 1.55;
          margin-bottom: 18px;
        }

        .agent-meta {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding-top: 14px;
          border-top: 1px solid rgba(255, 255, 255, 0.06);
          margin-bottom: 10px;
          gap: 8px;
        }

        .agent-tools {
          font-family: 'JetBrains Mono', monospace;
          font-size: 11px;
          letter-spacing: 0.14em;
          text-transform: uppercase;
          color: rgba(255, 255, 255, 0.55);
          font-weight: 600;
        }

        .agent-status {
          font-family: 'JetBrains Mono', monospace;
          font-size: 9.5px;
          font-weight: 700;
          padding: 4px 11px;
          border-radius: 999px;
          text-transform: uppercase;
          letter-spacing: 0.18em;
        }

        .agent-status.ready {
          background: rgba(16, 185, 129, 0.10);
          color: rgba(110, 231, 183, 0.95);
          border: 1px solid rgba(16, 185, 129, 0.32);
        }

        .agent-status.v2 {
          background: rgba(167, 139, 250, 0.10);
          color: rgba(167, 139, 250, 0.95);
          border: 1px solid rgba(167, 139, 250, 0.35);
        }

        /* "Coming Soon" — for V3 / far-future; softer amber, not aggressive red */
        .agent-status.coming-soon {
          background: rgba(251, 191, 36, 0.10);
          color: rgba(253, 224, 71, 0.95);
          border: 1px solid rgba(251, 191, 36, 0.32);
        }

        .agent-savings {
          font-family: 'JetBrains Mono', monospace;
          font-size: 11px;
          letter-spacing: 0.12em;
          text-transform: uppercase;
          color: rgba(110, 231, 183, 0.85);
          font-weight: 700;
          margin-bottom: 4px;
        }

        /* First to Market Badge - Card */
        .first-to-market-badge {
          display: inline-block;
          align-self: center;
          padding: 4px 12px;
          margin-bottom: 14px;
          font-family: 'JetBrains Mono', monospace;
          font-size: 9.5px;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 0.2em;
          color: rgba(253, 224, 71, 0.95);
          background: rgba(251, 191, 36, 0.10);
          border: 1px solid rgba(251, 191, 36, 0.35);
          border-radius: 999px;
        }

        /* Empty State */
        .empty-state {
          text-align: center;
          padding: 80px 20px;
        }

        .empty-icon {
          font-size: 64px;
          margin-bottom: 24px;
          opacity: 0.5;
        }

        .empty-state h3 {
          font-size: 24px;
          color: #fff;
          margin-bottom: 12px;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .empty-state p {
          font-size: 16px;
          color: rgba(255, 255, 255, 0.6);
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* Modal */
        .modal-overlay {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.7);
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 1000;
          padding: 24px;
        }

        .modal {
          max-width: 700px;
          width: 100%;
          max-height: 85vh;
          overflow-y: auto;
          border-radius: 24px;
          position: relative;
        }

        .modal-close {
          position: absolute;
          top: 24px;
          right: 24px;
          background: rgba(255, 255, 255, 0.1);
          border: 1px solid rgba(255, 255, 255, 0.2);
          width: 40px;
          height: 40px;
          border-radius: 50%;
          font-size: 28px;
          line-height: 1;
          cursor: pointer;
          transition: all 0.2s;
          color: #fff;
        }

        .modal-close:hover {
          background: rgba(255, 255, 255, 0.15);
          border-color: rgba(139, 92, 246, 0.5);
        }

        .modal-header {
          padding: 48px 48px 28px;
          text-align: center;
          border-bottom: 1px solid rgba(255, 255, 255, 0.06);
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        .modal-icon {
          font-size: 64px;
          margin-bottom: 18px;
          line-height: 1;
          filter: drop-shadow(0 0 24px currentColor);
        }

        .modal-header h2 {
          font-size: clamp(28px, 3.4vw, 38px);
          font-weight: 800;
          color: #fff;
          margin-bottom: 6px;
          letter-spacing: -0.01em;
          line-height: 1.15;
          background: linear-gradient(135deg, #fff 0%, #d4c5ff 100%);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
        }

        .modal-class {
          font-size: 16px;
          color: rgba(139, 92, 246, 0.9);
          font-weight: 600;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .modal-body {
          padding: 32px 48px;
        }

        .modal-description {
          font-size: 18px;
          line-height: 1.7;
          color: rgba(255, 255, 255, 0.85);
          margin-bottom: 32px;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .modal-body h3 {
          font-size: 20px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 16px;
          margin-top: 32px;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .capability-list {
          list-style: none;
          padding: 0;
          margin-bottom: 24px;
        }

        .capability-list li {
          padding: 12px 0;
          color: rgba(255, 255, 255, 0.8);
          font-size: 15px;
          line-height: 1.6;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .capability-list li::before {
          content: '✓';
          color: #10b981;
          font-weight: 700;
          margin-right: 12px;
          font-size: 18px;
        }

        .replaces-box,
        .savings-box {
          padding: 16px 20px;
          background: rgba(139, 92, 246, 0.1);
          border-left: 4px solid rgba(139, 92, 246, 0.6);
          border-radius: 8px;
          margin-top: 16px;
          color: rgba(255, 255, 255, 0.85);
          font-size: 15px;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .savings-box {
          background: rgba(16, 185, 129, 0.1);
          border-left-color: rgba(16, 185, 129, 0.6);
        }

        .coming-soon-notice {
          padding: 16px 20px;
          background: rgba(139, 0, 0, 0.1);
          border-left: 4px solid rgba(220, 38, 38, 0.6);
          border-radius: 8px;
          margin-bottom: 16px;
          color: rgba(255, 255, 255, 0.85);
          font-size: 15px;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .coming-soon-notice strong {
          color: #dc2626;
        }

        .market-value-box {
          padding: 16px 20px;
          background: rgba(251, 191, 36, 0.08);
          border-left: 4px solid rgba(251, 191, 36, 0.6);
          border-radius: 8px;
          margin-top: 16px;
          color: rgba(255, 255, 255, 0.85);
          font-size: 15px;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .market-value-box strong {
          color: #fbbf24;
        }

        /* Modal Header Enhanced */
        .modal-header-info {
          flex: 1;
          text-align: center;
          padding: 0 24px;
        }

        .modal-badges {
          display: flex;
          gap: 8px;
          justify-content: center;
          margin-bottom: 14px;
          flex-wrap: wrap;
        }

        .modal-badge {
          padding: 5px 14px;
          border-radius: 999px;
          font-family: 'JetBrains Mono', monospace;
          font-size: 10.5px;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 0.18em;
        }

        .modal-badge.class {
          background: rgba(167, 139, 250, 0.10);
          color: rgba(167, 139, 250, 0.95);
          border: 1px solid rgba(167, 139, 250, 0.35);
        }

        .modal-badge.category {
          background: rgba(255, 255, 255, 0.04);
          color: rgba(255, 255, 255, 0.75);
          border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .modal-badge.coming-soon-badge {
          background: rgba(239, 68, 68, 0.10);
          color: rgba(252, 165, 165, 0.95);
          border: 1px solid rgba(239, 68, 68, 0.35);
        }

        .modal-badge.first-market {
          background: rgba(251, 191, 36, 0.10);
          color: rgba(253, 224, 71, 0.95);
          border: 1px solid rgba(251, 191, 36, 0.35);
        }

        .modal-badge.v2 {
          background: rgba(167, 139, 250, 0.10);
          color: rgba(167, 139, 250, 0.95);
          border: 1px solid rgba(167, 139, 250, 0.35);
        }

        .modal-badge.v3 {
          background: rgba(103, 232, 249, 0.08);
          color: rgba(103, 232, 249, 0.95);
          border: 1px solid rgba(103, 232, 249, 0.30);
        }

        /* V2/V3 notice — purple, not aggressive red */
        .v2-notice {
          padding: 16px 20px;
          background: rgba(167, 139, 250, 0.06);
          border-left: 3px solid rgba(167, 139, 250, 0.55);
          border-radius: 0 10px 10px 0;
          margin-bottom: 16px;
          color: rgba(255, 255, 255, 0.82);
          font-size: 14px;
          line-height: 1.55;
        }

        .v2-notice strong {
          color: rgba(167, 139, 250, 0.95);
          font-weight: 700;
        }

        .v3-notice {
          background: rgba(103, 232, 249, 0.05);
          border-left-color: rgba(103, 232, 249, 0.5);
        }

        .v3-notice strong {
          color: rgba(103, 232, 249, 0.95);
        }

        .modal-nickname {
          font-family: 'JetBrains Mono', monospace;
          font-size: 12px;
          letter-spacing: 0.16em;
          text-transform: uppercase;
          color: rgba(167, 139, 250, 0.85);
          font-style: normal;
          margin: 0 0 10px 0;
        }

        .modal-personality {
          font-size: 15px;
          color: rgba(255, 255, 255, 0.72);
          line-height: 1.6;
          margin-top: 14px;
          max-width: 480px;
        }

        .modal-stats {
          display: flex;
          gap: 10px;
          justify-content: center;
          margin-top: 24px;
          flex-wrap: wrap;
        }

        .modal-stats .stat-item {
          text-align: center;
          padding: 12px 20px;
          background:
            radial-gradient(ellipse at top, rgba(139, 92, 246, 0.14), transparent 70%),
            rgba(255, 255, 255, 0.025);
          border-radius: 14px;
          border: 1px solid rgba(167, 139, 250, 0.22);
          min-width: 100px;
        }

        .modal-stats .stat-value {
          display: block;
          font-family: 'JetBrains Mono', monospace;
          font-size: 22px;
          font-weight: 800;
          line-height: 1;
          background: linear-gradient(135deg, #d4c5ff 0%, #67e8f9 100%);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          margin-bottom: 6px;
        }

        .modal-stats .stat-label {
          display: block;
          font-family: 'JetBrains Mono', monospace;
          font-size: 10px;
          font-weight: 700;
          text-transform: uppercase;
          color: rgba(167, 139, 250, 0.7);
          letter-spacing: 0.18em;
        }

        /* Modal Tabs */
        .modal-tabs {
          display: flex;
          gap: 8px;
          padding: 24px 48px;
          border-bottom: 1px solid rgba(255, 255, 255, 0.06);
          justify-content: center;
          flex-wrap: wrap;
        }

        .modal-tab {
          background: rgba(255, 255, 255, 0.025);
          border: 1px solid rgba(255, 255, 255, 0.08);
          border-radius: 999px;
          padding: 10px 20px;
          display: inline-flex;
          align-items: center;
          cursor: pointer;
          transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms, background 240ms, box-shadow 240ms;
          color: rgba(255, 255, 255, 0.7);
          font-family: 'JetBrains Mono', monospace;
          font-size: 11.5px;
          font-weight: 700;
          letter-spacing: 0.14em;
          text-transform: uppercase;
        }

        .modal-tab:hover {
          background: rgba(255, 255, 255, 0.05);
          border-color: rgba(167, 139, 250, 0.3);
          transform: translateY(-1px);
        }

        .modal-tab.active {
          background:
            radial-gradient(ellipse at top, rgba(139, 92, 246, 0.22), transparent 70%),
            rgba(167, 139, 250, 0.08);
          border-color: rgba(167, 139, 250, 0.55);
          color: #fff;
          box-shadow: 0 8px 22px rgba(139, 92, 246, 0.22);
        }

        /* Tab Content */
        .tab-content {
          animation: fadeIn 0.3s ease-in-out;
        }

        @keyframes fadeIn {
          from { opacity: 0; transform: translateY(10px); }
          to { opacity: 1; transform: translateY(0); }
        }

        /* Why Exist Section */
        .why-exist-section {
          margin-bottom: 32px;
          padding: 24px;
          background: rgba(139, 92, 246, 0.08);
          border-left: 4px solid rgba(139, 92, 246, 0.6);
          border-radius: 8px;
        }

        .why-exist-section h3 {
          font-size: 18px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 12px;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .why-exist-section p {
          font-size: 16px;
          line-height: 1.7;
          color: rgba(255, 255, 255, 0.85);
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* Capabilities Section */
        .capabilities-section {
          margin-bottom: 32px;
        }

        .capabilities-section h3 {
          font-size: 18px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 16px;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        /* Core Tools Grid */
        .core-tools-section {
          margin-bottom: 32px;
        }

        .core-tools-section h3 {
          font-size: 18px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 20px;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .core-tools-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 16px;
        }

        .core-tool-card {
          padding: 20px;
          background: rgba(255, 255, 255, 0.03);
          border: 1px solid rgba(255, 255, 255, 0.08);
          border-radius: 12px;
          transition: all 0.2s;
        }

        .core-tool-card:hover {
          background: rgba(255, 255, 255, 0.05);
          border-color: rgba(139, 92, 246, 0.3);
          transform: translateY(-2px);
        }

        .core-tool-icon {
          font-size: 32px;
          margin-bottom: 12px;
        }

        .core-tool-card h4 {
          font-size: 16px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 8px;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .core-tool-desc {
          font-size: 14px;
          line-height: 1.6;
          color: rgba(255, 255, 255, 0.75);
          margin-bottom: 8px;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .core-tool-examples {
          font-size: 13px;
          line-height: 1.5;
          color: rgba(255, 255, 255, 0.6);
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* Best For Section */
        .best-for-section {
          margin-bottom: 32px;
        }

        .best-for-section h3 {
          font-size: 18px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 16px;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .best-for-list {
          list-style: none;
          padding: 0;
        }

        .best-for-list li {
          padding: 10px 0;
          color: rgba(255, 255, 255, 0.8);
          font-size: 15px;
          line-height: 1.5;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .best-for-list li::before {
          content: '→';
          color: #8b5cf6;
          font-weight: 700;
          margin-right: 12px;
        }

        /* Frameworks Section */
        .frameworks-section {
          display: flex;
          flex-direction: column;
          gap: 24px;
        }

        .framework-card {
          padding: 24px;
          background: rgba(255, 255, 255, 0.03);
          border: 1px solid rgba(255, 255, 255, 0.08);
          border-radius: 12px;
        }

        .framework-header {
          display: flex;
          align-items: center;
          gap: 12px;
          margin-bottom: 16px;
        }

        .framework-icon {
          font-size: 32px;
        }

        .framework-header h3 {
          font-size: 20px;
          font-weight: 700;
          color: #fff;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .framework-description {
          font-size: 16px;
          line-height: 1.7;
          color: rgba(255, 255, 255, 0.85);
          margin-bottom: 20px;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .framework-methods h4,
        .framework-validates h4,
        .framework-examples h4 {
          font-size: 14px;
          font-weight: 700;
          color: rgba(139, 92, 246, 0.9);
          margin-bottom: 12px;
          margin-top: 20px;
          text-transform: uppercase;
          letter-spacing: 0.5px;
        }

        .framework-methods ul {
          list-style: none;
          padding: 0;
        }

        .framework-methods li {
          padding: 8px 0;
          color: rgba(255, 255, 255, 0.75);
          font-size: 14px;
          line-height: 1.5;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .framework-methods li::before {
          content: '▸';
          color: #8b5cf6;
          margin-right: 12px;
          font-weight: 700;
        }

        .framework-validates p,
        .framework-examples p {
          font-size: 15px;
          line-height: 1.7;
          color: rgba(255, 255, 255, 0.8);
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* Tools Section */
        .tools-section {
          display: flex;
          flex-direction: column;
          gap: 32px;
        }

        .tools-category h3 {
          font-size: 20px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 8px;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .category-description {
          font-size: 14px;
          color: rgba(255, 255, 255, 0.7);
          margin-bottom: 16px;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .tools-list {
          list-style: none;
          padding: 0;
        }

        .tool-item {
          padding: 12px 16px;
          margin-bottom: 8px;
          background: rgba(255, 255, 255, 0.03);
          border-left: 3px solid rgba(139, 92, 246, 0.4);
          border-radius: 6px;
          font-size: 14px;
          line-height: 1.6;
          color: rgba(255, 255, 255, 0.75);
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .tool-item strong {
          color: #fff;
          font-weight: 600;
        }

        .tools-subcategory {
          margin-top: 24px;
          padding-left: 20px;
        }

        .tools-subcategory h4 {
          font-size: 16px;
          font-weight: 700;
          color: rgba(139, 92, 246, 0.9);
          margin-bottom: 12px;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .modal-footer {
          padding: 24px 48px;
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          text-align: center;
          display: flex;
          gap: 16px;
          justify-content: center;
        }

        /* CTA Section */
        .cta {
          margin: 40px 20px;
          padding: 60px 48px;
          border-radius: 24px;
        }

        .cta-container {
          max-width: 1200px;
          margin: 0 auto;
          text-align: center;
        }

        .section-title {
          font-size: 56px;
          font-weight: 800;
          color: #fff;
          margin-bottom: 16px;
          text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
        }

        .cta-subtitle {
          font-size: 22px;
          color: rgba(255, 255, 255, 0.8);
          margin-bottom: 48px;
          text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
        }

        .cta-buttons {
          display: flex;
          gap: 24px;
          justify-content: center;
        }

        /* Footer */
        .footer {
          margin: 40px 20px;
          padding: 60px 48px;
          border-radius: 24px;
        }

        .footer-card {
          max-width: 1200px;
          margin: 0 auto;
        }

        .footer-content {
          display: grid;
          grid-template-columns: repeat(5, 1fr);
          gap: 48px;
          margin-bottom: 48px;
        }

        .footer-section h3 {
          font-size: 24px;
          font-weight: 800;
          margin-bottom: 8px;
          background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .footer-tagline {
          font-size: 14px;
          color: rgba(255, 255, 255, 0.6);
        }

        .footer-section h4 {
          font-size: 16px;
          font-weight: 700;
          margin-bottom: 16px;
          color: #fff;
        }

        .footer-links {
          list-style: none;
          padding: 0;
          margin: 0;
        }

        .footer-links li {
          margin-bottom: 12px;
        }

        .footer-links a {
          color: rgba(255, 255, 255, 0.7);
          text-decoration: none;
          font-size: 15px;
          transition: color 0.2s;
        }

        .footer-links a:hover {
          color: #8b5cf6;
        }

        .footer-bottom {
          text-align: center;
          padding-top: 32px;
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          color: rgba(255, 255, 255, 0.5);
          font-size: 14px;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
          .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
          }

          .fractal-tabs {
            flex-direction: column;
            align-items: stretch;
          }

          .fractal-tab {
            justify-content: center;
          }

          .hero-stats {
            flex-direction: column;
          }
        }

        /* Agent Deep Dive — Full Content Section */
        .agent-deep-dive {
          margin: 40px 20px;
          max-width: 1200px;
          margin-left: auto;
          margin-right: auto;
          padding: 0 20px;
        }

        .agent-deep-dive .section-subtitle {
          text-align: center;
          font-size: 18px;
          color: rgba(255, 255, 255, 0.7);
          margin-bottom: 48px;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .deep-dive-card {
          padding: 40px;
          border-radius: 20px;
          margin-bottom: 32px;
        }

        .deep-dive-header {
          display: flex;
          align-items: center;
          gap: 20px;
          margin-bottom: 20px;
        }

        .deep-dive-icon {
          font-size: 48px;
          flex-shrink: 0;
        }

        .deep-dive-name {
          font-size: 28px;
          font-weight: 700;
          color: #fff;
          margin: 0;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .deep-dive-meta {
          font-size: 14px;
          color: rgba(139, 92, 246, 0.9);
          font-weight: 600;
          margin: 4px 0 0;
        }

        .deep-dive-desc {
          font-size: 16px;
          line-height: 1.7;
          color: rgba(255, 255, 255, 0.85);
          margin-bottom: 12px;
        }

        .deep-dive-why {
          font-size: 15px;
          line-height: 1.6;
          color: rgba(255, 255, 255, 0.6);
          font-style: italic;
          margin-bottom: 24px;
          padding-left: 16px;
          border-left: 3px solid rgba(139, 92, 246, 0.4);
        }

        .deep-dive-section {
          margin-top: 24px;
        }

        .deep-dive-section h4 {
          font-size: 18px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 12px;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .deep-dive-list {
          list-style: none;
          padding: 0;
          margin: 0;
        }

        .deep-dive-list li {
          padding: 6px 0;
          padding-left: 24px;
          position: relative;
          color: rgba(255, 255, 255, 0.8);
          font-size: 14px;
          line-height: 1.5;
        }

        .deep-dive-list li::before {
          content: '✓';
          position: absolute;
          left: 0;
          color: #10b981;
          font-weight: 700;
        }

        .deep-dive-tool-cat {
          margin-bottom: 20px;
        }

        .deep-dive-tool-cat h5 {
          font-size: 15px;
          font-weight: 700;
          color: rgba(139, 92, 246, 0.9);
          margin: 0 0 4px;
          text-transform: uppercase;
          letter-spacing: 0.5px;
        }

        .deep-dive-tool-cat-desc {
          font-size: 13px;
          color: rgba(255, 255, 255, 0.5);
          margin: 0 0 10px;
        }

        .deep-dive-subcat {
          margin: 12px 0 12px 16px;
        }

        .deep-dive-subcat h6 {
          font-size: 14px;
          font-weight: 600;
          color: rgba(255, 255, 255, 0.7);
          margin: 0 0 8px;
        }

        .deep-dive-tools {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
          gap: 8px;
        }

        .deep-dive-tool {
          padding: 10px 14px;
          background: rgba(255, 255, 255, 0.03);
          border: 1px solid rgba(255, 255, 255, 0.06);
          border-radius: 8px;
          font-size: 13px;
          line-height: 1.4;
        }

        .deep-dive-tool strong {
          color: #fff;
          display: block;
          margin-bottom: 2px;
        }

        .deep-dive-tool span {
          color: rgba(255, 255, 255, 0.55);
        }

        .deep-dive-framework {
          margin-bottom: 20px;
          padding: 16px;
          background: rgba(139, 92, 246, 0.05);
          border: 1px solid rgba(139, 92, 246, 0.15);
          border-radius: 12px;
        }

        .deep-dive-framework h5 {
          font-size: 16px;
          font-weight: 700;
          color: #fff;
          margin: 0 0 8px;
        }

        .deep-dive-framework p {
          font-size: 14px;
          color: rgba(255, 255, 255, 0.7);
          margin: 0 0 8px;
          line-height: 1.5;
        }

        .deep-dive-validates {
          font-style: italic;
          color: rgba(16, 185, 129, 0.8) !important;
        }

        @media (max-width: 768px) {
          .hero-title {
            font-size: 40px;
          }

          .section-title {
            font-size: 36px;
          }

          .why-agents-grid {
            grid-template-columns: 1fr;
          }

          .agents-grid {
            grid-template-columns: 1fr;
          }

          .cta-buttons {
            flex-direction: column;
          }

          .deep-dive-card {
            padding: 24px;
          }

          .deep-dive-name {
            font-size: 22px;
          }

          .deep-dive-tools {
            grid-template-columns: 1fr;
          }

          .deep-dive-header {
            flex-direction: column;
            text-align: center;
          }
        }
      