/* =====================================================
   ORBI — styles.css  |  Visual ID v2  |  Dark-first
   ===================================================== */

/* === 1. TOKENS === */
:root {
  --bg: #0A0A0B;
  --bg-2: #0F0F11;
  --surface: #141417;
  --surface-2: #1A1A1E;
  --surface-3: #212126;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #FFFFFF;
  --text-2: #B4B4BB;
  --text-3: #73737A;
  --text-4: #48484E;
  --violet-300: #B69CFF;
  --violet-400: #A083FF;
  --violet-500: #8B6BFF;
  --violet-600: #6D4DFF;
  --violet-700: #5A3DE0;
  --green: #3DD68C;
  --red: #FF5A6A;
  --amber: #FFB547;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;
  --shadow-1: 0 1px 2px rgba(0,0,0,.4);
  --shadow-2: 0 8px 24px rgba(0,0,0,.5);
  --shadow-glow: 0 0 80px rgba(139,107,255,.35);
  --transition: all .2s ease;
}

/* === 2. RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: 'Geist', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit }
img { max-width: 100%; display: block }
button { font-family: inherit }

/* === 3. LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px }
section { padding: 120px 0; position: relative }

/* === 4. TYPOGRAPHY UTILITIES === */
.mono { font-family: 'Geist Mono', ui-monospace, monospace }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 64px }
.sec-head h2 {
  font-size: 48px; font-weight: 600; letter-spacing: -.03em;
  line-height: 1.05; margin: 16px 0 16px;
}
.sec-head p { font-size: 17px; color: var(--text-2); margin: 0; line-height: 1.6 }

/* === 5. NAV === */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,11,.8);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 18px; letter-spacing: -.02em;
  color: var(--text); flex-shrink: 0;
}
.logo svg { height: 30px; width: auto }
.nav-links {
  display: flex; gap: 4px; margin-left: auto; align-items: center;
}
.nav-links a {
  color: var(--text-2); padding: 8px 14px;
  border-radius: var(--r-pill); font-size: 14px; font-weight: 500;
  white-space: nowrap; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface) }
