  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #050608;
    --surface: #0c0d12;
    --card: #10121a;
    --border: rgba(255,255,255,0.07);
    --accent: #6affc4;
    --accent2: #4f8eff;
    --accent3: #b06fff;
    --text: #f0f2f5;
    --muted: #6b7280;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* Custom cursor — desktop only */
  @media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    #cursor {
      width: 10px; height: 10px;
      background: var(--accent);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none;
      z-index: 9999;
      /* exclusion blends with whatever's beneath: inverts on light/green surfaces */
      mix-blend-mode: exclusion;
      transition: width 0.15s, height 0.15s, opacity 0.2s;
      will-change: transform;
    }
  }

  /* Noise overlay */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 700;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 60px;
    border-bottom: 1px solid transparent;
    transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(5,6,8,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--border);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    text-decoration: none;
    position: relative; z-index: 601;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-links a {
    font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .btn-nav {
    background: rgba(106,255,196,0.1);
    color: var(--accent) !important;
    border: 1px solid rgba(106,255,196,0.25);
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 13px !important;
    transition: background 0.2s, box-shadow 0.2s !important;
  }
  .btn-nav:hover {
    background: rgba(106,255,196,0.18) !important;
    box-shadow: 0 0 20px rgba(106,255,196,0.15) !important;
    color: var(--accent) !important;
  }

  /* Hamburger */
  .nav-hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none;
    cursor: pointer;
    padding: 6px;
    position: relative; z-index: 601;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile drawer */
  .nav-drawer {
    display: none;
    position: fixed; inset: 0;
    background: rgba(5,6,8,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 650;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-drawer.open { opacity: 1; pointer-events: all; }
  .nav-drawer a {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 800;
    color: var(--muted); text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s;
  }
  .nav-drawer a:hover, .nav-drawer a:active { color: var(--accent); }
  .nav-drawer .btn-nav-drawer {
    margin-top: 8px;
    background: var(--accent);
    color: #050608 !important;
    padding: 14px 36px;
    border-radius: 100px;
    font-size: 16px !important;
    font-weight: 700;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    position: relative;
    padding: 140px 40px 80px;
    overflow: hidden;
  }

  /* Animated grid */
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(106,255,196,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(106,255,196,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
    animation: gridPulse 8s ease-in-out infinite;
  }
  @keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  /* Orbs */
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
  }
  .orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(106,255,196,0.12) 0%, transparent 70%);
    top: -100px; left: 50%; transform: translateX(-50%);
  }
  .orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(79,142,255,0.1) 0%, transparent 70%);
    bottom: 0; right: -100px;
    animation-delay: -4s;
  }
  .orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(176,111,255,0.08) 0%, transparent 70%);
    bottom: 100px; left: -50px;
    animation-delay: -7s;
  }
  @keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -30px); }
    66% { transform: translate(-15px, 20px); }
  }

  .hero-inner { position: relative; z-index: 2; max-width: 860px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(106,255,196,0.07);
    border: 1px solid rgba(106,255,196,0.2);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
  }
  .badge-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  h1 .line2 { display: block; }
  h1 .grad {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 44px;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-cta {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .btn-primary {
    background: var(--accent);
    color: #050608;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: box-shadow 0.3s, transform 0.2s;
    border: none; cursor: none;
  }
  .btn-primary:hover {
    box-shadow: 0 0 40px rgba(106,255,196,0.4), 0 8px 30px rgba(106,255,196,0.2);
    transform: translateY(-2px);
  }
  .btn-ghost {
    background: transparent;
    color: var(--muted);
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
    cursor: none;
  }
  .btn-ghost:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text);
    transform: translateY(-2px);
  }

  

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

  /* ── STATS ── */
  .stats-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    padding: 48px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
  }
  .stat-item {
    padding: 0 40px;
    border-right: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }
  .stat-item:last-child { border-right: none; }
  .stat-item.visible { opacity: 1; transform: translateY(0); }
  .stat-num {
    font-family: var(--font-display);
    font-size: 52px; font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
  }
  .stat-label { font-size: 14px; color: var(--muted); font-weight: 400; }

  /* ── SECTION HEADER ── */
  .section { padding: 120px 60px; }
  .sec-tag {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .sec-tag::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--accent);
  }
  h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .section-sub {
    color: var(--muted); font-size: 17px; font-weight: 300;
    max-width: 480px; line-height: 1.7;
  }

  /* ── FEATURES ── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
  }
  .feat-card {
    background: var(--card);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s, background 0.3s;
  }
  .feat-card.visible { opacity: 1; transform: translateY(0); }
  .feat-card:hover { background: #14161f; }
  .feat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .feat-card:hover::before { opacity: 1; }
  .feat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(106,255,196,0.08);
    border: 1px solid rgba(106,255,196,0.15);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
    transition: box-shadow 0.3s;
  }
  .feat-card:hover .feat-icon {
    box-shadow: 0 0 20px rgba(106,255,196,0.2);
  }
  .feat-card h3 {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700;
    margin-bottom: 12px; letter-spacing: -0.02em;
  }
  .feat-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* ── HOW IT WORKS ── */
  .how-section { background: var(--surface); }
  .how-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    margin-top: 64px;
    position: relative;
  }
  .how-steps::before {
    content: '';
    position: absolute;
    top: 0px; left: 16.67%; right: 16.67%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent2), transparent);
    opacity: 0.3;
  }
  .step {
    padding: 40px 36px;
    position: relative;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }
  .step.visible { opacity: 1; transform: translateY(0); }
  .step-num {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 700;
    color: var(--accent2);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
  }
  .step-num::before {
    content: '';
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(79,142,255,0.3);
    background: rgba(79,142,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
  }
  .step h3 {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    margin-bottom: 12px; letter-spacing: -0.02em;
  }
  .step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* ── PRICING ── */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 64px;
  }
  .price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s, border-color 0.3s, box-shadow 0.3s;
  }
  .price-card.visible { opacity: 1; transform: translateY(0); }
  .price-card:hover { border-color: rgba(255,255,255,0.15); }
  .price-card.popular {
    border-color: rgba(106,255,196,0.3);
    background: linear-gradient(160deg, rgba(106,255,196,0.05) 0%, var(--card) 40%);
  }
  .price-card.popular:hover {
    box-shadow: 0 0 60px rgba(106,255,196,0.1);
  }
  .popular-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--accent);
    color: #050608;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px;
  }
  .plan-name {
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 16px;
  }
  .plan-price {
    font-family: var(--font-display);
    font-size: 48px; font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1; margin-bottom: 4px;
  }
  .plan-price span { font-size: 18px; font-weight: 400; color: var(--muted); }
  .plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 28px; margin-top: 8px; }
  .plan-divider { height: 1px; background: var(--border); margin: 20px 0; }
  .plan-features { list-style: none; }
  .plan-features li {
    font-size: 14px; color: var(--muted);
    padding: 8px 0;
    display: flex; align-items: center; gap: 10px;
  }
  .plan-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    width: 18px; height: 18px;
    background: rgba(106,255,196,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .plan-cta {
    display: block;
    margin-top: 28px;
    text-align: center;
    padding: 13px;
    border-radius: 12px;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: none;
  }
  .plan-cta-ghost {
    border: 1px solid var(--border);
    color: var(--muted);
  }
  .plan-cta-ghost:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text);
  }
  .plan-cta-accent {
    background: var(--accent);
    color: #050608;
  }
  .plan-cta-accent:hover {
    box-shadow: 0 0 30px rgba(106,255,196,0.3);
    transform: translateY(-1px);
  }

  /* ── FAQ ── */
  .faq-list { margin-top: 60px; max-width: 740px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    opacity: 0; transform: translateY(15px);
    transition: opacity 0.5s, transform 0.5s;
  }
  .faq-item.visible { opacity: 1; transform: translateY(0); }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0;
    cursor: none;
    font-size: 16px; font-weight: 500;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-icon {
    width: 24px; height: 24px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--muted);
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.3s;
  }
  .faq-item.open .faq-icon {
    background: rgba(106,255,196,0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(45deg);
  }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0,1,0,1), padding 0.3s;
    font-size: 14px; color: var(--muted); line-height: 1.8;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
    transition: max-height 0.5s cubic-bezier(0.5,0,0.5,1), padding 0.3s;
    padding-bottom: 24px;
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    margin: 0 60px 120px;
    background: linear-gradient(135deg, rgba(106,255,196,0.06) 0%, rgba(79,142,255,0.06) 50%, rgba(176,111,255,0.06) 100%);
    border: 1px solid rgba(106,255,196,0.15);
    border-radius: 28px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(106,255,196,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(106,255,196,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .cta-banner h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; position: relative; }
  .cta-banner p { color: var(--muted); margin-bottom: 36px; font-size: 17px; position: relative; }
  .cta-banner .hero-cta { position: relative; }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 48px 60px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
  }
  .footer-brand {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 800;
    color: var(--text); text-decoration: none;
  }
  .footer-brand span { color: var(--accent); }
  .footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
  .footer-links a {
    font-size: 13px; color: var(--muted); text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--text); }
  .footer-copy { font-size: 12px; color: var(--muted); }

  /* Chat widget floating */
  .chat-widget {
    position: fixed; bottom: 36px; right: 40px;
    z-index: 400;
    animation: fadeUp 1s 1.5s ease both;
  }
  .chat-btn {
    width: 54px; height: 54px;
    background: var(--accent);
    border-radius: 50%;
    border: none; cursor: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 30px rgba(106,255,196,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(106,255,196,0.5);
  }

  /* Live ticker */
  .ticker-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    padding: 14px 0;
  }
  .ticker {
    display: flex; gap: 60px;
    width: max-content;
    animation: ticker 30s linear infinite;
  }
  .ticker-item {
    display: flex; align-items: center; gap: 10px;
    white-space: nowrap;
    font-size: 12px; font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.06em;
  }
  .ticker-item .dot {
    width: 4px; height: 4px; background: var(--accent); border-radius: 50%;
  }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav {
      top: 0;
      padding: calc(env(safe-area-inset-top, 0px) + 12px) 20px 12px;
      background: rgba(5,6,8,0.95);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-drawer { display: flex; }

    .hero { padding: 120px 20px 80px; min-height: 100svh; }
    .orb-1 { width: 300px; height: 300px; }
    .orb-2, .orb-3 { display: none; }

    .section { padding: 72px 20px; }

    .stats-strip {
      grid-template-columns: repeat(2, 1fr);
      padding: 0;
      gap: 0;
    }
    .stat-item {
      padding: 28px 24px;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
    .stat-num { font-size: 40px; }

    .features-grid {
      grid-template-columns: 1fr;
      border-radius: 16px;
    }
    .feat-card { padding: 32px 24px; }

    .how-steps {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .how-steps::before { display: none; }
    .step {
      padding: 32px 0;
      border-bottom: 1px solid var(--border);
    }
    .step:last-child { border-bottom: none; }

    .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
    .price-card { padding: 28px 24px; }

    .faq-list { max-width: 100%; }
    .faq-q { font-size: 15px; gap: 12px; }

    .cta-banner { margin: 0 16px 80px; padding: 52px 24px; border-radius: 20px; }
    .cta-banner h2 { font-size: clamp(26px, 7vw, 40px); }

    footer {
      padding: 36px 20px;
      flex-direction: column;
      text-align: center;
      gap: 16px;
    }
    .footer-links { justify-content: center; gap: 20px; }

    .chat-widget { right: 20px; bottom: 24px; }

    h2 { font-size: clamp(28px, 6vw, 44px); }
    .section-sub { font-size: 15px; }

    .hero-cta { flex-direction: column; align-items: center; }
    .btn-primary, .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
  }

  @media (max-width: 480px) {
    h1 { font-size: clamp(36px, 11vw, 56px); }
    .hero-sub { font-size: 15px; }
    .plan-price { font-size: 40px; }
  }
