/* ─────────────────────────────────────────────────────────────────────
   TOKENS
   ───────────────────────────────────────────────────────────────────── */
:root {
  /* Surface */
  --bg:        #050505;
  --bg-soft:   #0a0a0c;
  --grid:      rgba(255,255,255,0.035);
  --grid-2:    rgba(255,255,255,0.018);

  /* Glass */
  --glass:     rgba(10,10,12,0.55);
  --glass-2:   rgba(14,14,18,0.72);
  --hairline:  rgba(255,255,255,0.06);
  --hairline-2:rgba(255,255,255,0.10);
  --hairline-3:rgba(255,255,255,0.14);

  /* Type */
  --ink:       #F4F5F7;
  --ink-2:     #D7DAE0;
  --mute:      #9098A6;
  --mute-2:    #5D6573;
  --mute-3:    #3C424F;

  /* Brand (from logo) */
  --neon-cyan: #00F5FF;
  --neon-green:#00FF9C;
  --grad-neon: linear-gradient(90deg, #00F5FF 0%, #00FF9C 100%);
  --amber:     #FFB800;

  /* WhatsApp-ish chat */
  --wa-bg:     #07120F;
  --wa-recv:   #1B2D27;
  --wa-sent:   #014C3C;

  /* Fonts */
  --f-head:    'Geist', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    'Geist Mono', 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: 'cv11' 1, 'ss01' 1;
}

::selection { background: rgba(0,245,255,0.22); color: #fff; }

/* ─────────────────────────────────────────────────────────────────────
   GLOBAL GRID BACKDROP
   ───────────────────────────────────────────────────────────────────── */
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 30%, transparent 90%);
}
.grid-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-2) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 0%, transparent 70%);
}

.aurora {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.aurora::before, .aurora::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(120px);
}
.aurora::before {
  width: 720px; height: 720px;
  top: -200px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,245,255,0.10), transparent 60%);
}
.aurora::after {
  width: 560px; height: 560px;
  top: 380px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,255,156,0.08), transparent 60%);
}

main, nav, footer { position: relative; z-index: 1; }