.nav-links .nav-cta {
  background: #fff; color: #0A0A0B;
  padding: 10px 20px; margin-left: 8px; font-weight: 600;
}
.nav-links .nav-cta:hover { background: #E8E8EA }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 8px; margin-left: auto;
  border-radius: var(--r-md); transition: background .15s;
}
.nav-hamburger:hover { background: var(--surface) }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .28s ease, opacity .28s ease;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0 }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* === 6. BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500;
  border: 1px solid transparent; cursor: pointer;
  transition: all .15s ease; white-space: nowrap;
}
.btn-primary { background: #fff; color: #0A0A0B }
.btn-primary:hover { background: #E8E8EA }
.btn-secondary { background: var(--surface-2); color: var(--text); border-color: var(--border) }
.btn-secondary:hover { background: var(--surface-3); border-color: var(--border-strong) }
.btn-violet { background: var(--violet-600); color: #fff }
.btn-violet:hover { background: var(--violet-500) }
.btn-xl { padding: 18px 36px; font-size: 16px }
.btn-lg { padding: 16px 32px; font-size: 15px }
.btn-full { width: 100%; justify-content: center }

/* === 7. EYEBROW === */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(139,107,255,.10); border: 1px solid rgba(139,107,255,.25);
  color: var(--violet-300); font-size: 12px;
  font-family: 'Geist Mono', monospace; letter-spacing: .04em;
  white-space: nowrap;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet-400); flex-shrink: 0;
  box-shadow: 0 0 10px var(--violet-400);
  animation: pulse-glow 2s ease infinite;
}

/* === 8. HERO === */
.hero {
  position: relative; padding: 96px 0 120px;
  overflow: hidden; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 120%;
  background: radial-gradient(
    ellipse 60% 70% at 50% 0%,
    var(--violet-600) 0%, var(--violet-700) 18%, #2A1568 35%, transparent 65%
  );
  z-index: -2; opacity: .85;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .12 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay; opacity: .5; z-index: -1; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 64px; align-items: center;
}
.hero h1 {
  font-size: 72px; font-weight: 600; line-height: 1.02;
  letter-spacing: -.04em; margin: 24px 0 24px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #B69CFF, #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede {
  font-size: 18px; color: var(--text-2);
  max-width: 520px; margin: 0 0 36px; line-height: 1.6;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center }
.hero-meta {
  display: flex; gap: 20px; margin-top: 28px;
  color: var(--text-3); font-size: 13px; flex-wrap: wrap;
}
.hero-meta span { display: flex; align-items: center; gap: 7px }
.hero-meta svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0 }
.hero-social-proof {
  display: flex; align-items: center; gap: 14px; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.avatar-stack { display: flex }
.avatar-stack .av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -8px;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 600; color: #fff; flex-shrink: 0;
}
.avatar-stack .av:first-child { margin-left: 0 }
.av-1 { background: linear-gradient(135deg, var(--violet-500), var(--violet-700)) }
.av-2 { background: linear-gradient(135deg, #FF6B6B, #C62A2A) }
.av-3 { background: linear-gradient(135deg, #00B4D8, #0077B6) }
.av-4 { background: linear-gradient(135deg, #3DD68C, #1A8C5A) }
.hero-proof-text { font-size: 13px; color: var(--text-3) }
.hero-proof-text strong { color: var(--green) }

/* Hero visual - floating cards */
.hero-visual { position: relative; height: 540px }
.float-card {
  position: absolute;
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-lg); padding: 18px 20px;
  box-shadow: 0 24px 60px -10px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}
.fc-1 { top: 0; right: 20px; width: 285px; animation: float 4s ease-in-out infinite }
.fc-2 { top: 172px; left: 0; width: 305px; animation: float 5.2s ease-in-out infinite 1s }
.fc-3 { bottom: 0; right: 60px; width: 265px; animation: float 4.5s ease-in-out infinite .5s }
.fc-row { display: flex; align-items: center; gap: 12px }
.fc-row > div:last-child { min-width: 0; flex: 1 }
.fc-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
  display: grid; place-items: center; font-weight: 600; font-size: 14px;
  color: #fff; flex-shrink: 0;
}
.fc-name { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
.fc-time { font-size: 11px; color: var(--text-3); font-family: 'Geist Mono', monospace }
.fc-msg {
  margin-top: 10px; background: #1F2C24; color: #E8FFE8;
  padding: 10px 14px; border-radius: 14px 14px 14px 4px;
  font-size: 13px; line-height: 1.4;
}
.fc-status {
  display: flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 11px; color: var(--green); font-family: 'Geist Mono', monospace;
}
.fc-status .dot, .status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse-glow-green 2s ease infinite; flex-shrink: 0;
}
.fc-stat-label {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--text-3); letter-spacing: .06em; text-transform: uppercase;
}
.fc-stat-value { font-size: 32px; font-weight: 600; letter-spacing: -.02em; margin-top: 4px }
.fc-stat-delta {
  font-size: 12px; color: var(--green); font-family: 'Geist Mono', monospace;
  margin-top: 6px; display: flex; align-items: center; gap: 6px;
}
.fc-spark { margin-top: 12px; height: 36px }

/* === 9. LOGOS BAR === */
.logos-bar {
  padding: 48px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-label {
  text-align: center; margin-bottom: 32px;
  font-size: 12px; color: var(--text-4);
  font-family: 'Geist Mono', monospace; letter-spacing: .08em; text-transform: uppercase;
}
.logos-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.logo-item {
  display: flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; letter-spacing: -.01em;
  color: var(--text-4); filter: grayscale(1) opacity(.45);
  transition: filter .25s ease, color .25s ease;
}
.logo-item:hover { filter: grayscale(0) opacity(1); color: var(--text-2) }
.logo-item svg { flex-shrink: 0 }

/* === 10. METRICS STRIP === */
.metrics-strip { padding: 80px 0; border-bottom: 1px solid var(--border) }
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.metric-item {
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.metric-item:last-child { border-right: none }
.metric-val-row {
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.metric-value {
  font-size: 52px; font-weight: 600; letter-spacing: -.04em;
  color: var(--text); line-height: 1;
}
.metric-suffix { font-size: 28px; font-weight: 600; color: var(--violet-400) }
.metric-label { font-size: 14px; color: var(--text-3); margin-top: 8px }

/* === 11. PROBLEM SECTION === */
.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px }
.problem-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color .2s ease, transform .25s ease;
}
.problem-card:hover { border-color: rgba(255,90,106,.25); transform: translateY(-3px) }
.problem-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,90,106,.07), transparent 60%);
  pointer-events: none;
}
.problem-card .num {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--text-4); letter-spacing: .08em;
}
.problem-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -.02em; margin: 8px 0 12px; line-height: 1.15 }
.problem-card p { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.6 }
.problem-card .stat {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; align-items: baseline; gap: 8px;
}
.problem-card .stat b {
  font-size: 36px; font-weight: 600; letter-spacing: -.02em;
  color: var(--red); text-shadow: 0 0 24px rgba(255,90,106,.4);
}
.problem-card .stat span { color: var(--text-4); font-size: 11px; font-family: 'Geist Mono', monospace; letter-spacing: .06em }

