/* ============================================================
   Einwandfr.ai — Landing Page
   Cinematic midnight / azure aesthetic
   (variable names kept from the crimson theme; values retuned cool)
   ============================================================ */

:root {
  /* Cool ink surfaces (midnight navy) */
  --ink-0: #060912;
  --ink-1: #0a1020;
  --ink-2: #0f1829;
  --ink-3: #16213b;
  --ink-4: #1e2e4f;

  /* Azure + sky accents pulled from a night-blue canyon */
  --crimson: oklch(0.62 0.175 255);
  --crimson-deep: oklch(0.47 0.16 260);
  --ember: oklch(0.74 0.14 245);
  --ember-soft: oklch(0.83 0.095 238);
  --rose: oklch(0.86 0.055 235);
  --sky: oklch(0.92 0.035 230);

  --crimson-glow: oklch(0.62 0.175 255 / 0.48);
  --ember-glow: oklch(0.74 0.14 245 / 0.42);
  --tint: oklch(0.74 0.14 245 / 0.09);
  --tint-2: oklch(0.74 0.14 245 / 0.17);

  /* Text ramp (cool whites) */
  --text: #eef2fb;
  --text-2: rgba(238, 242, 251, 0.74);
  --text-3: rgba(238, 242, 251, 0.50);
  --text-4: rgba(238, 242, 251, 0.32);
  --text-faint: rgba(238, 242, 251, 0.14);

  /* Hairlines (cool) */
  --hair: rgba(190, 214, 255, 0.08);
  --hair-2: rgba(190, 214, 255, 0.14);
  --hair-3: rgba(190, 214, 255, 0.22);

  /* Type */
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.27, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ink-0);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--ember); color: var(--ink-0); }