/* ─────────────────────────────────────────────────────────────────────
   TYPE
   ───────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, .display, .eyebrow {
  font-family: var(--f-head);
  letter-spacing: -0.02em;
}
h1 { font-weight: 500; }
h2 { font-weight: 500; }
h3 { font-weight: 600; }
.body-l { font-size: 18px; line-height: 1.6; color: var(--mute); }
.body-m { font-size: 15px; line-height: 1.65; color: var(--mute); }
.body-s { font-size: 13.5px; line-height: 1.6; color: var(--mute); }
.mono   { font-family: var(--f-mono); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--mute);
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--mute-2);
}

/* ─────────────────────────────────────────────────────────────────────
   NAV (glass pill, floating)
   ───────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px 10px 18px;
  background: rgba(8,8,10,0.65);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.02);
  max-width: calc(100vw - 24px);
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; line-height: 0;
  padding-right: 12px; border-right: 1px solid var(--hairline);
}
.nav-logo-img { height: 22px; width: 22px; object-fit: contain; mix-blend-mode: screen; }
.nav-logo-text {
  font-family: var(--f-head); font-weight: 600; font-size: 15px;
  letter-spacing: -0.04em; color: var(--ink);
}
.nav-links {
  display: flex; align-items: center; list-style: none; gap: 4px;
}
.nav-links a {
  color: var(--mute); text-decoration: none;
  font-size: 13px; font-weight: 500;
  padding: 7px 12px; border-radius: 100px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.nav-right { display: flex; align-items: center; gap: 8px; padding-left: 8px; border-left: 1px solid var(--hairline); }
.lang-toggle {
  display: flex; background: rgba(255,255,255,0.03);
  border: 1px solid var(--hairline); border-radius: 100px; overflow: hidden;
}
.lang-btn {
  padding: 5px 10px; font-size: 10.5px; font-weight: 600;
  font-family: var(--f-mono); border: none; cursor: pointer;
  background: transparent; color: var(--mute-2); letter-spacing: 0.05em;
  transition: color .2s, background .2s;
}
.lang-btn.active { background: rgba(0,245,255,0.10); color: var(--neon-cyan); }
.nav-hub {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-2); text-decoration: none;
  font-size: 13px; font-weight: 500;
  padding: 7px 12px; border-radius: 100px;
  border: 1px solid var(--hairline);
  transition: border-color .2s, color .2s, background .2s;
}
.nav-hub:hover { border-color: var(--hairline-3); color: var(--ink); background: rgba(255,255,255,0.04); }
.nav-cta {
  background: var(--ink); color: #060606;
  padding: 7px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ─────────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 140px 32px 60px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 12px;
  background: rgba(10,10,12,0.6);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 0 0 rgba(0,255,156,0.5);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,255,156,0.5); }
  50%     { box-shadow: 0 0 0 6px rgba(0,255,156,0); }
}

.hero h1 {
  font-family: var(--f-head); font-weight: 500;
  font-size: clamp(44px, 7.5vw, 88px);
  line-height: 0.96; letter-spacing: -0.045em;
  max-width: 900px;
  margin-bottom: 26px;
}
.hero h1 .line1 { display: block; color: var(--ink); }
.hero h1 .line2 {
  display: block;
  background: var(--grad-neon);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.hero-desc {
  font-family: var(--f-body); font-size: 17px; line-height: 1.65;
  color: var(--mute); max-width: 600px;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 80px;
}

/* Neon-border primary CTA */
.btn-neon {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: rgba(8,8,10,0.85);
  color: var(--ink);
  border-radius: 14px;
  font-family: var(--f-body); font-weight: 600; font-size: 14.5px;
  text-decoration: none;
  border: 1px solid var(--hairline-2);
  transition: transform .2s, border-color .2s;
  overflow: hidden;
}
.btn-neon::before {
  content: ''; position: absolute; inset: -2px;
  background: conic-gradient(from 0deg,
    transparent 0deg,
    var(--neon-cyan) 50deg,
    var(--neon-green) 110deg,
    transparent 180deg,
    transparent 360deg);
  border-radius: 16px;
  opacity: 0; transition: opacity .25s;
  z-index: -2;
  animation: spinNeon 2.2s linear infinite paused;
}
.btn-neon::after {
  content: ''; position: absolute; inset: 1px;
  background: rgba(8,8,10,0.95);
  border-radius: 13px;
  z-index: -1;
}
.btn-neon:hover {
  transform: translateY(-2px);
  border-color: transparent;
}
.btn-neon:hover::before {
  opacity: 1; animation-play-state: running;
}
@keyframes spinNeon { to { transform: rotate(360deg); } }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 18px; color: var(--mute);
  font-size: 14.5px; font-weight: 500;
  text-decoration: none; border-radius: 14px;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost .arrow {
  display: inline-block; transition: transform .2s;
}
.btn-ghost:hover .arrow { transform: translateX(3px); }

/* ─── HERO PHONE ─────────────────────────────────────────────────────── */
.hero-phone-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 56px;
}
.hero-phone-wrap::before {
  content: ''; position: absolute;
  width: 520px; height: 360px;
  bottom: -40px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,245,255,0.10), rgba(0,255,156,0.06), transparent 70%);
  filter: blur(40px); pointer-events: none; z-index: -1;
}