/* === 12. HOW IT WORKS === */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px }
.how-steps { display: flex; flex-direction: column; gap: 10px }
.how-step {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; border-radius: var(--r-pill);
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-2); font-size: 15px; font-weight: 500;
  transition: all .28s ease; cursor: pointer;
}
.how-step .stepnum {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Geist Mono', monospace; font-size: 12px;
  background: var(--surface-3); color: var(--text-3);
  flex-shrink: 0; transition: all .28s ease;
}
.how-step.active { background: #fff; color: #0A0A0B; border-color: transparent }
.how-step.active .stepnum { background: #0A0A0B; color: #fff }
.how-step .step-desc { display: block; font-size: 13px; color: var(--text-3); font-weight: 400; margin-top: 2px }
.how-step.active .step-desc { color: #73737A }
.how-visual {
  position: relative; height: 500px; border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(139,107,255,.22), transparent 70%),
    var(--surface);
  border: 1px solid var(--border); overflow: hidden;
  display: grid; place-items: center; padding: 32px;
}

/* Phone mock */
.phone-mock {
  width: 272px; height: 436px; background: #0A0A0B;
  border-radius: 36px; border: 8px solid #1C1C22;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.85);
  padding: 18px 14px; display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.phone-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 10px;
  flex-shrink: 0;
}
.phone-header > div:last-child { min-width: 0; flex: 1 }
.phone-avatar { width: 34px; height: 34px; border-radius: 50%; background: #25D366; display: grid; place-items: center; flex-shrink: 0 }
.phone-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
.phone-status { font-size: 10px; color: var(--green); font-family: 'Geist Mono', monospace }
.phone-body { flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 8px }
.phone-msg {
  background: #1F2C24; color: #E8FFE8;
  padding: 9px 13px; border-radius: 14px 14px 14px 4px;
  font-size: 12px; line-height: 1.45; max-width: 90%;
}
.phone-msg.them { align-self: flex-start }
.phone-msg.you { align-self: flex-end; background: #005C4B; border-radius: 14px 14px 4px 14px }
.phone-time { font-size: 10px; color: var(--text-4); align-self: flex-end; margin-top: -4px }
.phone-typing { align-self: flex-start; display: flex; align-items: center; gap: 4px; padding: 9px 13px; background: #1F2C24; border-radius: 14px 14px 14px 4px }
.phone-typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--text-3); animation: typing-dot 1.2s ease infinite }
.phone-typing span:nth-child(2) { animation-delay: .2s }
.phone-typing span:nth-child(3) { animation-delay: .4s }

/* Phone step panels */
.phone-panel { display: none; flex-direction: column; gap: 8px; flex: 1 }
.phone-panel.active { display: flex }

/* Step 1 — connect */
.connect-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; background: var(--surface-2);
  border-radius: var(--r-md); border: 1px solid var(--border);
}
.connect-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(61,214,140,.12); border: 1px solid rgba(61,214,140,.25);
  display: grid; place-items: center; flex-shrink: 0;
}
.connect-icon svg { width: 12px; height: 12px; color: var(--green) }
.connect-label { font-size: 12px; font-weight: 500; flex: 1 }
.connect-check { color: var(--green); font-size: 12px }

/* Step 2 — triggers */
.trigger-item {
  padding: 9px 12px; background: var(--surface-2);
  border-radius: var(--r-md); border: 1px solid var(--border);
}
.trigger-row-inner { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600 }
.trigger-badge {
  font-size: 9px; font-family: 'Geist Mono', monospace;
  background: rgba(61,214,140,.15); color: var(--green);
  padding: 2px 7px; border-radius: var(--r-pill); margin-left: auto; white-space: nowrap;
}
.trigger-detail { font-size: 10px; color: var(--text-3); font-family: 'Geist Mono', monospace; margin-top: 4px }
.trigger-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; box-shadow: 0 0 6px var(--red) }

