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

    :root {
      --bg: #08090C;
      --surface: #111318;
      --surface2: #181B22;
      --border: #1E2230;
      --accent: #4ADE80;
      --accent-dim: rgba(74, 222, 128, 0.12);
      --accent-glow: rgba(74, 222, 128, 0.25);
      --text: #F1F5F9;
      --text-muted: #64748B;
      --text-secondary: #94A3B8;
      --radius: 16px;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      opacity: 0;
      transition: opacity 0.15s ease;
    }

    /* SCROLL PROGRESS BAR */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      width: 100%;
      transform-origin: 0 50%;
      transform: scaleX(0);
      background: linear-gradient(90deg, rgba(74, 222, 128, 0.4), var(--accent) 60%, rgba(74, 222, 128, 0.8));
      box-shadow: 0 0 10px rgba(74, 222, 128, 0.55);
      z-index: 200;
      pointer-events: none;
      will-change: transform;
    }

    /* LANG SWITCH */
    .lang-switch { display: flex; align-items: center; gap: 6px; }
    .lang-btn {
      background: none; border: none; cursor: pointer;
      font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
      color: var(--text-muted); padding: 2px 0;
      transition: color 0.2s;
    }
    .lang-btn:hover { color: var(--text); }
    .lang-btn.active { color: var(--accent); }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 20px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(8, 9, 12, 0.6);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid transparent;
      transition: padding 0.35s var(--ease-out),
                  background 0.35s var(--ease-out),
                  border-color 0.35s var(--ease-out);
    }

    nav.scrolled {
      padding: 12px 40px;
      background: rgba(8, 9, 12, 0.85);
      border-bottom-color: var(--border);
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--text);
      transition: font-size 0.35s var(--ease-out);
    }

    nav.scrolled .logo { font-size: 20px; }

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

    .nav-cta {
      color: var(--text-muted);
      font-weight: 500;
      font-size: 14px;
      text-decoration: none;
      transition: color 0.2s;
    }

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

    .nav-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent-dim);
      border: 1px solid rgba(74, 222, 128, 0.25);
      color: var(--accent);
      font-weight: 600;
      font-size: 13px;
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 100px;
      transition: background 0.25s var(--ease-out),
                  transform 0.25s var(--ease-out),
                  border-color 0.25s var(--ease-out);
    }

    .nav-btn:hover {
      background: rgba(74, 222, 128, 0.22);
      border-color: rgba(74, 222, 128, 0.45);
      transform: translateY(-1px);
    }

    /* HERO */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 24px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translate(-50%, -10%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(74, 222, 128, 0.12) 0%, transparent 65%);
      pointer-events: none;
      animation: heroGlow 12s ease-in-out infinite;
      filter: blur(8px);
      will-change: transform, opacity;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 35%;
      left: 30%;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(74, 222, 128, 0.06) 0%, transparent 70%);
      pointer-events: none;
      animation: heroGlowAlt 16s ease-in-out infinite;
      filter: blur(20px);
    }

    /* Parallax wrapper: only translateY affected by scroll, glow keeps its own animation */
    .hero-parallax {
      position: absolute;
      inset: 0;
      pointer-events: none;
      will-change: transform;
      transform: translate3d(0, 0, 0);
    }

    /* PARTICLES */
    .particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0;
      box-shadow: 0 0 6px rgba(74, 222, 128, 0.55);
      will-change: transform, opacity;
      animation: particleFloat var(--p-dur, 14s) ease-in-out infinite;
      animation-delay: var(--p-delay, 0s);
      top: var(--p-top, 50%);
      left: var(--p-left, 50%);
      transform: translate3d(0, 0, 0);
    }

    .particle.sm { width: 2px; height: 2px; opacity: 0.4; }
    .particle.md { width: 3px; height: 3px; }

    @keyframes particleFloat {
      0%   { transform: translate3d(0, 0, 0) scale(0.8); opacity: 0; }
      15%  { opacity: 0.7; }
      50%  { transform: translate3d(var(--p-x, 30px), var(--p-y, -40px), 0) scale(1); opacity: 0.9; }
      85%  { opacity: 0.5; }
      100% { transform: translate3d(0, var(--p-y2, -80px), 0) scale(0.7); opacity: 0; }
    }

    @keyframes heroGlow {
      0%, 100% { transform: translate(-50%, -10%) scale(1); opacity: 0.85; }
      33% { transform: translate(-45%, -8%) scale(1.08); opacity: 1; }
      66% { transform: translate(-55%, -12%) scale(0.96); opacity: 0.7; }
    }

    @keyframes heroGlowAlt {
      0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
      50% { transform: translate(40px, -20px) scale(1.15); opacity: 1; }
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-dim);
      border: 1px solid rgba(74, 222, 128, 0.2);
      color: var(--accent);
      font-size: 13px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 32px;
      opacity: 0;
      transform: translateY(12px);
      animation: heroFadeIn 0.8s var(--ease-out) 0.1s forwards;
      position: relative;
      z-index: 1;
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 2s infinite;
      box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(74, 222, 128, 0.6); }
      50% { opacity: 0.5; transform: scale(0.8); box-shadow: 0 0 2px rgba(74, 222, 128, 0.3); }
    }

    h1 {
      font-size: clamp(40px, 7vw, 80px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 24px;
      max-width: 800px;
      position: relative;
      z-index: 1;
    }

    h1 em {
      font-style: normal;
      color: var(--accent);
      position: relative;
      display: inline-block;
    }

    /* Continuous subtle luminosity pulse on accent text */
    .accent-pulse,
    h1 em,
    .check,
    .hero-note strong,
    .deal-price,
    .price-big .accent {
      animation: accentPulse 4.5s ease-in-out infinite;
      will-change: filter;
    }

    @keyframes accentPulse {
      0%, 100% {
        filter: brightness(1) drop-shadow(0 0 0 rgba(74, 222, 128, 0));
      }
      50% {
        filter: brightness(1.15) drop-shadow(0 0 6px rgba(74, 222, 128, 0.35));
      }
    }

    .word {
      display: inline-block;
      opacity: 0;
      transform: translateY(28px);
      will-change: transform, opacity;
    }

    .word.in {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

    .hero-sub {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--text-secondary);
      max-width: 560px;
      margin-bottom: 40px;
      line-height: 1.7;
      opacity: 0;
      transform: translateY(16px);
      animation: heroFadeIn 0.9s var(--ease-out) 0.9s forwards;
      position: relative;
      z-index: 1;
    }

    .hero-cta-row {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      opacity: 0;
      transform: translateY(16px);
      animation: heroFadeIn 0.9s var(--ease-out) 1.1s forwards;
      position: relative;
      z-index: 1;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: #08090C;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 100px;
      transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
      box-shadow: 0 8px 24px -8px rgba(74, 222, 128, 0.5);
      animation: ctaGlowPulse 3.6s ease-in-out infinite;
    }

    @keyframes ctaGlowPulse {
      0%, 100% { box-shadow: 0 8px 24px -8px rgba(74, 222, 128, 0.5); }
      50%      { box-shadow: 0 10px 32px -8px rgba(74, 222, 128, 0.75); }
    }

    .hero-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px -10px rgba(74, 222, 128, 0.7);
    }

    .hero-cta-arrow, .btn-arrow { display: inline-block; transition: transform 0.25s var(--ease-out); }
    .hero-cta:hover .hero-cta-arrow, .btn-primary:hover .btn-arrow { transform: translateX(4px); }

    .hero-note {
      font-size: 13px;
      color: var(--text-muted);
    }

    .hero-note strong { color: var(--accent); }

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

    /* SECTION COMMON */
    section { padding: 100px 24px; position: relative; }

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

    .section-label {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--accent);
      margin-bottom: 16px;
    }

    h2 {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1.15;
      margin-bottom: 16px;
      position: relative;
      display: inline-block;
      color: var(--text);
    }

    .section-sub {
      font-size: 17px;
      color: var(--text-secondary);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 60px;
    }

    /* REVEAL ANIMATIONS */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
      will-change: transform, opacity;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
      will-change: transform, opacity;
    }

    .reveal-stagger.in > * {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
    .reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
    .reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
    .reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
    .reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
    .reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
    .reveal-stagger.in > *:nth-child(7) { transition-delay: 0.6s; }
    .reveal-stagger.in > *:nth-child(8) { transition-delay: 0.65s; }
    .reveal-stagger.in > *:nth-child(9) { transition-delay: 0.7s; }
    .reveal-stagger.in > *:nth-child(10) { transition-delay: 0.75s; }

    /* TILT CARDS — micro 3D perspective on hover */
    .tilt {
      transform-style: preserve-3d;
      transform: perspective(700px) rotateX(0) rotateY(0) translateZ(0);
      transition: transform 0.3s ease-out,
                  border-color 0.25s ease-out,
                  box-shadow 0.25s ease-out;
      will-change: transform;
    }

    /* PROBLEM */
    .problem { background: var(--bg); }

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

    @media (max-width: 600px) {
      .pain-grid { grid-template-columns: 1fr; }
    }

    .cf-turnstile { transform-origin: left center; }

    .pain-card {
      background: rgba(220, 38, 38, 0.08);
      border: 1px solid rgba(220, 38, 38, 0.25);
      border-radius: var(--radius);
      padding: 28px;
      transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out;
      will-change: box-shadow, border-color;
    }

    .pain-card:hover {
      border-color: rgba(220, 38, 38, 0.5);
      box-shadow: 0 18px 40px -20px rgba(220, 38, 38, 0.3);
    }

    .reveal-stagger.in > .pain-card:hover,
    .reveal-stagger.in > .feature-card:hover {
      transition-delay: 0s;
    }

    .pain-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .pain-icon {
      font-size: 28px;
      flex-shrink: 0;
    }

    .pain-card-header .feature-icon {
      flex-shrink: 0;
      margin-bottom: 0;
    }

    .pain-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin: 0;
    }

    .pain-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* FEATURES */
    .features { background: var(--surface); }

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

    @media (max-width: 600px) {
      .features-grid { grid-template-columns: 1fr; }
    }

    .feature-card {
      background: rgba(74, 222, 128, 0.05);
      border: 1px solid rgba(74, 222, 128, 0.2);
      border-radius: var(--radius);
      padding: 28px;
      position: relative;
      transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out;
      will-change: box-shadow, border-color;
    }

    .offer-right {
      animation: borderGlowPulse 6s ease-in-out infinite;
      will-change: box-shadow;
    }

    @keyframes borderGlowPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
      50%      { box-shadow: 0 0 24px -6px rgba(74, 222, 128, 0.18); }
    }


    .feature-card:hover {
      border-color: rgba(74, 222, 128, 0.4);
      box-shadow: 0 18px 40px -20px rgba(74, 222, 128, 0.4);
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      background: var(--accent-dim);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 20px;
      transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
    }

    /* When the section is active in viewport, icons subtly bounce */
    .features.section-active .feature-icon {
      animation: iconBounce 3.4s ease-in-out infinite;
    }

    .features.section-active .feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
    .features.section-active .feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
    .features.section-active .feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
    .features.section-active .feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }

    @keyframes iconBounce {
      0%, 100% { transform: translateY(0) rotate(0); }
      45%      { transform: translateY(-4px) rotate(-2deg); }
      55%      { transform: translateY(-4px) rotate(-2deg); }
    }

    .feature-card:hover .feature-icon {
      transform: scale(1.08) rotate(-4deg);
      background: rgba(74, 222, 128, 0.18);
    }

    .feature-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .feature-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* PRIVACY */
    .privacy { background: var(--bg); padding-top: 0; }

    .privacy-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      position: relative;
    }


    .privacy-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 32px;
      position: relative;
    }

    .privacy-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 15px;
      color: var(--text-secondary);
    }

    .check {
      color: var(--accent);
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .privacy-visual {
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      align-self: end;
    }

    .privacy-item {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out;
    }

    .privacy-item:hover {
      border-color: rgba(74, 222, 128, 0.35);
      box-shadow: 0 8px 24px rgba(74, 222, 128, 0.08);
      transition-delay: 0s;
    }

    .privacy-item-icon { font-size: 20px; }

    .privacy-item-text { font-size: 13px; font-weight: 600; }
    .privacy-item-sub { font-size: 12px; color: var(--text-muted); }

    .privacy-item-status {
      margin-left: auto;
      background: var(--accent-dim);
      color: var(--accent);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 100px;
    }

    /* OFFER */
    .offer { background: var(--surface); }

    .offer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .offer-left { padding-top: 8px; }

    .offer-left .section-sub {
      margin-bottom: 32px;
    }

    .price-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    .price-features li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--text-secondary);
    }

    .price-display {
      display: flex;
      align-items: baseline;
      gap: 10px;
    }

    .price-big {
      font-size: 48px;
      font-weight: 900;
      letter-spacing: -2px;
      color: var(--text);
    }

    .price-big span {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0;
    }

    .price-period {
      font-size: 13px;
      color: var(--text-muted);
    }

    .offer-right {
      background: var(--bg);
      border: 1px solid rgba(74,222,128,0.25);
      border-radius: 20px;
      padding: 28px 28px 28px 28px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    }


    .offer-right::before {
      content: '';
      position: absolute;
      top: -40px; left: 50%;
      transform: translateX(-50%);
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(74,222,128,0.12) 0%, transparent 70%);
      pointer-events: none;
      animation: heroGlow 14s ease-in-out infinite;
    }

    .ambassador-badge {
      background: var(--accent);
      color: #08090C;
      font-size: 11px;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 100px;
      white-space: nowrap;
      align-self: flex-start;
    }

    .deal-block {
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    .deal-price {
      font-size: 68px;
      font-weight: 900;
      letter-spacing: -2px;
      color: var(--accent);
      line-height: 1;
      display: inline-flex;
      align-items: baseline;
    }

    .deal-price-num {
      display: inline-block;
      min-width: 1ch;
    }

    .deal-price span {
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0;
    }

    .deal-original {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 6px;
    }

    .deal-original s { color: var(--text-muted); }

    /* WAITLIST FORM */
    .waitlist-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 100%;
      margin: 0 0 12px;
      position: relative;
    }

    .waitlist-form input {
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      padding: 14px 18px;
      border-radius: 10px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.25s var(--ease-out);
      width: 100%;
    }

    .waitlist-form input::placeholder { color: var(--text-muted); }
    .waitlist-form input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.12);
    }

    .btn-primary {
      background: var(--accent);
      color: #08090C;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 15px;
      padding: 14px 24px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.2s, transform 0.15s var(--ease-out), box-shadow 0.25s var(--ease-out);
      width: 100%;
      text-align: center;
      position: relative;
      animation: ctaGlowPulse 3.6s ease-in-out infinite;
    }

    .btn-primary:hover {
      opacity: 0.95;
      transform: translateY(-2px);
      box-shadow: 0 14px 32px -10px rgba(74, 222, 128, 0.7);
    }

    .btn-primary:active { transform: scale(0.98); }

    .btn-primary.success {
      background: #22c55e;
      pointer-events: none;
      animation: none;
    }

    @media (max-width: 768px) {
      .offer-grid { grid-template-columns: 1fr; gap: 32px; }
      .deal-block { flex-direction: column; }
      .deal-block .ambassador-badge { order: -1; align-self: flex-start; }
    }

    /* SUCCESS STATE */
    .success-msg {
      max-height: 0;
      overflow: hidden;
      color: var(--accent);
      font-size: 14px;
      font-weight: 600;
      transition: max-height 0.5s var(--ease-out), margin-top 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
      opacity: 0;
      margin-top: 0;
    }

    .success-msg.show {
      max-height: 80px;
      margin-top: 12px;
      opacity: 1;
    }

    .success-msg-inner {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 14px;
      background: var(--accent-dim);
      border: 1px solid rgba(74, 222, 128, 0.3);
      border-radius: 10px;
    }

    .success-check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--accent);
      color: #08090C;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      flex-shrink: 0;
    }

    /* SPECS */
    .specs { background: var(--bg); position: relative; overflow: hidden; }

    .specs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 40px;
    }

    .spec-card {
      background: rgba(74, 222, 128, 0.05);
      border: 1px solid rgba(74, 222, 128, 0.2);
      border-radius: var(--radius);
      padding: 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out;
    }

    .spec-card:hover,
    .reveal-stagger.in > .spec-card:hover {
      border-color: var(--accent);
      box-shadow: 0 8px 24px rgba(74, 222, 128, 0.12);
      transition-delay: 0s;
    }

    .spec-card-icon {
      flex-shrink: 0;
      background: var(--accent-dim);
      border-radius: 12px;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .spec-card-icon i[data-lucide] {
      width: 22px;
      height: 22px;
      stroke: var(--accent);
      stroke-width: 1.75;
    }

    .spec-card-body { flex: 1; min-width: 0; }

    .spec-card-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      margin: 0 0 6px;
      line-height: 1.35;
    }

    .spec-card-desc {
      font-size: 14px;
      color: var(--text-secondary);
      margin: 0;
      line-height: 1.55;
    }

