    /* ══════════════════════════════════════════════
       RESET & ROOT
       ══════════════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg-deep: #0e0c15;
      --bg-card: rgba(22, 18, 36, 0.7);
      --bg-card-hover: rgba(30, 25, 48, 0.8);
      --surface: rgba(26, 22, 42, 0.8);
      --border: rgba(255,255,255,0.07);
      --border-light: rgba(255,255,255,0.12);

      --text-primary: #f2f0ff;
      --text-secondary: #a8a3c0;
      --text-muted: #6b6588;

      --accent-1: #b49aff;   /* lavender */
      --accent-2: #ff7eb3;   /* rose */
      --accent-3: #5eead4;   /* teal-mint */
      --accent-4: #fbbf24;   /* warm amber */
      --gradient-main: linear-gradient(135deg, #b49aff 0%, #ff7eb3 50%, #fbbf24 100%);
      --gradient-subtle: linear-gradient(135deg, rgba(180,154,255,0.08) 0%, rgba(255,126,179,0.05) 100%);
      --gradient-glow: radial-gradient(circle at 50% 0%, rgba(180,154,255,0.18) 0%, transparent 60%);
    }

    html {
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, system-ui, sans-serif;
      background: var(--bg-deep);
      background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(90,60,160,0.12) 0%, transparent 60%),
                        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(255,126,179,0.06) 0%, transparent 50%);
      background-attachment: fixed;
      color: var(--text-primary);
      width: 100%;
      min-height: 100vh;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .boot-loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: grid;
      place-items: center;
      overflow: hidden;
      background: #17151d;
      transition: opacity 0.24s ease, visibility 0.24s ease;
    }

    .boot-loader::before {
      position: absolute;
      inset: 0;
      background: #17151d;
      content: "";
    }

    .boot-loader::after {
      content: none;
    }

    .boot-loader.is-hidden {
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .boot-mark-card {
      position: relative;
      z-index: 1;
      display: grid;
      place-items: center;
      width: clamp(238px, 34vw, 420px);
      aspect-ratio: 800 / 360;
      filter:
        drop-shadow(0 24px 46px rgba(27,22,42,0.34))
        drop-shadow(0 0 32px rgba(255,126,179,0.2));
      animation: bootStageArrive 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .boot-logo-glow {
      position: absolute;
      inset: 8% -18% 10%;
      border-radius: 999px;
      background:
        radial-gradient(circle at 34% 42%, rgba(106,70,255,0.62), transparent 42%),
        radial-gradient(circle at 66% 42%, rgba(255,126,179,0.58), transparent 44%),
        linear-gradient(90deg, rgba(106,70,255,0.34), rgba(255,126,179,0.32));
      filter: blur(44px);
      opacity: 0;
      transform: scaleX(0.58);
      animation: bootGlowIn 1.45s ease 0.14s forwards;
    }

    .boot-logo-image {
      position: relative;
      z-index: 1;
      display: block;
      width: 100%;
      height: auto;
      opacity: 0;
      clip-path: inset(0 100% 0 0);
      transform: translateY(8px) scale(0.985);
      animation: bootLogoReveal 1.12s cubic-bezier(0.16, 1, 0.3, 1) 0.18s forwards;
    }

    @keyframes bootGlowIn {
      50% {
        opacity: 0.9;
      }

      100% {
        opacity: 0.62;
        transform: scaleX(1);
      }
    }

    @keyframes bootStageArrive {
      0% {
        opacity: 0;
        transform: translateY(8px) scale(0.96);
      }

      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes bootLogoReveal {
      38% {
        opacity: 1;
      }

      100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translateY(0) scale(1);
      }
    }

    /* ══════════════════════════════════════════════
       UTILITY / ANIMATION FOUNDATION
       ══════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ══════════════════════════════════════════════
       NAV
       ══════════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 18px;
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      z-index: 100;
      width: min(1120px, calc(100% - 48px));
      padding: 14px 18px 14px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      overflow: hidden;
      isolation: isolate;
      border-radius: 999px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.055) 42%, rgba(255,255,255,0.105)),
        rgba(18,16,28,0.42);
      backdrop-filter: blur(34px) saturate(1.8) contrast(1.05);
      -webkit-backdrop-filter: blur(34px) saturate(1.8) contrast(1.05);
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow:
        0 26px 80px rgba(0,0,0,0.26),
        0 8px 26px rgba(106,70,255,0.10),
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -1px 0 rgba(255,255,255,0.08);
      transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, top 0.3s;
    }
    .nav::before {
      content: '';
      position: absolute;
      inset: 1px;
      z-index: -1;
      border-radius: inherit;
      background:
        radial-gradient(circle at 18% 0%, rgba(255,255,255,0.24), transparent 34%),
        radial-gradient(circle at 86% 120%, rgba(255,126,179,0.14), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.08), transparent 50%);
      pointer-events: none;
    }
    .nav.is-scrolled {
      top: 12px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0.065) 42%, rgba(255,255,255,0.12)),
        rgba(13,12,20,0.64);
      border-color: rgba(255,255,255,0.20);
      box-shadow:
        0 28px 90px rgba(0,0,0,0.34),
        0 8px 26px rgba(106,70,255,0.12),
        inset 0 1px 0 rgba(255,255,255,0.30),
        inset 0 -1px 0 rgba(255,255,255,0.10);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-logo img {
      display: block;
      width: 96px;
      height: auto;
      filter: drop-shadow(0 6px 16px rgba(180,154,255,0.18));
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-links a {
      padding: 9px 16px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.25s, background 0.25s, box-shadow 0.25s;
    }
    .nav-links a:hover {
      color: var(--text-primary);
      background: rgba(255,255,255,0.065);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
    }
    .nav-cta {
      margin-left: 14px;
      padding: 10px 24px !important;
      border-radius: 50px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.02)),
        var(--gradient-main) !important;
      color: #fff !important;
      font-weight: 600 !important;
      font-size: 13px !important;
      border: 1px solid rgba(255,255,255,0.22);
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.3s;
      box-shadow:
        0 10px 28px rgba(255,126,179,0.22),
        inset 0 1px 0 rgba(255,255,255,0.28);
    }
    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 30px rgba(167,139,250,0.3);
    }

    /* ══════════════════════════════════════════════
       HERO
       ══════════════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 24px 80px;
      overflow: hidden;
      background:
        url('/static/assets/landing-people-network-bg.png') center top / cover no-repeat,
        #0e0c15;
    }

    .hero::after {
      content: none;
    }

    /* Text protection overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(circle at 50% 38%, rgba(14,12,21,0.02), rgba(14,12,21,0.12) 56%, rgba(14,12,21,0.28) 100%),
        linear-gradient(180deg, rgba(14,12,21,0.04), rgba(14,12,21,0.18) 62%, rgba(14,12,21,0.34)),
        linear-gradient(90deg, rgba(14,12,21,0.26), rgba(14,12,21,0) 24%, rgba(14,12,21,0) 76%, rgba(14,12,21,0.26));
      pointer-events: none;
    }

    /* Floating orbs */
    .hero-orb {
      position: absolute;
      z-index: 0;
      border-radius: 50%;
      filter: blur(60px);
      display: none;
      opacity: 0;
      pointer-events: none;
      animation: floatOrb 8s ease-in-out infinite;
    }
    .hero-orb-1 {
      width: 350px; height: 350px;
      background: rgba(180,154,255,0.2);
      top: 8%; left: 8%;
      animation-delay: -2s;
    }
    .hero-orb-2 {
      width: 280px; height: 280px;
      background: rgba(255,126,179,0.16);
      top: 25%; right: 6%;
      animation-delay: -4s;
    }
    .hero-orb-3 {
      width: 220px; height: 220px;
      background: rgba(94,234,212,0.12);
      bottom: 12%; left: 18%;
      animation-delay: -6s;
    }
    @keyframes floatOrb {
      0%, 100% { transform: translate(0, 0); }
      33% { transform: translate(30px, -20px); }
      66% { transform: translate(-20px, 15px); }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border-radius: 50px;
      background: rgba(180,154,255,0.1);
      border: 1px solid rgba(180,154,255,0.25);
      font-size: 13px;
      font-weight: 600;
      color: var(--accent-1);
      margin-bottom: 32px;
      position: relative;
      z-index: 2;
      box-shadow: 0 0 20px rgba(180,154,255,0.08);
    }
    .hero-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent-3);
      box-shadow: 0 0 8px var(--accent-3);
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .hero h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(48px, 7vw, 80px);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 28px;
      position: relative;
      z-index: 2;
    }
    .hero h1 .gradient-text {
      background: var(--gradient-main);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--text-secondary);
      max-width: 520px;
      line-height: 1.6;
      margin-bottom: 48px;
      position: relative;
      z-index: 2;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      position: relative;
      z-index: 2;
    }
    .btn-primary {
      padding: 16px 40px;
      border-radius: 50px;
      background: var(--gradient-main);
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      font-family: inherit;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(180,154,255,0.35), 0 4px 16px rgba(255,126,179,0.2);
    }
    .btn-primary-large {
      padding: 18px 48px;
      font-size: 17px;
    }
    .btn-secondary {
      padding: 16px 40px;
      border-radius: 50px;
      background: transparent;
      color: var(--text-primary);
      font-size: 16px;
      font-weight: 600;
      font-family: inherit;
      border: 1px solid var(--border-light);
      cursor: pointer;
      transition: border-color 0.25s, background 0.25s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .btn-secondary:hover {
      border-color: var(--accent-1);
      background: rgba(167,139,250,0.05);
    }

    /* ══════════════════════════════════════════════
       HERO VISUAL – Chat Demo
       ══════════════════════════════════════════════ */
    .hero-visual {
      margin-top: 64px;
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 680px;
    }
    .chat-window {
      background: rgba(18, 14, 32, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(180,154,255,0.15);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.5),
                  0 0 60px rgba(180,154,255,0.06),
                  0 0 0 1px rgba(255,255,255,0.05) inset;
    }
    .chat-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }
    .chat-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--gradient-main);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: #fff;
    }
    .chat-name {
      font-weight: 600;
      font-size: 15px;
    }
    .chat-status {
      font-size: 12px;
      color: var(--accent-3);
      display: flex; align-items: center; gap: 5px;
    }
    .chat-status-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent-3);
    }
    .chat-messages {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .msg {
      width: fit-content;
      max-width: min(82%, 520px);
      padding: 10px 14px;
      border-radius: 18px;
      font-size: 14px;
      line-height: 1.55;
      opacity: 0;
      transform: translateY(12px);
      animation: msgAppear 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .msg-bot {
      align-self: flex-start;
      background: rgba(40, 34, 65, 0.7);
      border: 1px solid rgba(255,255,255,0.05);
      color: var(--text-primary);
      border-bottom-left-radius: 6px;
    }
    .msg-user {
      align-self: flex-end;
      background: linear-gradient(135deg, #b49aff, #9366ff);
      color: #fff;
      border-bottom-right-radius: 6px;
      box-shadow: 0 4px 16px rgba(147,102,255,0.3);
    }
    .msg:nth-child(1) { animation-delay: 0.5s; }
    .msg:nth-child(2) { animation-delay: 1.5s; }
    .msg:nth-child(3) { animation-delay: 2.8s; }
    .msg:nth-child(4) { animation-delay: 4s; }
    .msg:nth-child(5) { animation-delay: 5.2s; }

    @keyframes msgAppear {
      to { opacity: 1; transform: translateY(0); }
    }

    .typing-indicator {
      align-self: flex-start;
      display: flex;
      gap: 4px;
      padding: 14px 18px;
      background: rgba(40, 34, 65, 0.7);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 18px;
      border-bottom-left-radius: 6px;
      opacity: 0;
      animation: msgAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      animation-delay: 6.2s;
    }
    .typing-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent-1);
      box-shadow: 0 0 10px rgba(180,154,255,0.34);
      animation: typingBounce 1.2s ease-in-out infinite;
    }
    .typing-dot:nth-child(2) {
      background: var(--accent-2);
      box-shadow: 0 0 10px rgba(255,126,179,0.34);
      animation-delay: 0.15s;
    }
    .typing-dot:nth-child(3) {
      background: var(--accent-4);
      box-shadow: 0 0 10px rgba(251,191,36,0.32);
      animation-delay: 0.3s;
    }
    @keyframes typingBounce {
      0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
      30% { transform: translateY(-5px); opacity: 1; }
    }


    /* ══════════════════════════════════════════════
       SECTION SHARED
       ══════════════════════════════════════════════ */
    section { padding: 120px 48px; }

    .section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--accent-1);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }
    .section-desc {
      font-size: 17px;
      color: var(--text-secondary);
      max-width: 480px;
      line-height: 1.6;
    }
    .section-desc-centered {
      margin: 0 auto;
    }

    /* ══════════════════════════════════════════════
       HOW IT WORKS
       ══════════════════════════════════════════════ */
    .how-it-works {
      position: relative;
    }
    .how-it-works::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(244,114,182,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .how-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .how-header .section-desc {
      margin-left: auto;
      margin-right: auto;
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .step-card {
      background: var(--bg-card);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 28px;
      position: relative;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .step-card:hover {
      border-color: rgba(180,154,255,0.3);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 30px rgba(180,154,255,0.06);
    }
    .step-number {
      width: 44px; height: 44px;
      border-radius: 14px;
      background: var(--gradient-main);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 24px;
    }
    .step-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -0.3px;
    }
    .step-card p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    .step-icon {
      position: absolute;
      top: 28px; right: 28px;
      color: var(--text-muted);
      opacity: 0.5;
    }
    .step-icon svg { width: 22px; height: 22px; }

    /* ══════════════════════════════════════════════
       WHY DIFFERENT
       ══════════════════════════════════════════════ */
    .why-section {
      position: relative;
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      max-width: 1000px;
      margin: 0 auto;
      align-items: center;
    }
    .why-content { }
    .why-features {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 36px;
    }
    .why-feat {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 20px;
      border-radius: 16px;
      transition: background 0.25s;
    }
    .why-feat:hover {
      background: rgba(167,139,250,0.04);
    }
    .why-feat-icon {
      width: 40px; height: 40px; min-width: 40px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .why-feat-icon svg { width: 20px; height: 20px; }
    .why-feat-icon.purple {
      background: rgba(167,139,250,0.12);
      color: var(--accent-1);
    }
    .why-feat-icon.rose {
      background: rgba(244,114,182,0.12);
      color: var(--accent-2);
    }
    .why-feat-icon.mint {
      background: rgba(52,211,153,0.12);
      color: var(--accent-3);
    }
    .why-feat h4 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .why-feat p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* Comparison Visual */
    .why-visual {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .compare-card {
      padding: 28px;
      border-radius: 18px;
      border: 1px solid var(--border);
      transition: transform 0.3s;
    }
    .compare-card:hover { transform: scale(1.02); }
    .compare-old {
      background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(239,68,68,0.02));
      border-color: rgba(239,68,68,0.18);
    }
    .compare-new {
      background: linear-gradient(135deg, rgba(94,234,212,0.06), rgba(180,154,255,0.06));
      border-color: rgba(94,234,212,0.22);
      box-shadow: 0 0 30px rgba(94,234,212,0.04);
    }
    .compare-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .compare-old .compare-label { color: #ef4444; }
    .compare-new .compare-label { color: var(--accent-3); }
    .compare-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .compare-card p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.55;
    }

    /* ══════════════════════════════════════════════
       TESTIMONIAL / SOCIAL PROOF
       ══════════════════════════════════════════════ */
    .social-section {
      text-align: center;
      position: relative;
    }
    .social-section::before {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; transform: translateX(-50%);
      width: 800px; height: 400px;
      background: radial-gradient(circle, rgba(52,211,153,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .stats-row {
      display: flex;
      justify-content: center;
      gap: 64px;
      margin-top: 56px;
      position: relative;
      z-index: 1;
    }
    .stat-item {
      text-align: center;
    }
    .stat-number {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 52px;
      font-weight: 700;
      letter-spacing: -2px;
      background: var(--gradient-main);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }
    .stat-label {
      font-size: 14px;
      color: var(--text-secondary);
      margin-top: 8px;
    }

    /* ══════════════════════════════════════════════
       TRUST / COMMUNITY
       ══════════════════════════════════════════════ */
    .trust-section,
    .contact-section {
      position: relative;
    }
    .trust-header {
      text-align: center;
      margin-bottom: 44px;
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .trust-card,
    .lead-form {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 18px;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 18px 60px rgba(0,0,0,0.24);
    }
    .trust-card {
      display: block;
      padding: 26px;
      transition: transform 0.25s, border-color 0.25s, background 0.25s;
    }
    .trust-card:hover {
      transform: translateY(-3px);
      border-color: rgba(180,154,255,0.32);
      background: var(--bg-card-hover);
    }
    .trust-card span {
      display: inline-flex;
      margin-bottom: 14px;
      color: var(--accent-3);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.6px;
      text-transform: uppercase;
    }
    .trust-card strong {
      display: block;
      margin-bottom: 8px;
      font-size: 19px;
      letter-spacing: -0.2px;
    }
    .trust-card p {
      color: var(--text-secondary);
      font-size: 14px;
      line-height: 1.6;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
      gap: 56px;
      max-width: 1000px;
      margin: 0 auto;
      align-items: start;
    }
    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }
    .lead-form {
      display: grid;
      gap: 16px;
      padding: 28px;
    }
    .lead-form h3 {
      font-size: 20px;
      letter-spacing: -0.3px;
    }
    .lead-form label {
      display: grid;
      gap: 7px;
      color: var(--text-secondary);
      font-size: 13px;
      font-weight: 600;
    }
    .lead-form input,
    .lead-form select,
    .lead-form textarea {
      width: 100%;
      border: 1px solid var(--border-light);
      border-radius: 12px;
      padding: 12px 14px;
      color: var(--text-primary);
      background: rgba(255,255,255,0.06);
      font: inherit;
      outline: none;
    }
    .lead-form textarea {
      resize: vertical;
      min-height: 104px;
    }
    .lead-form input:focus,
    .lead-form select:focus,
    .lead-form textarea:focus {
      border-color: rgba(180,154,255,0.52);
      box-shadow: 0 0 0 3px rgba(180,154,255,0.14);
    }
    .lead-form button {
      justify-content: center;
      min-height: 50px;
    }
    .form-helper {
      color: var(--text-muted);
      font-size: 12px;
      line-height: 1.5;
    }
    .form-status {
      min-height: 20px;
      color: var(--accent-3);
      font-size: 13px;
      line-height: 1.4;
    }

    /* ══════════════════════════════════════════════
       SIMPLE PUBLIC PAGES
       ══════════════════════════════════════════════ */
    .page-shell {
      min-height: 100vh;
      padding-top: 120px;
    }
    .page-hero {
      max-width: 860px;
      margin: 0 auto;
      padding: 88px 28px 56px;
      text-align: center;
    }
    .page-hero h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(44px, 7vw, 72px);
      line-height: 1.04;
      letter-spacing: -1.5px;
      margin-bottom: 18px;
    }
    .page-hero p {
      max-width: 680px;
      margin: 0 auto;
      color: var(--text-secondary);
      font-size: 18px;
      line-height: 1.65;
    }
    .content-band {
      max-width: 920px;
      margin: 0 auto;
      padding: 0 28px 96px;
    }
    .content-grid {
      display: grid;
      gap: 18px;
    }
    .content-panel {
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: var(--bg-card);
    }
    .content-panel h2,
    .content-panel h3 {
      margin-bottom: 12px;
      letter-spacing: -0.2px;
    }
    .content-panel p,
    .content-panel li {
      color: var(--text-secondary);
      font-size: 15px;
      line-height: 1.7;
    }
    .content-panel ul {
      display: grid;
      gap: 10px;
      padding-left: 20px;
    }
    .content-panel a {
      color: var(--accent-3);
    }

    /* ══════════════════════════════════════════════
       CTA SECTION
       ══════════════════════════════════════════════ */
    .cta-section {
      text-align: center;
      padding: 100px 48px 120px;
      position: relative;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: -100px; left: 50%; transform: translateX(-50%);
      width: 1000px; height: 600px;
      background: radial-gradient(ellipse, rgba(167,139,250,0.1) 0%, rgba(244,114,182,0.05) 40%, transparent 70%);
      pointer-events: none;
    }
    .cta-box {
      max-width: 640px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .cta-box .section-title { margin-bottom: 16px; }
    .cta-box .section-desc {
      margin: 0 auto 40px;
      max-width: 420px;
    }

    /* ══════════════════════════════════════════════
       FOOTER
       ══════════════════════════════════════════════ */
    .footer {
      padding: 40px 48px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-left {
      display: flex;
      align-items: center;
    }
    .footer-logo {
      display: block;
      width: 92px;
      height: auto;
      filter: drop-shadow(0 6px 16px rgba(180,154,255,0.14));
    }
    .footer-copy {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-links {
      display: flex;
      gap: 28px;
    }
    .footer-links a {
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--text-secondary); }

    /* ══════════════════════════════════════════════
       RESPONSIVE
       ══════════════════════════════════════════════ */
    @media (max-width: 900px) {
      body {
        background-attachment: scroll;
      }
      .nav {
        top: 12px;
        width: calc(100% - 28px);
        padding: 12px 12px 12px 16px;
      }
      .nav.is-scrolled { top: 10px; }
      .nav-logo img { width: 82px; }
      .nav-links a:not(.nav-cta) { display: none; }
      .nav-cta {
        margin-left: 0;
        padding: 9px 18px !important;
      }
      .how-it-works::before,
      .social-section::before,
      .cta-section::before {
        width: 100vw;
      }
      .hero {
        min-height: auto;
        justify-content: flex-start;
        padding: 122px 24px 52px;
        background-size: cover;
        background-position: center top;
      }
      .reveal {
        opacity: 1;
        transform: none;
        transition-delay: 0s;
      }
      .hero::before {
        background:
          radial-gradient(circle at 50% 34%, rgba(14,12,21,0.04), rgba(14,12,21,0.14) 60%, rgba(14,12,21,0.24) 100%),
          linear-gradient(180deg, rgba(14,12,21,0), rgba(14,12,21,0.12));
      }
      .hero::after {
        content: none;
      }
      .hero-orb {
        filter: blur(46px);
      }
      .hero-orb-1 {
        width: 220px;
        height: 220px;
        top: 8%;
        left: -18%;
      }
      .hero-orb-2 {
        width: 190px;
        height: 190px;
        top: 20%;
        right: -22%;
      }
      .hero-orb-3 {
        width: 150px;
        height: 150px;
        bottom: 18%;
        left: 10%;
      }
      .hero-badge {
        margin-bottom: 24px;
        padding: 7px 14px;
        font-size: 12px;
      }
      .hero h1 {
        max-width: 340px;
        font-size: clamp(42px, 12vw, 54px);
        line-height: 1.02;
        letter-spacing: -1.2px;
        margin-bottom: 22px;
      }
      .hero-sub {
        max-width: 340px;
        margin-bottom: 34px;
        font-size: 15.5px;
        line-height: 1.55;
      }
      .hero-actions {
        width: min(100%, 280px);
        gap: 12px;
      }
      .hero-actions .btn-primary,
      .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 26px;
      }
      .btn-primary-large {
        width: min(100%, 310px);
        justify-content: center;
        padding: 15px 24px;
        font-size: 15.5px;
        line-height: 1.2;
      }
      .hero-visual {
        margin-top: 34px;
      }
      .chat-window {
        position: relative;
        max-height: 340px;
        overflow: hidden;
        padding: 18px;
        border-radius: 20px;
      }
      .chat-window::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 82px;
        background: linear-gradient(180deg, rgba(18,14,32,0), rgba(18,14,32,0.96));
        pointer-events: none;
      }
      .chat-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
      }
      .chat-avatar {
        width: 34px;
        height: 34px;
        font-size: 16px;
      }
      .chat-messages {
        gap: 10px;
      }
      .msg {
        max-width: 92%;
        padding: 11px 14px;
        border-radius: 15px;
        font-size: 12.5px;
        line-height: 1.45;
      }
      .msg:nth-child(4),
      .msg:nth-child(5) {
        display: none;
      }
      .typing-indicator {
        padding: 11px 14px;
        animation-delay: 3.8s;
      }
      section { padding: 72px 24px; }
      .how-header {
        margin-bottom: 36px;
      }
      .section-label {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 12px;
      }
      .section-title {
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.12;
      }
      .section-desc {
        font-size: 15px;
      }
      .steps-grid { grid-template-columns: 1fr; max-width: 420px; }
      .trust-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .contact-grid {
        gap: 34px;
      }
      .contact-actions {
        flex-direction: column;
      }
      .contact-actions .btn-primary,
      .contact-actions .btn-secondary {
        justify-content: center;
      }
      .step-card {
        padding: 28px 22px;
        border-radius: 18px;
      }
      .why-grid { grid-template-columns: 1fr; gap: 40px; }
      .why-features {
        margin-top: 26px;
      }
      .why-feat {
        padding: 14px 0;
      }
      .compare-card {
        padding: 22px;
      }
      .stats-row { flex-direction: column; gap: 36px; }
      .hero-actions { flex-direction: column; align-items: center; }
      .footer { flex-direction: column; gap: 20px; text-align: center; }
      .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px 22px; }
    }