/* === 13. FEATURES === */
.feat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 40px }
.feat-card {
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(139,107,255,.10), transparent 60%),
    var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px;
  transition: border-color .2s ease, transform .25s ease;
}
.feat-card:hover { border-color: var(--border-strong); transform: translateY(-3px) }
.feat-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: rgba(139,107,255,.12); border: 1px solid rgba(139,107,255,.25);
  display: grid; place-items: center; margin-bottom: 24px;
  transition: background .2s ease;
}
.feat-card:hover .feat-icon { background: rgba(139,107,255,.22) }
.feat-icon svg { width: 22px; height: 22px; color: var(--violet-300) }
.feat-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -.02em; margin: 0 0 12px; line-height: 1.2 }
.feat-card p { margin: 0; color: var(--text-2); font-size: 15px; line-height: 1.6 }

/* === 14. TESTIMONIALS === */
.testimonials {
  background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .2s ease, transform .25s ease;
}
.testimonial-card:hover { border-color: var(--border-strong); transform: translateY(-3px) }
.t-stars { display: flex; gap: 3px }
.t-stars svg { width: 15px; height: 15px; fill: var(--amber); color: var(--amber) }
.t-quote { font-size: 15px; line-height: 1.65; color: var(--text-2); flex: 1 }
.t-quote strong { color: var(--text) }
.t-metric {
  padding: 10px 14px;
  background: rgba(61,214,140,.07); border: 1px solid rgba(61,214,140,.15);
  border-radius: var(--r-md); font-size: 13px;
  color: var(--green); font-family: 'Geist Mono', monospace; font-weight: 500;
}
.t-author { display: flex; align-items: center; gap: 12px }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 600; font-size: 15px; color: #fff; flex-shrink: 0;
}
.t-av-1 { background: linear-gradient(135deg, var(--violet-500), var(--violet-700)) }
.t-av-2 { background: linear-gradient(135deg, #FF7043, #C62828) }
.t-av-3 { background: linear-gradient(135deg, #00B4D8, #0077B6) }
.t-name { font-size: 14px; font-weight: 600 }
.t-role { font-size: 12px; color: var(--text-3); font-family: 'Geist Mono', monospace; margin-top: 1px }

/* === 15. PRICING === */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 20px; max-width: 860px; margin: 40px auto 0;
}
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px;
  position: relative; overflow: hidden;
  transition: border-color .2s ease, transform .25s ease;
}
.pricing-card:hover { transform: translateY(-3px) }
.pricing-card.featured {
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(139,107,255,.18), transparent 55%),
    var(--surface);
  border-color: rgba(139,107,255,.35);
}
.pricing-card.featured:hover { border-color: rgba(139,107,255,.55) }
.pricing-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--violet-600); color: #fff;
  font-size: 10px; font-weight: 600;
  font-family: 'Geist Mono', monospace; letter-spacing: .06em;
  padding: 4px 12px; border-radius: var(--r-pill);
}
.pricing-plan {
  font-size: 12px; font-weight: 600; color: var(--text-3);
  font-family: 'Geist Mono', monospace; letter-spacing: .08em; text-transform: uppercase;
}
.pricing-price { display: flex; align-items: baseline; gap: 2px; margin: 16px 0 4px }
.pricing-currency { font-size: 22px; font-weight: 600; margin-top: 6px }
.pricing-amount { font-size: 54px; font-weight: 600; letter-spacing: -.04em; line-height: 1 }
.pricing-period { font-size: 14px; color: var(--text-3); margin-left: 4px }
.pricing-desc { font-size: 14px; color: var(--text-2); margin-bottom: 28px; line-height: 1.5 }
.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2) }
.pricing-feature svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px }
.pricing-feature.dim { color: var(--text-4) }
.pricing-feature.dim svg { color: var(--text-4) }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0 }
.pricing-note { font-size: 12px; color: var(--text-4); text-align: center; margin-top: 12px; font-family: 'Geist Mono', monospace }