.specs-basics {
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
    }

    .specs-basics-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 16px;
    }

    .specs-basics-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .spec-card-gray {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out;
    }

    .spec-card-gray:hover,
    .reveal-stagger.in > .spec-card-gray:hover {
      border-color: rgba(255,255,255,0.15);
      box-shadow: 0 8px 24px rgba(255,255,255,0.04);
      transition-delay: 0s;
    }

    .spec-card-gray .spec-card-icon {
      background: var(--surface2);
    }

    .spec-card-gray .spec-card-icon i[data-lucide] {
      stroke: var(--text-muted);
    }

    .spec-card-gray .spec-card-title {
      font-size: 14px;
      color: var(--text-secondary);
    }

    .spec-card-gray .spec-card-desc {
      font-size: 13px;
      color: var(--text-muted);
    }

    @media (max-width: 768px) {
      .specs-basics-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .specs-grid { grid-template-columns: 1fr; gap: 12px; }
      .spec-card { padding: 20px; }
    }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      padding: 32px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      color: var(--text-muted);
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      nav, nav.scrolled { padding: 14px 20px; }
      .privacy-box {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 24px;
      }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
      .word, .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
      .particles { display: none; }
      .scroll-progress { display: none; }
      .tilt { transform: none !important; }
    }

    /* Disable tilt on touch / small screens for perf and intent */
    @media (hover: none), (max-width: 768px) {
      .tilt { transform: none !important; }
    }

    /* Feature icons */
    .feature-icon i[data-lucide] {
      width: 22px;
      height: 22px;
      stroke: var(--accent);
      stroke-width: 1.75;
    }

    /* Pain icons */
    .pain-icon i[data-lucide] {
      width: 28px;
      height: 28px;
      stroke: var(--accent);
      stroke-width: 1.5;
    }

    /* Spec items */
    .spec-item i[data-lucide] {
      width: 16px;
      height: 16px;
      stroke: var(--accent);
      stroke-width: 2;
      flex-shrink: 0;
    }

    /* Privacy items */
    .privacy-item-icon i[data-lucide] {
      width: 20px;
      height: 20px;
      stroke: var(--text-secondary);
      stroke-width: 1.75;
    }