/* Film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---- Shared layout ---- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember-soft);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 10px var(--ember-glow);
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.02; margin: 0; }
.display {
  font-size: clamp(40px, 6.6vw, 92px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(32px, 4.6vw, 60px);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-wrap: balance;
}
.serif-accent {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}
.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text-2);
  font-weight: 400;
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: linear-gradient(180deg, var(--ember) 0%, var(--crimson) 100%);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 30px -8px var(--crimson-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 18px 44px -10px var(--crimson-glow);
}
.btn-ghost {
  background: rgba(255, 240, 234, 0.04);
  border-color: var(--hair-2);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--hair-3); background: rgba(255,240,234,0.07); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-white {
  background: #fbf3ef;
  color: #1a0e0c;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 34px -10px rgba(0,0,0,0.5);
}
.btn-white:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 18px 46px -12px rgba(0,0,0,0.55); }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 6, 5, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--hair);
  padding-top: 13px;
  padding-bottom: 13px;
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 18px; letter-spacing: -0.03em; }
.brand-mark { width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; display: block; }
.brand-word { white-space: nowrap; }
.brand-tld { color: var(--ember-soft); }
.brand-orb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, var(--sky) 0%, var(--ember) 30%, var(--crimson) 62%, var(--crimson-deep) 100%);
  box-shadow: inset 0 0 8px rgba(255,240,234,0.5), 0 0 16px var(--crimson-glow);
  flex-shrink: 0;
}
.brand-orb::after {
  content: "";
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(ellipse 50% 35% at 38% 30%, rgba(255,250,247,0.7), transparent 70%);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14.5px;
  color: var(--text-2);
  padding: 9px 13px;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  font-weight: 500;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: rgba(255,240,234,0.05); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(120px, 18vh, 200px);
  padding-bottom: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.06);
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(58% 46% at 50% 50%, rgba(11,6,5,0.30) 0%, transparent 72%),
    linear-gradient(180deg, rgba(11,6,5,0.34) 0%, transparent 16%, transparent 64%, rgba(11,6,5,0.55) 86%, var(--ink-0) 100%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(16,9,8,0.4);
  border: 1px solid rgba(255,224,214,0.16);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--text-2); margin-bottom: 26px;
  text-shadow: none;
}
.hero .display { margin-top: 0; font-size: clamp(30px, 4vw, 54px); line-height: 1.12; letter-spacing: -0.03em; text-wrap: balance; text-shadow: 0 2px 40px rgba(11,6,5,0.45); }
.hero .lede { margin: 32px auto 0; text-align: center; color: var(--text); font-size: clamp(15px, 1.2vw, 18px); max-width: 50ch; text-shadow: 0 1px 24px rgba(11,6,5,0.5); }
.hero-cta { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.hero-cta .btn svg { width: 18px; height: 18px; }

/* Social proof */
.hero-proof { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; justify-content: center; }
.proof-avatars { display: flex; }
.pa {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid rgba(20,11,10,0.9);
  margin-left: -10px; background-size: cover; background-position: center;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.6);
}
.pa:first-child { margin-left: 0; }
.pa1 { background: linear-gradient(140deg, #c98b6b, #8a5239); }
.pa2 { background: linear-gradient(140deg, #9fb0c4, #5d6b80); }
.pa3 { background: linear-gradient(140deg, #c97a6b, #7a3528); }
.pa4 { background: linear-gradient(140deg, #b59a86, #6d5644); }
.pa5 { background: linear-gradient(140deg, #8c93a6, #4f5564); }
.proof-text { font-size: 14.5px; color: var(--text-2); text-shadow: 0 1px 16px rgba(11,6,5,0.6); }
.proof-text strong { color: var(--text); font-weight: 700; }
.hero-note { margin-top: 20px; font-size: 13.5px; color: var(--text-2); display: flex; align-items: center; gap: 8px; text-shadow: 0 1px 16px rgba(11,6,5,0.6); }

/* ---- Hero call-scene composition (peeks at bottom) ---- */
.hero-scene {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: clamp(48px, 7vh, 96px) auto -2px;
  padding-inline: var(--gutter);
}
.scene-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px 22px 0 0;
}
.scene-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 22px 22px 0 0 !important;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 30%, #3a2420 0%, #1a0f0d 55%, #0e0807 100%);
  border: 1px solid var(--hair-2);
  border-bottom: none;
  box-shadow: 0 -2px 80px -20px rgba(0,0,0,0.7);
}
.scene-vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 4;
  border-radius: 22px 22px 0 0;
  background: radial-gradient(80% 60% at 50% 40%, transparent 40%, rgba(11,6,5,0.45) 100%);
}
.sw {
  position: absolute; z-index: 5;
  background: rgba(16, 9, 8, 0.5);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  border: 1px solid rgba(255, 224, 214, 0.16);
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 30px 60px -28px rgba(0,0,0,0.85);
}
.sw-cap { font-size: 13px; color: var(--text-3); font-weight: 500; letter-spacing: -0.01em; }
.sw-cap.ember { color: var(--ember-soft); display: inline-flex; align-items: center; gap: 8px; }
.hw-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.hw-dot.crimson { background: var(--crimson); box-shadow: 0 0 10px var(--crimson-glow); }

.sw-transcript { top: 36%; left: 3%; width: clamp(240px, 23%, 320px); padding: 16px 18px; }
.sw-transcript p { margin: 11px 0 0; font-size: 15px; line-height: 1.42; color: var(--text); font-weight: 450; letter-spacing: -0.01em; }

.sw-badge {
  top: 63%; left: 4%;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 650; color: var(--text); letter-spacing: -0.01em;
  background: rgba(70, 20, 16, 0.55);
}
.sw-answer { top: 74%; left: 3%; width: clamp(250px, 24%, 330px); padding: 16px 18px; }
.sw-lines { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.sw-lines span { height: 6px; border-radius: 999px; background: rgba(255, 224, 214, 0.16); display: block; }
.sw-lines span:nth-child(2) { width: 86%; }
.sw-lines span.sh { width: 52%; }

.sw-int {
  top: 5%; right: 3%;
  display: flex; gap: 12px; padding: 13px 18px; border-radius: 18px;
  align-items: center;
}
.sw-int img { width: 34px; height: 34px; border-radius: 9px; object-fit: contain; }
.sw-int img[src$=".svg"], .sw-int img[alt="Microsoft Teams"] { border-radius: 0; }

.sw-bar {
  top: 7%; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 22px;
  padding: 12px 14px 12px 12px; border-radius: 16px;
}
.hb-stop {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--crimson); color: #fff;
  padding: 9px 18px; border-radius: 11px; font-weight: 650; font-size: 15px;
}
.hb-sq { width: 11px; height: 11px; border-radius: 3px; background: #fff; }
.hb-item { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-size: 15px; font-weight: 500; white-space: nowrap; }
.hb-key {
  display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 5px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px; font-size: 12px; color: var(--text-2); font-family: var(--mono);
}
.hb-dots { display: inline-flex; flex-direction: column; gap: 3px; padding-left: 4px; }
.hb-dots span { width: 3.5px; height: 3.5px; border-radius: 50%; background: var(--text-3); }

.sw-speaker { bottom: 9%; right: 3%; width: clamp(200px, 18%, 240px); }
.sw-tile {
  position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(150deg, #4a2c26, #1c100d);
  border: 1px solid rgba(255,224,214,0.14);
}
.sw-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.sw-mic {
  position: absolute; left: 10px; bottom: 10px;
  display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(10,6,5,0.6); color: var(--text); backdrop-filter: blur(8px);
}
.sw-mic svg { width: 14px; height: 14px; }
.sw-name { display: block; margin-top: 10px; font-size: 14px; font-weight: 600; color: var(--text); text-align: center; }

@media (max-width: 1100px) {
  .sw-transcript, .sw-answer { width: 40%; }
  .sw-bar { gap: 12px; }
}
@media (max-width: 760px) {
  .hero-scene { display: none; }
}
.hero-note .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 8px var(--ember-glow); }

/* Trust strip */
.trust-strip {
  background: var(--ink-0);
  padding-block: clamp(36px, 6vh, 60px);
  border-bottom: 1px solid var(--hair);
}
.trust-label { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-4); text-align: center; }
.trust-logos {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
}
.trust-logos .logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 650; letter-spacing: -0.02em;
  color: var(--text-3);
  transition: color 0.3s var(--ease);
}
.trust-logos .logo:hover { color: var(--text); }
.trust-logos .logo .mk { width: 16px; height: 16px; opacity: 0.85; }
.trust-logos .logo sup { font-size: 0.5em; opacity: 0.7; }

/* ---- Section scaffold ---- */
.section { padding-block: clamp(80px, 12vh, 160px); }
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head .lede { margin-top: 22px; }
.section-head.center .lede { margin-inline: auto; }

/* ---- Live call showcase (bento) ---- */
.showcase { background: var(--ink-1); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.bento {
  margin-top: clamp(44px, 6vh, 72px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.bento-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--hair-2);
  background: var(--ink-2);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -30px rgba(0,0,0,0.7);
}
.bento-card .pad { padding: 30px 32px 0; }
.bento-card .kicker { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember-soft); }
.bento-card h3 { font-size: clamp(22px, 2vw, 28px); margin-top: 12px; letter-spacing: -0.025em; }
.bento-card p { color: var(--text-3); font-size: 15px; margin: 10px 0 0; max-width: 42ch; }
.bento-card .shot { margin-top: 24px; width: 100%; }
.bento-card.tall { grid-row: span 2; }
.bento-card.tall .shot { margin-top: 26px; }
.bento-card .shot-wide { display: block; width: 100%; margin-top: 22px; }

/* ---- Co-pilot split ---- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--hair-2);
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.feature-list { margin-top: 32px; display: flex; flex-direction: column; gap: 2px; }
.feature-row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--hair);
  align-items: flex-start;
}
.feature-row:last-child { border-bottom: 1px solid var(--hair); }
.feature-row .ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--tint);
  border: 1px solid var(--tint-2);
  color: var(--ember-soft);
}
.feature-row .ico svg { width: 18px; height: 18px; }
.feature-row h4 { font-size: 17px; font-weight: 650; letter-spacing: -0.015em; margin: 2px 0 0; }
.feature-row p { color: var(--text-3); font-size: 14.5px; margin: 5px 0 0; }

/* Placeholder media (striped) */
.media-ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,224,214,0.04) 0 2px, transparent 2px 11px),
    linear-gradient(160deg, var(--ink-3), var(--ink-2));
  display: grid; place-items: center;
}
.media-ph span { font-family: var(--mono); font-size: 12px; color: var(--text-4); letter-spacing: 0.05em; }

/* ---- Results stats ---- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(44px, 6vh, 72px); }
.stat {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--hair-2);
  background: linear-gradient(165deg, var(--ink-3), var(--ink-1));
  padding: 36px 32px 30px;
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute; top: -40%; right: -20%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--ember-glow), transparent 70%);
  opacity: 0.5; filter: blur(20px);
}
.stat .num {
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--text) 30%, var(--ember-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .lbl { margin-top: 14px; font-size: 15px; color: var(--text-2); font-weight: 550; position: relative; }
.stat .sub { margin-top: 4px; font-size: 13.5px; color: var(--text-3); position: relative; }

/* ---- Feature trio (compliance/integrations/lang) ---- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(44px, 6vh, 72px); }
.trio-card {
  border-radius: 22px;
  border: 1px solid var(--hair-2);
  background: var(--ink-2);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease);
}
.trio-card:hover { transform: translateY(-5px); border-color: var(--hair-3); }
.trio-card .shot { width: 100%; }
.trio-card .body { padding: 26px 28px 30px; }
.trio-card h3 { font-size: 20px; letter-spacing: -0.02em; }
.trio-card p { color: var(--text-3); font-size: 14.5px; margin: 9px 0 0; }

/* ---- FAQ ---- */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--hair); }
.faq-item:last-child { border-bottom: 1px solid var(--hair); }
.faq-q {
  width: 100%;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  text-align: left;
  color: var(--text);
  font-size: 18px; font-weight: 600; letter-spacing: -0.015em;
}
.faq-q .plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--ember-soft);
  transition: transform 0.4s var(--ease);
}
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .plus::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; color: var(--text-3); font-size: 15.5px; max-width: 58ch; }