/* === 16. FAQ === */
.faq-list { max-width: 760px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color .2s ease }
.faq-item.open { border-color: rgba(139,107,255,.25) }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-size: 15px; font-weight: 500;
  color: var(--text); width: 100%; background: none; border: none; text-align: left;
  transition: background .15s;
}
.faq-question:hover { background: var(--surface-2) }
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--surface-3); display: grid; place-items: center;
  flex-shrink: 0; transition: background .25s ease;
}
.faq-icon svg { width: 12px; height: 12px; color: var(--text-3); transition: transform .28s ease }
.faq-item.open .faq-icon { background: rgba(139,107,255,.2) }
.faq-item.open .faq-icon svg { transform: rotate(45deg); color: var(--violet-400) }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .32s cubic-bezier(.4,0,.2,1) }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-2); line-height: 1.65 }
.faq-item.open .faq-answer { max-height: 240px }

/* === 17. CTA SECTION === */
.cta {
  position: relative; padding: 140px 0; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--violet-700) 0%, #2A1568 30%, transparent 60%);
  z-index: -1; opacity: .7;
}
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; position: relative; z-index: 1 }
.cta h2 { font-size: 56px; font-weight: 600; letter-spacing: -.035em; line-height: 1.05; margin: 24px 0 16px }
.cta p { font-size: 18px; color: var(--text-2); margin: 0 0 36px; line-height: 1.6 }
.cta-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px }
.cta-input {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-pill); padding: 16px 24px;
  font-family: inherit; font-size: 15px; color: var(--text);
  outline: none; transition: border-color .2s, background .2s; width: 300px;
}
.cta-input::placeholder { color: var(--text-4) }
.cta-input:focus { border-color: var(--violet-400); background: rgba(255,255,255,.13); box-shadow: 0 0 0 3px rgba(139,107,255,.15) }
.cta-note { font-size: 12px; color: var(--text-3); font-family: 'Geist Mono', monospace }
.cta-or { display: flex; align-items: center; gap: 16px; color: var(--text-4); font-size: 12px; margin: 16px auto; max-width: 360px }
.cta-or::before, .cta-or::after { content: ""; flex: 1; height: 1px; background: var(--border) }