/* ─── iPhone 15 Pro frame (titanium) ─────────────────────────────── */
.phone {
  width: 320px;
  background:
    linear-gradient(145deg, #5a5a5e 0%, #2a2a2c 22%, #1a1a1c 50%, #2c2c2e 78%, #15151a 100%);
  border-radius: 54px;
  padding: 5px;
  position: relative;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.7),
    0 30px 80px rgba(0,245,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 2px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06);
}
.phone::before {
  /* titanium edge highlight */
  content: ''; position: absolute; inset: 0;
  border-radius: 54px; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), transparent 8%, transparent 92%, rgba(255,255,255,0.08)),
    linear-gradient(90deg, rgba(255,255,255,0.06), transparent 6%, transparent 94%, rgba(255,255,255,0.06));
  mix-blend-mode: screen;
}
.phone::after {
  /* side button (volume) hint */
  content: ''; position: absolute;
  left: -2px; top: 130px;
  width: 2px; height: 44px;
  background: linear-gradient(90deg, #15151a, #2c2c2e);
  border-radius: 2px 0 0 2px;
}

.phone-screen {
  background: #EFEAE2; /* WhatsApp light wallpaper */
  border-radius: 49px;
  overflow: hidden;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Dynamic Island */
.phone-island {
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 32px;
  background: #000;
  border-radius: 100px;
  z-index: 10;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.9),
    inset 0 -1px 0 rgba(255,255,255,0.05);
}
.phone-island::before {
  /* faux camera glint */
  content: ''; position: absolute;
  right: 9px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a3340 0%, #0a0d12 60%, #000 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* iOS status bar */
.wp-statusbar {
  position: relative; z-index: 5;
  height: 54px;
  padding: 16px 26px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: -apple-system, "SF Pro Text", "Helvetica Neue", sans-serif;
  color: #000;
  background: transparent;
}
.sb-time {
  font-size: 14px; font-weight: 600; letter-spacing: -0.02em;
}
.sb-icons {
  display: inline-flex; align-items: center; gap: 5px;
  color: #000;
}
.sb-ico { display: block; }
.sb-batt { width: 26px; height: 12px; }

/* WhatsApp light header */
.wp-header {
  background: #F0F2F5;
  padding: 8px 14px 8px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative; z-index: 2;
}
.wp-back { color: #007AFF; font-size: 22px; line-height: 1; font-weight: 400; }
.wp-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  object-fit: contain;
  background: #000;
  padding: 3px;
  flex-shrink: 0;
}
.wp-meta { line-height: 1.2; }
.wp-name { font-family: -apple-system, sans-serif; font-weight: 600; font-size: 15px; color: #111B21; letter-spacing: -0.01em; }
.wp-status { font-size: 11.5px; color: #667781; }
.wp-status .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #25D366; margin-right: 4px; vertical-align: middle;
  animation: pulseDot 2s infinite;
}

/* WhatsApp message stream */
.wp-body {
  padding: 10px 10px 10px;
  display: flex; flex-direction: column; gap: 3px;
  min-height: 420px;
  max-height: 420px;
  overflow: hidden;
  position: relative;
}

.wp-msg {
  max-width: 82%;
  padding: 5px 10px 4px;
  font-size: 12.5px; line-height: 1.4;
  font-family: -apple-system, "SF Pro Text", "Helvetica Neue", sans-serif;
  white-space: pre-line; word-wrap: break-word;
  position: relative;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: msgPop 0.42s cubic-bezier(.22,1.4,.36,1) forwards;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.10);
}
.wp-msg.sent {
  align-self: flex-end;
  background: #D9FDD3; /* WA mint */
  color: #111B21;
  border-radius: 8px 8px 2px 8px;
  margin-right: 4px;
}
.wp-msg.recv {
  align-self: flex-start;
  background: #FFFFFF;
  color: #111B21;
  border-radius: 8px 8px 8px 2px;
  margin-left: 4px;
}
.wp-msg .wp-time {
  font-size: 9.5px; color: #667781;
  text-align: right; margin-top: 1px;
}
.wp-msg.sent .wp-time::after { content: ' ✓✓'; color: #53BDEB; }
.wp-msg em { font-style: italic; color: #54656F; }
.wp-msg strong { font-weight: 600; }
@keyframes msgPop {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Typing indicator bubbles */
.wp-typing {
  padding: 9px 13px;
  border-radius: 8px 8px 8px 2px;
  margin-left: 4px;
  align-self: flex-start;
  background: #FFFFFF;
  display: inline-flex; align-items: center; gap: 4px;
  opacity: 0;
  transform: translateY(6px);
  animation: msgPop 0.3s ease forwards;
  width: fit-content;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.10);
}
.wp-typing.sent {
  align-self: flex-end;
  background: #D9FDD3;
  border-radius: 8px 8px 2px 8px;
  margin-left: 0; margin-right: 4px;
}
.wp-typing .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #667781;
  animation: typeBounce 1.2s infinite ease-in-out;
}
.wp-typing .dot:nth-child(2) { animation-delay: 0.15s; }
.wp-typing .dot:nth-child(3) { animation-delay: 0.30s; }
@keyframes typeBounce {
  0%,80%,100% { transform: translateY(0); opacity: 0.4; }
  40%         { transform: translateY(-4px); opacity: 1; }
}

.wp-typing-banner {
  position: absolute; top: 0; left: 0; right: 0;
  font-size: 10.5px; color: #008069;
  text-align: center; padding: 2px 0;
  font-family: var(--f-mono);
  background: rgba(0,128,105,0.06);
  border-bottom: 1px solid rgba(0,128,105,0.10);
  pointer-events: none; opacity: 0;
  transition: opacity .25s;
  z-index: 2;
}
.wp-typing-banner.show { opacity: 1; }

/* WhatsApp footer (input bar) — light */
.wp-foot {
  background: #F0F2F5;
  padding: 8px 10px;
  display: flex; align-items: center; gap: 8px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.wp-foot-input {
  flex: 1; background: #FFFFFF;
  border-radius: 100px; height: 32px;
  padding: 0 14px; display: flex; align-items: center;
  font-size: 12.5px; color: #8696A0;
  border: 1px solid rgba(0,0,0,0.04);
}
.wp-foot-mic {
  width: 32px; height: 32px; border-radius: 50%;
  background: #008069;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}

/* ─── STATS ──────────────────────────────────────────────────────────── */
.stats-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 680px; width: 100%;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
}
.stat { padding: 22px 24px; text-align: center; border-right: 1px solid var(--hairline); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--f-mono); font-weight: 600;
  font-size: 22px; letter-spacing: -0.02em;
  background: var(--grad-neon);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 11px; color: var(--mute-2);
  margin-top: 6px; letter-spacing: 0.02em;
  font-family: var(--f-mono); text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────────────
   SHARED SECTIONS
   ───────────────────────────────────────────────────────────────────── */
.section {
  padding: 140px 32px;
  max-width: 1240px; margin: 0 auto;
  position: relative;
}
.section-head {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 720px; margin: 0 auto 64px; text-align: center;
}
.section-head .eyebrow { align-self: center; }
.section-title {
  font-family: var(--f-head); font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05; letter-spacing: -0.035em;
  color: var(--ink);
}
.section-title em { font-style: normal;
  background: var(--grad-neon);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 16px; line-height: 1.65; color: var(--mute);
}

/* ─────────────────────────────────────────────────────────────────────
   TRUST STRIP
   ───────────────────────────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 32px;
  background: rgba(0,255,156,0.012);
}
.trust-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center; justify-content: center;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--mute);
  font-family: var(--f-body);
}
.trust-item svg { width: 14px; height: 14px; color: var(--neon-green); flex-shrink: 0; }
.trust-item strong { color: var(--neon-cyan); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────────
   INTEGRATIONS
   ───────────────────────────────────────────────────────────────────── */
.integ-wrap {
  padding: 48px 32px;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
.integ-label {
  font-family: var(--f-mono);
  font-size: 11px; color: var(--mute-2);
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 22px;
}
.integ-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}
.integ-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  color: var(--mute); font-size: 12.5px; font-weight: 500;
  transition: border-color .2s, color .2s, transform .2s;
}
.integ-badge:hover { border-color: var(--hairline-3); color: var(--ink); transform: translateY(-1px); }
.integ-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.integ-note {
  max-width: 640px; margin: 18px auto 0;
  font-size: 12.5px; line-height: 1.6; color: var(--mute-2);
  font-family: var(--f-body);
}
.integ-note strong { color: var(--ink-2); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────────
   FEATURES DASHBOARD
   ───────────────────────────────────────────────────────────────────── */
.dash {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.dash-left { display: flex; flex-direction: column; gap: 24px; }
.dash-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dash-tab {
  position: relative;
  text-align: left; padding: 16px 16px;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .25s, background .25s, transform .25s;
  color: var(--mute);
  font-family: var(--f-body);
}
.dash-tab .tab-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
  margin-bottom: 6px;
  font-size: 16px;
  transition: background .25s, border-color .25s, color .25s;
}
.dash-tab .tab-title {
  font-family: var(--f-head); font-weight: 600; font-size: 13.5px;
  color: var(--ink-2); letter-spacing: -0.01em;
}
.dash-tab .tab-desc { font-size: 11.5px; color: var(--mute-2); line-height: 1.5; }
.dash-tab:hover {
  border-color: var(--hairline-3);
  background: var(--glass-2);
  transform: translateY(-1px);
}
.dash-tab.active {
  border-color: rgba(0,245,255,0.45);
  background: linear-gradient(180deg, rgba(0,245,255,0.06), rgba(0,255,156,0.03));
  box-shadow:
    0 0 0 1px rgba(0,245,255,0.18) inset,
    0 10px 28px rgba(0,245,255,0.10);
}
.dash-tab.active .tab-title { color: var(--ink); }
.dash-tab.active .tab-icon {
  background: rgba(0,245,255,0.10);
  border-color: rgba(0,245,255,0.32);
  color: var(--neon-cyan);
}
.dash-tab .tab-bar {
  position: absolute; left: 12px; right: 12px; bottom: 6px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
}
.dash-tab.active .tab-bar { opacity: 1; }
.dash-tab.active.animate .tab-bar { animation: tabFill 7s linear forwards; }
@keyframes tabFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.dash-right {
  position: sticky; top: 100px;
  display: flex; justify-content: center;
}
.dash-right .phone { width: 320px; }

.dash-foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: 4px;
  padding: 14px 18px;
  background: var(--glass);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  backdrop-filter: blur(14px);
}
.dash-foot-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 12px var(--neon-green);
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}
.dash-foot p {
  font-size: 13px; color: var(--mute); flex: 1; line-height: 1.55;
}
.dash-foot strong { color: var(--ink-2); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────────
   HOW STEPS
   ───────────────────────────────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.step {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 32px 28px;
  transition: border-color .25s, transform .25s;
}
.step:hover {
  border-color: var(--hairline-3); transform: translateY(-3px);
}
.step-num {
  font-family: var(--f-mono); font-weight: 500;
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--neon-cyan);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.step-num::before {
  content: ''; width: 24px; height: 1px;
  background: linear-gradient(90deg, var(--neon-cyan), transparent);
}
.step-title {
  font-family: var(--f-head); font-weight: 600;
  font-size: 19px; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: var(--mute); line-height: 1.65; }

/* ─────────────────────────────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card-hero {
  grid-column: 1 / -1;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 36px 28px 28px;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-3px); border-color: var(--hairline-3); }
.price-card.featured {
  border-color: rgba(0,245,255,0.32);
  background: linear-gradient(180deg, rgba(0,245,255,0.04), var(--glass));
  box-shadow: 0 0 0 1px rgba(0,245,255,0.20) inset, 0 18px 50px rgba(0,245,255,0.08);
}
.popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translate(-50%, -50%);
  padding: 5px 14px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
  color: #050505; border-radius: 100px;
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.price-tier {
  font-family: var(--f-mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--mute); margin-bottom: 4px;
}
.price-name {
  font-family: var(--f-head); font-weight: 600; font-size: 22px;
  letter-spacing: -0.02em; color: var(--ink);
}
.price-amount-row {
  display: flex; align-items: baseline; gap: 6px;
  margin: 22px 0 24px;
  padding-bottom: 22px; border-bottom: 1px solid var(--hairline);
}
.price-amount {
  font-family: var(--f-head); font-weight: 500;
  font-size: 44px; letter-spacing: -0.04em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.price-suffix { color: var(--mute); font-size: 13px; }
.price-features {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px; flex: 1;
}
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.5;
}
.price-features svg {
  width: 14px; height: 14px; flex-shrink: 0;
  margin-top: 3px; color: var(--neon-cyan);
}
.featured .price-features svg { color: var(--neon-green); }
.price-btn {
  display: block; padding: 13px; text-align: center;
  border-radius: 12px; text-decoration: none;
  font-family: var(--f-body); font-size: 14px; font-weight: 600;
  transition: opacity .2s, transform .2s, background .2s, color .2s;
  cursor: pointer; border: 1px solid var(--hairline-2);
  background: rgba(255,255,255,0.03); color: var(--ink-2);
}
.price-btn:hover { background: rgba(255,255,255,0.07); color: var(--ink); transform: translateY(-1px); }
.featured .price-btn {
  background: var(--ink); color: #050505; border-color: var(--ink);
}
.featured .price-btn:hover { opacity: 0.92; }

/* ─────────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────────────── */
.testi-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.testi-card {
  grid-column: span 2;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.testi-card:hover { border-color: var(--hairline-3); transform: translateY(-2px); }
.testi-card:nth-child(4) { grid-column: 2 / 4; }
.testi-card:nth-child(5) { grid-column: 4 / 6; }
.testi-stars { color: var(--amber); font-size: 13px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text {
  font-size: 14.5px; color: var(--ink-2);
  line-height: 1.7; margin-bottom: 24px; flex: 1;
  letter-spacing: -0.005em;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-weight: 600; font-size: 14px; color: #050505;
  flex-shrink: 0;
}
.testi-name { font-family: var(--f-head); font-weight: 600; font-size: 13.5px; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--mute-2); }

/* ─────────────────────────────────────────────────────────────────────
   COMING SOON
   ───────────────────────────────────────────────────────────────────── */
.coming-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.coming-card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,184,0,0.16);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color .25s, transform .25s;
}
.coming-card:hover { border-color: rgba(255,184,0,0.32); transform: translateY(-2px); }
.coming-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(255,184,0,0.08);
  border: 1px solid rgba(255,184,0,0.20);
  border-radius: 100px;
  color: var(--amber);
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.coming-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,184,0,0.06);
  border: 1px solid rgba(255,184,0,0.18);
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}
.coming-title {
  font-family: var(--f-head); font-weight: 600;
  font-size: 17px; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 10px;
}
.coming-desc { font-size: 13.5px; color: var(--mute); line-height: 1.65; margin-bottom: 14px; }
.coming-how {
  padding: 10px 14px;
  background: rgba(255,184,0,0.025);
  border-left: 1.5px solid rgba(255,184,0,0.4);
  border-radius: 0 8px 8px 0;
  font-size: 12px; color: var(--mute);
  line-height: 1.6; font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: rgba(0,245,255,0.22); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 22px; cursor: pointer;
  font-family: var(--f-head); font-weight: 600; font-size: 14.5px;
  color: var(--ink-2); letter-spacing: -0.01em;
  user-select: none; transition: color .2s;
}
.faq-q:hover { color: var(--ink); }
.faq-item.open .faq-q { color: var(--neon-cyan); }
.faq-chevron {
  width: 16px; height: 16px;
  color: var(--mute-2); transition: transform .3s, color .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--neon-cyan); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 360px; }