/* ---- Cost callout ---- */
.cost { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(40px, 5vh, 64px); }
.cost-tile {
  border-radius: 20px; border: 1px solid var(--hair-2);
  background: var(--ink-2); padding: 30px 30px 28px; text-align: center;
}
.cost-tile .v { font-size: clamp(34px, 4vw, 52px); font-weight: 800; letter-spacing: -0.035em; font-variant-numeric: tabular-nums; }
.cost-tile.danger .v { color: var(--crimson); }
.cost-tile .c { margin-top: 8px; font-size: 14px; color: var(--text-3); }

/* ---- Final CTA ---- */
.final {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: clamp(56px, 9vw, 110px) var(--gutter);
  text-align: center;
  border: 1px solid var(--hair-2);
  isolation: isolate;
}
.final-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transform: scale(1.08); }
.final-scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,6,5,0.78), rgba(11,6,5,0.62)); }
.final .display { margin-inline: auto; }
.final .lede { margin: 24px auto 0; text-align: center; }
.final-cta { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-checks { margin-top: 28px; display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.final-checks span { font-size: 13.5px; color: var(--text-2); display: inline-flex; align-items: center; gap: 8px; }
.check { color: var(--ember); flex-shrink: 0; }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--hair); padding-block: 56px; margin-top: clamp(80px, 12vh, 140px); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--text-3); font-size: 14.5px; margin-top: 16px; }
.footer-cols { display: flex; gap: clamp(40px, 6vw, 90px); flex-wrap: wrap; }
.footer-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-4); margin: 0 0 16px; font-weight: 500; }
.footer-col a { display: block; color: var(--text-2); font-size: 14.5px; padding: 7px 0; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-bot { margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--hair); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-4); }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-bg { transform: none; }
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .split, .faq-grid { grid-template-columns: 1fr; }
  .split-media { aspect-ratio: 16/11; order: -1; }
  .stats, .trio, .cost { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.tall { grid-row: auto; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-right .btn-ghost { display: none; }
  .footer-top { flex-direction: column; }
}

/* ============================================================
   Problem section (dark)
   ============================================================ */
.problem { background: var(--ink-0); }
.problem-head { max-width: 1000px; }
.problem-head .eyebrow { margin-bottom: 26px; }
.problem-head .h2 { font-size: clamp(30px, 4.2vw, 56px); }
.problem-grid {
  margin-top: clamp(44px, 6vh, 76px);
  width: min(100vw - clamp(40px, 6vw, 100px), 1640px);
  margin-left: 50%;
  transform: translateX(-50%);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 36px);
}
.problem-card { display: flex; flex-direction: column; }
.problem-shot {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--hair-2);
  background: var(--ink-2);
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 60px -34px rgba(0,0,0,0.8);
}
.problem-shot img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.problem-card h3 { margin-top: 26px; font-size: clamp(19px, 1.6vw, 23px); letter-spacing: -0.02em; }
.problem-card p { margin-top: 12px; color: var(--text-3); font-size: 15.5px; line-height: 1.55; }