/* === 18. FOOTER === */
footer { border-top: 1px solid var(--border); padding: 60px 0 32px }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px }
.footer-brand .logo { font-size: 16px }
.footer-brand p { font-size: 14px; color: var(--text-3); margin-top: 12px; line-height: 1.6; max-width: 240px }
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-3);
  font-family: 'Geist Mono', monospace; margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 14px; color: var(--text-3); margin-bottom: 10px; transition: color .15s }
.footer-col a:hover { color: var(--text-2) }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; padding-top: 32px;
  border-top: 1px solid var(--border); color: var(--text-4); font-size: 13px;
  font-style: normal;
}

/* === 19. SCROLL REVEAL === */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none }
.reveal-d1 { transition-delay: .1s }
.reveal-d2 { transition-delay: .18s }
.reveal-d3 { transition-delay: .26s }
.reveal-d4 { transition-delay: .34s }

/* === 20. KEYFRAMES === */
@keyframes float {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-12px) }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109,77,255,.7) }
  50% { box-shadow: 0 0 0 5px rgba(109,77,255,0) }
}
@keyframes pulse-glow-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,214,140,.6) }
  50% { box-shadow: 0 0 0 5px rgba(61,214,140,0) }
}
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: .5 }
  30% { transform: translateY(-4px); opacity: 1 }
}

/* === 21. REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .float-card { animation: none !important }
  .reveal { opacity: 1; transform: none; transition: none }
  .how-step, .feat-card, .testimonial-card, .pricing-card, .problem-card { transition: none }
  .eyebrow::before, .fc-status .dot, .status-dot { animation: none }
}

/* === 22. RESPONSIVE === */
@media (max-width: 1024px) {
  .hero h1 { font-size: 56px }
  .sec-head h2, .cta h2 { font-size: 40px }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px }
  .metrics-grid { grid-template-columns: repeat(2,1fr) }
  .metric-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0 }
  .metric-item:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 32px }
  .metric-item:nth-child(3), .metric-item:last-child { border-bottom: none }
}

@media (max-width: 860px) {
  .nav-hamburger { display: flex }
  .nav-links {
    position: fixed; inset: 0; top: 57px;
    flex-direction: column; gap: 6px; align-items: flex-start;
    background: rgba(10,10,11,.97);
    backdrop-filter: blur(24px);
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0) }
  .nav-links a { width: 100%; padding: 14px 16px; font-size: 16px; border-radius: var(--r-lg) }
  .nav-links .nav-cta { margin-left: 0; width: 100%; text-align: center; justify-content: center; margin-top: 8px }

  .hero { padding: 64px 0 80px }
  .hero-grid { grid-template-columns: 1fr; gap: 0 }
  .hero-visual { display: none }
  .hero h1 { font-size: 44px }
  section { padding: 80px 0 }
  .sec-head h2, .cta h2 { font-size: 34px }
  .how-grid { grid-template-columns: 1fr; gap: 40px }
  .problem-grid { grid-template-columns: 1fr }
  .feat-grid { grid-template-columns: 1fr }
  .testimonials-grid { grid-template-columns: 1fr }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px }
  .logos-grid { gap: 32px }
}

@media (max-width: 560px) {
  .container { padding: 0 20px }
  .hero h1 { font-size: 36px }
  .sec-head h2 { font-size: 28px }
  .cta h2 { font-size: 30px }
  .cta-input { width: 100% }
  .cta-form { flex-direction: column; align-items: stretch }
  .metrics-grid { grid-template-columns: 1fr 1fr }
  .metric-item:nth-child(odd) { border-right: 1px solid var(--border) }
  .metric-value { font-size: 36px }
  .metric-suffix { font-size: 20px }
  .footer-grid { grid-template-columns: 1fr }
  .hero-meta { gap: 12px }
  .how-step { border-radius: var(--r-lg); padding: 14px 18px }
  .testimonials-grid { gap: 16px }
  .pricing-grid { max-width: 100% }
}
