    :root {
      --bg: #0a0e17;
      --bg-card: #111827;
      --bg-card-hover: #1a2332;
      --text: #e2e8f0;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --accent: #38bdf8;
      --accent-hover: #7dd3fc;
      --accent-glow: rgba(56, 189, 248, 0.15);
      --green: #34d399;
      --orange: #fb923c;
      --pink: #f472b6;
      --border: #1e293b;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }

    /* ── NAV ── */
    nav {
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-text {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.5px;
    }

    .logo-text span { color: var(--accent); }

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

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--text); }

    nav a.cta-nav {
      background: var(--accent);
      color: var(--bg);
      padding: 10px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.2s;
    }

    nav a.cta-nav:hover {
      background: var(--accent-hover);
      transform: translateY(-1px);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10, 14, 23, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    /* ── HERO ── */
    .hero {
      padding: 80px 0 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    /* ── AURORA ── */
    .hero-aurora {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .aurora-blob { position: absolute; border-radius: 50%; }

    .aurora-blob-1 {
      width: 700px; height: 700px;
      background: radial-gradient(circle at 40% 40%, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
      top: -320px; left: -180px;
      filter: blur(60px);
      animation: auroraFloat1 18s ease-in-out infinite;
    }

    .aurora-blob-2 {
      width: 600px; height: 600px;
      background: radial-gradient(circle at 60% 60%, rgba(52, 211, 153, 0.14) 0%, transparent 70%);
      top: -220px; right: -160px;
      filter: blur(80px);
      animation: auroraFloat2 22s ease-in-out infinite;
    }

    .aurora-blob-3 {
      width: 500px; height: 500px;
      background: radial-gradient(circle at 50% 50%, rgba(129, 140, 248, 0.10) 0%, transparent 70%);
      bottom: -100px; left: 50%;
      transform: translateX(-50%);
      filter: blur(70px);
      animation: auroraFloat3 16s ease-in-out infinite;
    }

    @keyframes auroraFloat1 {
      0%, 100% { transform: translate(0,0) scale(1); }
      25%  { transform: translate(80px,50px) scale(1.08); }
      50%  { transform: translate(140px,-20px) scale(0.95); }
      75%  { transform: translate(40px,70px) scale(1.03); }
    }
    @keyframes auroraFloat2 {
      0%, 100% { transform: translate(0,0) scale(1); }
      33%  { transform: translate(-90px,60px) scale(1.12); }
      66%  { transform: translate(-30px,-50px) scale(0.92); }
    }
    @keyframes auroraFloat3 {
      0%, 100% { transform: translateX(-50%) scale(1); }
      50%  { transform: translateX(calc(-50% - 70px)) scale(1.1); }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      padding: 20px 0 20px;
    }

    .hero-text { text-align: left; }

    .hero-text .hero-badge { margin-left: 0; }

    .hero-text h1 {
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
    }

    .hero-text .subtitle {
      margin: 0 0 40px;
      max-width: 100%;
    }

    .hero-text .cta-group { justify-content: flex-start; }

    .hero-text .hero-note { text-align: left; }

    /* ── BLUR TEXT ── */
    .blur-word {
      display: inline-block;
      opacity: 0;
      animation: blurWordIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
      animation-delay: var(--delay, 0ms);
    }

    .blur-word.highlight {
      background: linear-gradient(135deg, var(--accent), var(--green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    @keyframes blurWordIn {
      from { filter: blur(10px); opacity: 0; transform: translateY(14px); }
      to   { filter: blur(0);    opacity: 1; transform: translateY(0); }
    }

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

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-glow);
      border: 1px solid rgba(56, 189, 248, 0.2);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 0.85rem;
      color: var(--accent);
      margin-bottom: 28px;
      font-weight: 500;
      animation: fadeUpIn 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
    }

    .hero-badge .dot {
      width: 8px; height: 8px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.4; }
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -1.5px;
      margin-bottom: 24px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero .subtitle {
      font-size: 1.25rem;
      color: var(--text-muted);
      max-width: 620px;
      margin: 0 auto 40px;
      line-height: 1.7;
      opacity: 0;
      animation: fadeUpIn 0.7s cubic-bezier(0.16,1,0.3,1) 0.65s forwards;
    }

    .hero .subtitle strong { color: var(--text); font-weight: 600; }

    .cta-group {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUpIn 0.7s cubic-bezier(0.16,1,0.3,1) 0.85s forwards;
    }

    .cta-primary {
      background: var(--accent);
      color: var(--bg);
      padding: 14px 36px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.05rem;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
    }

    .cta-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(56, 189, 248, 0.25);
    }

    .cta-secondary {
      background: transparent;
      color: var(--text);
      padding: 14px 36px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.05rem;
      border: 1px solid var(--border);
      transition: all 0.2s;
    }

    .cta-secondary:hover { border-color: var(--accent); color: var(--accent); }

    .hero-note {
      font-size: 0.85rem;
      color: var(--text-dim);
      margin-top: 16px;
      opacity: 0;
      animation: fadeUpIn 0.7s cubic-bezier(0.16,1,0.3,1) 1.0s forwards;
    }

    /* ── TRUST STRIP ── */
    .trust-section {
      padding: 32px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust-label {
      text-align: center;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--text-dim);
      font-weight: 500;
      margin-bottom: 20px;
    }

    .logo-loop-wrap {
      position: relative;
      overflow: hidden;
    }

    .logo-loop-wrap::before,
    .logo-loop-wrap::after {
      content: '';
      position: absolute;
      top: 0; width: 100px; height: 100%;
      z-index: 2; pointer-events: none;
    }

    .logo-loop-wrap::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
    .logo-loop-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

    .logo-track {
      display: flex;
      animation: logoScroll 32s linear infinite;
      width: max-content;
    }

    .logo-track:hover { animation-play-state: paused; }

    @keyframes logoScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .logo-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 32px;
      white-space: nowrap;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-dim);
      border-right: 1px solid var(--border);
      transition: color 0.2s;
    }

    .logo-item:hover { color: var(--text-muted); }
    .logo-item-icon { font-size: 1.1rem; line-height: 1; }

    /* ── ABOUT / GEO ENTITY ── */
    .about-intro {
      padding: 60px 0;
      text-align: center;
    }

    .about-inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .about-entity {
      font-size: 1.15rem;
      line-height: 1.8;
      margin-bottom: 24px;
      color: var(--text);
    }

    .about-entity strong { color: var(--accent); }

    .about-contrast {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .strikethrough {
      text-decoration: line-through;
      color: var(--text-dim);
      opacity: 0.6;
    }

    /* ── SECTION LABELS ── */
    .section-label {
      text-align: center;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 16px;
    }

    .section-title {
      text-align: center;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .section-subtitle {
      text-align: center;
      color: var(--text-muted);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 48px;
    }

    /* ── PAIN POINTS ── */
    .painpoints { padding: 80px 0; }

    .pain-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      max-width: 960px;
      margin: 0 auto;
      justify-content: center;
    }

    .pain-card {
      flex: 0 1 calc(33.333% - 11px);
      min-width: 260px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 22px 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: all 0.2s;
    }

    .pain-card:hover { border-color: rgba(251, 146, 60, 0.3); }
    .pain-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
    .pain-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--orange); }
    .pain-text p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

    /* ── STATS BAR ── */
    .stats-bar {
      padding: 48px 0;
      background: rgba(56, 189, 248, 0.025);
      border-top: 1px solid rgba(56, 189, 248, 0.12);
      border-bottom: 1px solid rgba(56, 189, 248, 0.12);
    }

    .stats-inner {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .stat { text-align: center; }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 900;
      letter-spacing: -1px;
      background: linear-gradient(135deg, var(--accent), var(--green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label { font-size: 0.85rem; color: var(--text-dim); margin-top: 4px; }

    /* ── CHAT DEMO ── */
    .chat-section { padding: 60px 0; }

    .chat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .chat-grid > div { display: flex; flex-direction: column; }

    .chat-window {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      flex: 1;
      display: flex;
      flex-direction: column;
      transition: border-color 0.2s, transform 0.2s;
    }

    .chat-window:hover {
      border-color: rgba(56, 189, 248, 0.2);
      transform: translateY(-2px);
    }

    .chat-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 18px;
      border-bottom: 1px solid var(--border);
      background: rgba(30, 41, 59, 0.5);
    }

    .chat-avatar {
      width: 32px; height: 32px;
      background: var(--accent-glow);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .chat-name   { font-weight: 600; font-size: 0.9rem; }
    .chat-status { font-size: 0.75rem; color: var(--green); }

    .chat-body {
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-height: 200px;
      flex: 1;
      justify-content: flex-end;
    }

    .msg {
      max-width: 90%;
      padding: 9px 12px;
      border-radius: 14px;
      font-size: 0.82rem;
      line-height: 1.5;
    }

    .msg-user {
      background: #2563eb;
      color: white;
      align-self: flex-end;
      border-bottom-right-radius: 4px;
    }

    .msg-bot {
      background: var(--bg-card-hover);
      color: var(--text);
      align-self: flex-start;
      border-bottom-left-radius: 4px;
      border: 1px solid var(--border);
    }

    .msg-bot .check { color: var(--green); }

    .msg-time {
      font-size: 0.7rem;
      color: var(--text-dim);
      text-align: right;
      margin-top: 2px;
    }

    .chat-label {
      text-align: center;
      font-size: 0.8rem;
      color: var(--text-dim);
      margin-top: 10px;
      font-style: italic;
    }

    /* Chat message reveal animation */
    .chat-body .msg,
    .chat-body .msg-time {
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .chat-body.revealed .msg,
    .chat-body.revealed .msg-time { opacity: 1; transform: translateY(0); }

    .chat-body.revealed .msg:nth-child(1) { transition-delay: 0.10s; }
    .chat-body.revealed .msg:nth-child(2) { transition-delay: 0.55s; }
    .chat-body.revealed .msg:nth-child(3) { transition-delay: 1.05s; }
    .chat-body.revealed .msg:nth-child(4) { transition-delay: 1.55s; }
    .chat-body.revealed .msg-time         { transition-delay: 1.85s; }

    /* ── FEATURES ── */
    .features {
      padding: 80px 0;
      background: rgba(255, 255, 255, 0.012);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 24px;
      transition: border-color 0.2s, transform 0.2s;
      position: relative;
      overflow: hidden;
    }

    .feature-card:hover {
      border-color: rgba(56, 189, 248, 0.3);
      transform: translateY(-2px);
    }

    .feature-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(
        250px circle at var(--mx, -300px) var(--my, -300px),
        rgba(56, 189, 248, 0.08),
        transparent 40%
      );
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 0;
    }

    .feature-card:hover::before { opacity: 1; }

    .feature-icon,
    .feature-card h3,
    .feature-card p { position: relative; z-index: 1; }

    .feature-icon { font-size: 1.8rem; margin-bottom: 14px; }
    .feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
    .feature-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

    /* ── TESTIMONIALS ── */
    .testimonials { padding: 80px 0 0; }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .testimonial-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: border-color 0.25s, transform 0.25s;
    }

    .testimonial-card:hover {
      border-color: rgba(56, 189, 248, 0.3);
      transform: translateY(-3px);
    }

    .testimonial-stars { color: #fbbf24; font-size: 0.85rem; letter-spacing: 2px; }

    .testimonial-quote {
      font-size: 0.93rem;
      color: var(--text);
      line-height: 1.7;
      flex: 1;
    }

    .testimonial-quote::before {
      content: '\201C';
      font-size: 2.5rem;
      line-height: 0.6;
      vertical-align: -0.5em;
      color: var(--accent);
      opacity: 0.4;
      margin-right: 2px;
      font-family: Georgia, serif;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
    }

    .author-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--bg-card-hover);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .author-name { font-weight: 700; font-size: 0.88rem; line-height: 1.3; }
    .author-role { font-size: 0.76rem; color: var(--text-dim); line-height: 1.3; }

    /* ── VS SECTION ── */
    .vs-section { padding: 80px 0; }

    .vs-table {
      max-width: 800px;
      margin: 0 auto;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      background: var(--bg-card);
    }

    .vs-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border-bottom: 1px solid var(--border);
    }

    .vs-row:last-child { border-bottom: none; }

    .vs-row.header {
      background: rgba(30, 41, 59, 0.8);
      font-weight: 700;
      font-size: 0.95rem;
    }

    .vs-cell { padding: 14px 20px; font-size: 0.9rem; }
    .vs-cell:not(:first-child) { text-align: center; }
    .vs-cell.label { color: var(--text-muted); }
    .vs-cell .yes  { color: var(--green); font-weight: 600; }
    .vs-cell .no   { color: var(--text-dim); }
    .vs-cell .meh  { color: var(--orange); font-weight: 500; }

    .vs-footer { text-align: center; margin-top: 20px; font-size: 0.85rem; color: var(--text-dim); }

    /* ── PRICING ── */
    .pricing {
      padding: 80px 0;
      background: rgba(52, 211, 153, 0.02);
      border-top: 1px solid rgba(52, 211, 153, 0.1);
      border-bottom: 1px solid rgba(52, 211, 153, 0.1);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 960px;
      margin: 0 auto;
    }

    .price-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 28px;
      position: relative;
      transition: all 0.2s;
    }

    .price-card:hover { transform: translateY(-4px); border-color: rgba(56, 189, 248, 0.3); }

    .price-card.popular {
      border-color: var(--accent);
      box-shadow: 0 0 40px rgba(56, 189, 248, 0.1);
    }

    .popular-tag {
      position: absolute;
      top: -12px; left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: var(--bg);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 16px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .price-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
    .price-card .tier-desc { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 20px; }

    .price {
      font-size: 3rem;
      font-weight: 900;
      letter-spacing: -2px;
      margin-bottom: 4px;
    }

    .price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }

    .price-cta {
      display: block;
      text-align: center;
      padding: 12px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.2s;
      border: 1px solid var(--border);
      color: var(--text);
      background: transparent;
    }

    .price-cta:hover { border-color: var(--accent); color: var(--accent); }

    .price-card.popular .price-cta {
      background: var(--accent);
      color: var(--bg);
      border-color: var(--accent);
    }

    .price-card.popular .price-cta:hover { background: var(--accent-hover); }

    .power-meter { margin: 16px 0 12px; }
    .power-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dim); margin-bottom: 6px; }

    .power-bar { height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }

    .power-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--accent), var(--green));
      border-radius: 4px;
    }

    .power-fill-max { background: linear-gradient(90deg, var(--accent), var(--orange)); }

    .power-highlights { display: flex; gap: 8px; margin: 10px 0 20px; flex-wrap: wrap; }

    .power-highlights span {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-muted);
      background: rgba(255,255,255,0.04);
      padding: 4px 10px;
      border-radius: 6px;
      border: 1px solid var(--border);
    }

    .price-unlimited { list-style: none; display: flex; gap: 8px; margin: 0 0 20px; flex-wrap: wrap; }

    .price-unlimited li {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--green);
      background: rgba(52, 211, 153, 0.08);
      border: 1px solid rgba(52, 211, 153, 0.2);
      padding: 4px 10px;
      border-radius: 6px;
    }

    .included-banner {
      max-width: 960px;
      margin: 32px auto 0;
      padding: 28px 32px;
      background: rgba(52, 211, 153, 0.04);
      border: 1px solid rgba(52, 211, 153, 0.15);
      border-radius: 14px;
      text-align: center;
    }

    .included-banner h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; color: var(--green); }

    .included-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
    .included-items span { font-size: 0.82rem; color: var(--text-muted); white-space: nowrap; }

    .price-compare { max-width: 780px; margin: 48px auto 0; text-align: center; }
    .price-compare h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.5px; }

    .compare-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .compare-card { border-radius: 14px; padding: 24px; text-align: left; }
    .compare-them { background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.2); }
    .compare-us   { background: rgba(52,211,153,0.04); border: 1px solid rgba(52,211,153,0.2); }

    .compare-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dim); margin-bottom: 4px; }
    .compare-price { font-size: 1.3rem; font-weight: 800; margin-bottom: 16px; }

    .compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .compare-bad::before  { content: '✗ '; color: #ef4444; font-weight: 700; }
    .compare-good::before { content: '✓ '; color: var(--green); font-weight: 700; }
    .compare-card li { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

    /* ── HUMAN ── */
    .human-section { padding: 60px 0 80px; text-align: center; }

    .human-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 48px;
      max-width: 700px;
      margin: 0 auto;
    }

    .human-card .emoji { font-size: 3rem; margin-bottom: 20px; }
    .human-card h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
    .human-card p  { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; }
    .human-card p strong { color: var(--text); }

    /* ── PROMISE ── */
    .promise { padding: 60px 0 80px; }

    .promise-card {
      background: linear-gradient(135deg, rgba(52,211,153,0.06), rgba(56,189,248,0.06));
      border: 1px solid rgba(52, 211, 153, 0.2);
      border-radius: 20px;
      padding: 48px;
      max-width: 800px;
      margin: 0 auto;
    }

    .promise-card h2 { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 32px; letter-spacing: -0.5px; }

    .promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

    .promise-item { display: flex; gap: 12px; align-items: flex-start; }
    .promise-check { color: var(--green); font-weight: 800; font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
    .promise-item strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
    .promise-item span   { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

    /* ── TIMELINE ── */
    .timeline { padding: 80px 0; }

    .timeline-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 960px;
      margin: 0 auto;
      position: relative;
    }

    .timeline-grid::before {
      content: '';
      position: absolute;
      top: 36px; left: 12%; right: 12%;
      height: 2px;
      background: var(--border);
      z-index: 0;
    }

    .timeline-step { text-align: center; position: relative; z-index: 1; }

    .step-number {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--bg-card);
      border: 2px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--accent);
    }

    .timeline-step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
    .timeline-step p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

    /* ── FAQ ── */
    .faq { padding: 80px 0; }

    .faq-grid {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .faq-item:hover { border-color: rgba(56, 189, 248, 0.3); }

    .faq-question {
      padding: 18px 22px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 0.95rem;
      user-select: none;
    }

    .faq-question::after {
      content: '+';
      font-size: 1.4rem;
      color: var(--accent);
      font-weight: 300;
      transition: transform 0.2s;
      flex-shrink: 0;
      margin-left: 16px;
    }

    .faq-item.open .faq-question::after { transform: rotate(45deg); }

    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
    .faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 18px; }
    .faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

    /* ── WAITLIST ── */
    .waitlist { padding: 80px 0; text-align: center; }

    .waitlist-box {
      background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(52,211,153,0.08));
      border: 1px solid rgba(56, 189, 248, 0.2);
      border-radius: 20px;
      padding: 56px 40px;
      max-width: 600px;
      margin: 0 auto;
    }

    .waitlist-box h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
    .waitlist-box p  { color: var(--text-muted); margin-bottom: 28px; font-size: 1.05rem; }

    .waitlist-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }

    .waitlist-form input {
      flex: 1;
      padding: 14px 18px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      font-size: 0.95rem;
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s;
    }

    .waitlist-form input:focus { border-color: var(--accent); }

    .waitlist-form button {
      padding: 14px 28px;
      border-radius: 10px;
      background: var(--accent);
      color: var(--bg);
      font-weight: 700;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      font-family: inherit;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .waitlist-form button:hover { background: var(--accent-hover); }

    /* ── MID CTA ── */
    .mid-cta { padding: 20px 0 60px; text-align: center; }

    .mid-cta-box {
      background: linear-gradient(135deg, rgba(56,189,248,0.06), rgba(52,211,153,0.06));
      border: 1px solid rgba(56,189,248,0.15);
      border-radius: 16px;
      padding: 40px;
      max-width: 560px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .mid-cta-box > p { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.3px; }

    /* ── FOOTER ── */
    footer {
      padding: 40px 0;
      border-top: 1px solid var(--border);
      text-align: center;
      color: var(--text-dim);
      font-size: 0.85rem;
    }

    footer a { color: var(--text-muted); text-decoration: none; }
    footer a:hover { color: var(--accent); }

    /* ── PHONE MOCKUP ── */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .phone-mockup {
      position: relative;
      animation: phoneFloat 6s ease-in-out infinite;
    }

    @keyframes phoneFloat {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-16px); }
    }

    .phone-frame {
      width: 280px;
      background: #0d1420;
      border-radius: 40px;
      padding: 16px;
      border: 2px solid rgba(56, 189, 248, 0.25);
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 32px 80px rgba(0,0,0,0.6),
        0 0 60px rgba(56,189,248,0.08);
    }

    .phone-screen {
      background: #0a0e17;
      border-radius: 28px;
      overflow: hidden;
    }

    .phone-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 16px 12px;
      background: rgba(30, 41, 59, 0.7);
      border-bottom: 1px solid var(--border);
    }

    .ph-avatar {
      width: 32px; height: 32px;
      background: var(--accent-glow);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
    }

    .ph-name   { font-size: 0.85rem; font-weight: 700; }
    .ph-status { font-size: 0.68rem; color: var(--green); }

    .phone-msgs {
      padding: 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-height: 200px;
      justify-content: flex-end;
    }

    .pm {
      font-size: 0.75rem;
      padding: 8px 10px;
      border-radius: 12px;
      line-height: 1.45;
      max-width: 88%;
    }

    .pm-user {
      background: #2563eb;
      color: white;
      align-self: flex-end;
      border-bottom-right-radius: 3px;
    }

    .pm-bot {
      background: var(--bg-card-hover);
      color: var(--text);
      align-self: flex-start;
      border: 1px solid var(--border);
      border-bottom-left-radius: 3px;
    }

    .pm-ts {
      font-size: 0.62rem;
      color: var(--text-dim);
      text-align: right;
      padding-bottom: 4px;
    }

    .phone-badge {
      position: absolute;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 0.72rem;
      font-weight: 600;
      white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }

    .pb-1 {
      top: 20px; right: -50px;
      color: var(--green);
      border-color: rgba(52,211,153,0.3);
      animation: badgeBob 5s 0.5s ease-in-out infinite;
    }

    .pb-2 {
      top: 55%;  right: -60px;
      color: var(--accent);
      border-color: rgba(56,189,248,0.3);
      animation: badgeBob 5s 1.2s ease-in-out infinite;
    }

    .pb-3 {
      bottom: 30px; left: -50px;
      color: var(--text-muted);
      animation: badgeBob 5s 0.8s ease-in-out infinite;
    }

    @keyframes badgeBob {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }

    /* ── BENTO GRID ── */
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: auto;
      gap: 20px;
      margin-top: 48px;
      max-width: 100%;
    }

    .bento-big {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
    }

    .bento-server {
      grid-column: 3;
      grid-row: 1 / 3;
    }

    .bento-backups {
      grid-column: 3;
    }

    .bento-chat-mini {
      margin-top: 20px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .bcm-msg {
      font-size: 0.8rem;
      padding: 7px 10px;
      border-radius: 10px;
      max-width: 90%;
      line-height: 1.4;
    }

    .bcm-user {
      background: #2563eb;
      color: white;
      align-self: flex-end;
      border-bottom-right-radius: 3px;
    }

    .bcm-bot {
      background: var(--bg-card-hover);
      color: var(--text);
      align-self: flex-start;
      border: 1px solid var(--border);
      border-bottom-left-radius: 3px;
    }

    .bento-bars { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }

    .bb-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.72rem;
      color: var(--text-dim);
    }

    .bb-val { color: var(--text-muted); font-weight: 600; }

    .bb-bar {
      height: 6px;
      background: rgba(255,255,255,0.06);
      border-radius: 3px;
      overflow: hidden;
    }

    .bb-fill {
      height: 100%;
      border-radius: 3px;
      transition: width 1s ease;
    }

    .bb-uptime {
      font-size: 0.72rem;
      color: var(--green);
      font-weight: 600;
      margin-top: 8px;
      padding: 4px 10px;
      background: rgba(52,211,153,0.08);
      border: 1px solid rgba(52,211,153,0.2);
      border-radius: 100px;
      width: fit-content;
    }

    .backup-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

    .bp {
      font-size: 0.72rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 100px;
      background: rgba(52,211,153,0.1);
      color: var(--green);
      border: 1px solid rgba(52,211,153,0.2);
    }

    /* ── TESTIMONIALS MARQUEE ── */
    .testimonial-marquee-wrap {
      position: relative;
      overflow: hidden;
      margin-top: 48px;
      padding-bottom: 64px;
    }

    .testimonial-marquee-wrap::before,
    .testimonial-marquee-wrap::after {
      content: '';
      position: absolute;
      top: 0; height: 100%; width: 120px;
      z-index: 2; pointer-events: none;
    }

    .testimonial-marquee-wrap::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
    .testimonial-marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

    .testimonial-track {
      display: flex;
      gap: 20px;
      animation: testimonialScroll 45s linear infinite;
      width: max-content;
    }

    .testimonial-track:hover { animation-play-state: paused; }

    @keyframes testimonialScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .testimonial-track .testimonial-card {
      width: 360px;
      flex-shrink: 0;
    }

    /* ── CTA SHIMMER ── */
    .cta-primary {
      position: relative;
      overflow: hidden;
    }

    .cta-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
      transform: translateX(-100%);
      transition: transform 0s;
    }

    .cta-primary:hover::after {
      transform: translateX(100%);
      transition: transform 0.5s ease;
    }

    /* ── SCROLL ANIMATIONS ── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ── STAGGER GRID ── */
    .stagger-grid > * {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-content     { grid-template-columns: 1fr; gap: 48px; text-align: center; }
      .hero-text        { text-align: center; }
      .hero-text .cta-group { justify-content: center; }
      .hero-text .hero-note { text-align: center; }
      .hero-visual      { justify-content: center; }
      .chat-grid        { grid-template-columns: 1fr 1fr; }
      .pain-card        { flex: 0 1 calc(50% - 8px); }
      .compare-cards    { grid-template-columns: 1fr; }
      .bento-grid       { grid-template-columns: 1fr 1fr; }
      .bento-big        { grid-column: 1 / 3; grid-row: auto; }
      .bento-server     { grid-column: auto; grid-row: auto; }
      .bento-backups    { grid-column: auto; }
    }

    @media (max-width: 768px) {
      .hero             { padding: 48px 0 40px; }
      .hero-content     { gap: 32px; }
      .phone-mockup     { transform: scale(0.85); }
      .pb-1, .pb-2, .pb-3 { display: none; }
      .chat-grid        { grid-template-columns: 1fr; }
      .bento-grid       { grid-template-columns: 1fr; }
      .bento-big        { grid-column: auto; grid-row: auto; }
      .bento-server     { grid-column: auto; grid-row: auto; }
      .pricing-grid     { grid-template-columns: 1fr; max-width: 380px; }
      .vs-cell          { padding: 10px 12px; font-size: 0.8rem; }
      .waitlist-form    { flex-direction: column; }
      .human-card       { padding: 32px 24px; }
      .waitlist-box     { padding: 40px 24px; }
      .stats-inner      { gap: 32px; }
      .stat-number      { font-size: 2rem; }
      .pain-card        { flex: 0 1 100%; }
      .promise-grid     { grid-template-columns: 1fr; }
      .promise-card     { padding: 32px 24px; }
      .timeline-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
      .timeline-grid::before { display: none; }
      .msg              { font-size: 0.85rem; }
      .nav-links        { display: none; }
    }