.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 14px; color: var(--mute); line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────
   WAITLIST / FINAL CTA
   ───────────────────────────────────────────────────────────────────── */
.waitlist {
  padding: 120px 32px; text-align: center; position: relative;
}
.waitlist::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 60%, rgba(0,245,255,0.08), transparent 70%);
  pointer-events: none;
}
.waitlist-box {
  position: relative;
  max-width: 640px; margin: 0 auto;
  padding: 64px 48px;
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid var(--hairline-2);
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
}
.waitlist-box h2 {
  font-family: var(--f-head); font-weight: 500;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.05; letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.waitlist-sub { font-size: 16px; color: var(--mute); margin-bottom: 32px; line-height: 1.6; }
.waitlist-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  background: linear-gradient(90deg, #25D366, #1ebe5d);
  color: #fff;
  border-radius: 14px;
  font-family: var(--f-body); font-weight: 600; font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(37,211,102,0.25);
  transition: transform .2s, box-shadow .2s;
}
.waitlist-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(37,211,102,0.36); }
.waitlist-note { font-size: 12.5px; color: var(--mute-2); margin-top: 14px; font-family: var(--f-mono); letter-spacing: 0.02em; }

/* ─────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--hairline);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  background: rgba(8,8,10,0.7);
  backdrop-filter: blur(20px);
}
.footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-logo img { height: 24px; width: 24px; object-fit: contain; mix-blend-mode: screen; }
.footer-logo span {
  font-family: var(--f-head); font-weight: 600; font-size: 14px;
  letter-spacing: -0.03em; color: var(--ink);
}
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: var(--mute); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-right { font-size: 12.5px; color: var(--mute-2); font-family: var(--f-mono); }
.footer-social { display: flex; gap: 14px; align-items: center; }
.footer-social a { color: var(--mute-2); text-decoration: none; display: flex; transition: color .2s; }
.footer-social a:hover { color: var(--ink); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ─────────────────────────────────────────────────────────────────────
   FLOATING WHATSAPP WIDGET
   ───────────────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(37,211,102,0.42),
              inset 0 -2px 8px rgba(0,0,0,0.18);
  transition: transform .25s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float::before,
.wa-float::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0,255,156,0.55);
  opacity: 0;
  animation: waPing 5s ease-out infinite;
  pointer-events: none;
}
.wa-float::after { animation-delay: 2.5s; }
@keyframes waPing {
  0%   { transform: scale(0.92); opacity: 0; }
  8%   { opacity: 1; }
  40%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ─────────────────────────────────────────────────────────────────────
   PLAN MODAL
   ───────────────────────────────────────────────────────────────────── */