/* ============================================================
   Enterprise section (light bento)
   ============================================================ */
.enterprise {
  background: #f3efec;
  color: #1a0f0d;
  border-top: 1px solid var(--hair);
}
.ent-head { max-width: 900px; }
.ent-eyebrow { color: #b8472a; }
.ent-eyebrow::before { background: #e0612f; box-shadow: 0 0 10px rgba(224,97,47,0.5); }
.ent-head .h2 { color: #18100e; margin-top: 24px; }
.ent-bento {
  margin-top: clamp(40px, 5.5vh, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "a b d" "a c d";
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
}
.ent-card {
  background: #fff;
  border: 1px solid rgba(24, 16, 14, 0.08);
  border-radius: 22px;
  padding: 30px 30px 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(24,16,14,0.04), 0 24px 50px -34px rgba(24,16,14,0.22);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease);
}
.ent-card:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(24,16,14,0.04), 0 34px 64px -34px rgba(24,16,14,0.3); }
.ent-card.a { grid-area: a; }
.ent-card.b { grid-area: b; }
.ent-card.c { grid-area: c; }
.ent-card.d { grid-area: d; }
.ent-body { flex-shrink: 0; }
.ent-card h3 { font-size: clamp(19px, 1.5vw, 22px); letter-spacing: -0.022em; color: #18100e; line-height: 1.12; }
.ent-card p { margin-top: 12px; color: #5b4f4a; font-size: 15px; line-height: 1.55; }
.ent-media {
  margin-top: 24px;
  margin-inline: -30px; margin-bottom: -1px;
  flex: 1; min-height: 0;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.ent-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.ent-card.b .ent-media, .ent-card.c .ent-media { margin-top: 22px; align-items: center; }
.ent-card.b .ent-media img, .ent-card.c .ent-media img { object-fit: cover; }

@media (max-width: 980px) {
  .problem-grid { grid-template-columns: 1fr; width: auto; max-width: 480px; margin-left: 0; transform: none; margin-inline: auto; }
  .ent-bento { grid-template-columns: 1fr; grid-template-areas: "d" "c" "a" "b"; }
  .ent-card.a, .ent-card.d { min-height: 0; }
  .ent-media { min-height: 240px; }
}

/* ============================================================
   MIDNIGHT / AZURE RESKIN — cool retune of warm literals
   + two hero treatments (photo | aurora)
   ============================================================ */

/* --- chrome surfaces --- */
.nav.scrolled { background: rgba(8, 12, 22, 0.74); border-bottom-color: var(--hair); }
.hero-eyebrow { background: rgba(12, 18, 34, 0.44); border-color: rgba(190, 214, 255, 0.18); }

/* --- social-proof avatars (cool) --- */
.pa1 { background: linear-gradient(140deg, #7fa8d6, #3f5f8c); }
.pa2 { background: linear-gradient(140deg, #9fb6e0, #4f5f86); }
.pa3 { background: linear-gradient(140deg, #6f9fd0, #2f4f7a); }
.pa4 { background: linear-gradient(140deg, #86a0c8, #445a82); }
.pa5 { background: linear-gradient(140deg, #8c9ec0, #4a5878); }

/* --- call-scene glass widgets (cool) --- */
.sw { background: rgba(10, 16, 30, 0.52); border-color: rgba(190, 214, 255, 0.16); }
.scene-video { background: radial-gradient(120% 90% at 50% 30%, #1f2c46 0%, #101829 55%, #070b14 100%); }
.sw-badge { background: rgba(18, 42, 84, 0.55); }
.sw-tile { background: linear-gradient(150deg, #27405e, #0d1626); border-color: rgba(190, 214, 255, 0.14); }

/* --- HERO: photographic (blue-graded canyon) --- */
.hero-bg { filter: brightness(0.6) saturate(0.82) hue-rotate(192deg) contrast(1.03); }
.hero-scrim {
  background:
    radial-gradient(58% 46% at 50% 46%, rgba(6,9,18,0.24) 0%, transparent 72%),
    radial-gradient(72% 50% at 50% 6%, oklch(0.6 0.16 250 / 0.30), transparent 60%),
    linear-gradient(180deg, rgba(6,9,18,0.46) 0%, transparent 22%, transparent 60%, rgba(6,9,18,0.62) 86%, var(--ink-0) 100%);
}

/* --- HERO: aurora (no photo) --- */
.hero-aurora { display: none; }
.hero[data-hero="aurora"] .hero-bg { display: none; }
.hero[data-hero="aurora"] .hero-aurora {
  display: block;
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(48% 40% at 20% 16%, oklch(0.62 0.18 252 / 0.55), transparent 62%),
    radial-gradient(44% 38% at 82% 24%, oklch(0.72 0.14 216 / 0.42), transparent 62%),
    radial-gradient(72% 56% at 50% 110%, oklch(0.5 0.17 266 / 0.6), transparent 70%),
    var(--ink-0);
}
.hero[data-hero="aurora"] .hero-aurora::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(190,214,255,0.55) 1px, transparent 1.5px);
  background-size: 40px 40px;
  opacity: 0.05;
  -webkit-mask-image: radial-gradient(72% 60% at 50% 34%, #000, transparent 82%);
  mask-image: radial-gradient(72% 60% at 50% 34%, #000, transparent 82%);
}
.hero[data-hero="aurora"] .hero-scrim {
  background: linear-gradient(180deg, transparent 0%, transparent 62%, rgba(6,9,18,0.5) 86%, var(--ink-0) 100%);
}

/* --- FINAL CTA: blue-graded canyon --- */
.final-bg { filter: brightness(0.55) saturate(0.8) hue-rotate(192deg) contrast(1.02); }
.final-scrim {
  background:
    radial-gradient(82% 60% at 50% 0%, oklch(0.55 0.16 250 / 0.32), transparent 60%),
    linear-gradient(180deg, rgba(6,9,18,0.82), rgba(8,14,28,0.66));
}

/* --- light enterprise section accents (cool, if used) --- */
.ent-eyebrow { color: #2f5fb8; }
.ent-eyebrow::before { background: #3f7fe0; box-shadow: 0 0 10px rgba(63,127,224,0.5); }

/* --- product imagery: recolor the warm crimson assets to fit the cool theme ---
   Problem trio = atmospheric, no logos → cool blue duotone.
   Bento widgets carry real brand logos / flags / compliance badges →
   only desaturate the warm ambient so the marks stay accurate. */
.problem-shot img {
  filter: none;
}
.bento-card .shot,
.bento-card .shot-wide {
  filter: saturate(0.5) sepia(0.42) hue-rotate(179deg) brightness(0.97) contrast(1.05);
}
/* the call-transcript widget has no brand marks → give it the same cool duotone */
.bento-card .shot[src*="widget-call"] {
  filter: grayscale(1) sepia(1) hue-rotate(176deg) saturate(1.9) brightness(0.96) contrast(1.03);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--ink-0); }
.pricing .section-head { max-width: 720px; }

/* billing toggle */
.price-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin-top: clamp(34px, 5vh, 56px);
}
.pt-label {
  font-size: 15px; font-weight: 550; color: var(--text-3);
  letter-spacing: -0.01em; transition: color 0.3s var(--ease);
}
.pt-label.active { color: var(--text); }
.pt-switch {
  position: relative; width: 56px; height: 30px; flex-shrink: 0;
  border-radius: 999px; border: 1px solid var(--hair-2);
  background: var(--ink-3);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  padding: 0;
}
.pt-switch[aria-checked="true"] {
  background: linear-gradient(180deg, var(--ember), var(--crimson));
  border-color: transparent;
}
.pt-knob {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.45);
  transition: transform 0.35s var(--ease-out);
}
.pt-switch[aria-checked="true"] .pt-knob { transform: translateX(26px); }
.pt-save {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--ember-soft);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--tint-2); background: var(--tint);
}

/* grid */
.price-grid {
  margin-top: clamp(40px, 5.5vh, 64px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: 24px;
  border: 1px solid var(--hair-2);
  background: var(--ink-2);
  padding: 34px 30px 32px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-5px); border-color: var(--hair-3); }
.price-card.featured {
  border-color: var(--tint-2);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2) 60%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 40px 80px -40px var(--crimson-glow);
}
.price-card > * { position: relative; }
.price-card .pc-glow {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 320px; height: 320px; pointer-events: none;
  background: radial-gradient(circle, var(--ember-glow), transparent 70%);
  opacity: 0.45; filter: blur(26px);
}

.pc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 30px; }
.pc-name { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.pc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--ember-soft);
  padding: 6px 11px; border-radius: 999px;
  border: 1px solid var(--tint-2); background: var(--tint);
  white-space: nowrap;
}
.pc-badge svg { width: 13px; height: 13px; }

.pc-price { margin-top: 22px; display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.pc-amount {
  font-size: clamp(38px, 4vw, 50px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1; font-variant-numeric: tabular-nums;
}
.pc-amount-custom { font-size: clamp(32px, 3.4vw, 42px); }
.pc-per { font-size: 16px; color: var(--text-3); font-weight: 500; }

.pc-tag { margin-top: 16px; font-size: 15px; line-height: 1.5; color: var(--text-3); min-height: 3em; }

.pc-btn { width: 100%; justify-content: center; margin-top: 22px; }
.price-card .btn-ghost { border-color: var(--hair-3); }
.price-card .btn-ghost:hover { border-color: var(--text-3); }

.pc-incl {
  display: block; margin-top: 28px; margin-bottom: 4px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-4);
}
.pc-feats { list-style: none; margin: 0; padding: 0; }
.pc-feats li {
  position: relative;
  padding: 11px 0 11px 32px;
  font-size: 14.5px; line-height: 1.4;
  border-bottom: 1px solid var(--hair);
}
.pc-feats li:last-child { border-bottom: none; }
.pc-feats li::before {
  position: absolute; left: 0; top: 11px;
  width: 19px; height: 19px;
  display: grid; place-items: center;
  border-radius: 50%; font-size: 12px; font-weight: 700;
}
.pc-feats li.ok { color: var(--text); }
.pc-feats li.ok::before {
  content: "\2713";
  color: var(--ember-soft);
  background: var(--tint); border: 1px solid var(--tint-2);
}
.pc-feats li.no { color: var(--text-4); }
.pc-feats li.no::before {
  content: "\00d7";
  color: var(--text-4);
  background: transparent; border: 1px solid var(--hair-2);
}

@media (max-width: 980px) {
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .pc-tag { min-height: 0; }
}