#plan-modal { display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px; }
#plan-modal .pm-card {
  background: var(--glass-2);
  backdrop-filter: blur(28px);
  border: 1px solid var(--hairline-2);
  border-radius: 24px; padding: 40px 32px;
  width: 100%; max-width: 380px; text-align: center; position: relative;
}
#pm-close { position: absolute; top: 16px; right: 18px;
  background: none; border: none; color: var(--mute);
  font-size: 22px; cursor: pointer; line-height: 1; }
#pm-close:hover { color: var(--ink); }
#plan-modal .pm-logo { font-family: var(--f-head); font-size: 20px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 18px; }
#pm-headline { font-family: var(--f-head); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
#pm-sub { font-size: 14px; color: var(--mute); line-height: 1.5; margin-bottom: 28px; }
#pm-google-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 20px; border-radius: 12px;
  background: var(--ink); color: #050505;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: opacity .2s; font-family: var(--f-body);
}
#pm-google-btn:hover { opacity: 0.92; }

/* ─────────────────────────────────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal].revealed { opacity: 1; transform: none; }

[data-reveal-group] > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
[data-reveal-group].revealed > * { opacity: 1; transform: none; }
[data-reveal-group].revealed > *:nth-child(1)  { transition-delay: .0s; }
[data-reveal-group].revealed > *:nth-child(2)  { transition-delay: .06s; }
[data-reveal-group].revealed > *:nth-child(3)  { transition-delay: .12s; }
[data-reveal-group].revealed > *:nth-child(4)  { transition-delay: .18s; }
[data-reveal-group].revealed > *:nth-child(5)  { transition-delay: .24s; }
[data-reveal-group].revealed > *:nth-child(6)  { transition-delay: .30s; }
[data-reveal-group].revealed > *:nth-child(7)  { transition-delay: .36s; }
[data-reveal-group].revealed > *:nth-child(8)  { transition-delay: .42s; }
[data-reveal-group].revealed > *:nth-child(n+9){ transition-delay: .48s; }

/* Hero entrance */
.hero-badge, .hero h1, .hero-desc, .hero-cta-group, .hero-phone-wrap, .stats-bar {
  animation: hFade .8s cubic-bezier(.22,1,.36,1) both;
}
.hero-badge       { animation-delay: .05s; }
.hero h1          { animation-delay: .18s; }
.hero-desc        { animation-delay: .30s; }
.hero-cta-group   { animation-delay: .42s; }
.hero-phone-wrap  { animation-delay: .55s; }
.stats-bar        { animation-delay: .75s; }
@keyframes hFade { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ─────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .dash, .fin { grid-template-columns: 1fr; gap: 48px; }
  .dash-right { position: static; }
  .steps, .coming-grid, .pricing-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card, .testi-card:nth-child(4), .testi-card:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  nav { padding: 8px 8px 8px 14px; gap: 8px; }
  .nav-logo { padding-right: 8px; }
  .nav-right { padding-left: 6px; gap: 6px; }
}
@media (max-width: 640px) {
  .hero { padding: 110px 18px 60px; }
  .section { padding: 90px 18px; }
  .integ-wrap { padding: 36px 18px; }
  .trust-strip { padding: 16px 18px; gap: 12px; }
  .trust-inner { gap: 14px; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero-cta-group { flex-direction: column; width: 100%; max-width: 320px; gap: 10px; }
  .btn-neon, .btn-ghost { width: 100%; justify-content: center; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--hairline); }
  .stat:last-child { border-bottom: none; }
  .dash-tabs { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .waitlist-box { padding: 48px 28px; }
  footer { padding: 32px 18px; flex-direction: column; text-align: center; }
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .phone { width: 280px; }
  .dash-right .phone { width: 280px; }
}
