/* ========== TOKENS ========== */
:root {
  --bg: #0b141a;
  --bg-raised: #161d23;
  --bg-3: #1a2229;
  --ink: #e9edef;
  --ink-dim: #8696a0;
  --ink-faint: #54656f;
  --line: rgba(42, 57, 66, 0.5);
  --line-2: rgba(42, 57, 66, 0.9);
  --wa-green: #25d366;
  --wa-green-2: #4aed85;
  --wa-green-deep: #128c7e;
  --wa-green-dark: #005c4b;
  --wa-header: #1f2c33;
  --wa-incoming: #202c33;
  --wa-input: #2a3942;
  --wa-tick-read: #53bdeb;
  --emerald: #25d366;
  --emerald-2: #4aed85;
  --emerald-ink: #0e8a4a; /* darker green for text on light bg */
  --hero-mesh-1: rgba(37, 211, 102, 0.10);
  --hero-mesh-2: rgba(74, 237, 133, 0.06);
  --serif: "Instrument Serif", "Boska", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ===== LIGHT MODE ===== */
:root[data-theme="light"] {
  --bg: #fbfaf6;
  --bg-raised: #ffffff;
  --bg-3: #f3f1ea;
  --ink: #0e1218;
  --ink-dim: #4a5560;
  --ink-faint: #7a8390;
  --line: rgba(14, 18, 24, 0.10);
  --line-2: rgba(14, 18, 24, 0.18);
  --emerald-2: #0e8a4a; /* darker emerald reads better on cream */
  --hero-mesh-1: rgba(37, 211, 102, 0.16);
  --hero-mesh-2: rgba(14, 138, 74, 0.08);
}
:root[data-theme="light"] body { color: var(--ink); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--emerald);
  z-index: 200;
  transform-origin: left center;
  will-change: transform;
}

/* ========== TYPE ========== */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; }
.mono { font-family: var(--mono); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--emerald); }
h1.display {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(52px, 9vw, 128px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
  padding-bottom: 0.28em;
}
h2.display {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.italic-serif { font-style: italic; color: var(--emerald-2); }
p.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-dim);
  max-width: 56ch;
  line-height: 1.55;
}

/* ========== LAYOUT ========== */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 1040px; margin: 0 auto; padding: 0 32px; }
section { position: relative; padding: clamp(120px, 14vw, 200px) 0; }
.section-header { margin-bottom: clamp(64px, 7vw, 96px); max-width: 780px; }
.section-header .eyebrow { margin-bottom: 24px; }
.section-header p.lede { margin-top: 22px; }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(11, 20, 26, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(11, 20, 26, 0.85); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--emerald-2), var(--wa-green-deep));
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.45), inset 0 0 4px rgba(255,255,255,0.2);
}
.nav-logo .tag { font-family: var(--mono); font-size: 12px; color: var(--ink-dim); letter-spacing: 0.08em; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--ink-dim); text-decoration: none; font-size: 13.5px; transition: color .2s ease; }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 780px) { .nav-links a:not(.btn) { display: none; } }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--emerald); color: #052e1d; font-weight: 600; }
.btn-primary:hover { transform: translateY(-1px) scale(1.02); background: var(--emerald-2); box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.4); }
/* Top-right nav "Book a demo" button uses white text for nav contrast */
.nav .btn-primary, .nav-links .btn-primary { color: #ffffff; }
.nav .btn-primary:hover, .nav-links .btn-primary:hover { color: #ffffff; }
.btn-ghost { color: var(--ink); border-color: var(--line-2); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-xl { padding: 22px 36px; font-size: 16px; }

/* ========== HERO ========== */
.hero { padding-top: 160px; padding-bottom: 140px; overflow: hidden; position: relative; text-align: center; }
.hero-mesh {
  position: absolute; inset: -15%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  background:
    radial-gradient(600px 500px at 25% 35%, #25d366, transparent 60%),
    radial-gradient(700px 600px at 75% 50%, #128c7e, transparent 65%),
    radial-gradient(500px 500px at 50% 80%, #25d366, transparent 60%);
  filter: blur(60px);
  animation: meshDrift 18s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
  100% { transform: translate(40px, -20px) scale(0.98); }
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow { margin-bottom: 28px; justify-content: center; display: inline-flex; }
.hero h1 { max-width: 14ch; margin: 0 auto; font-size: clamp(44px, 6.5vw, 92px); }
.hero-sub {
  margin: 32px auto 0;
  font-size: clamp(17px, 1.45vw, 21px);
  color: var(--ink-dim);
  line-height: 1.55;
  max-width: 56ch;
}
.hero-sub .em { color: var(--ink); }
.hero-ctas { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-phone-wrap {
  margin: 72px auto 0;
  display: flex; justify-content: center;
  position: relative;
}
.hero-partners {
  margin-top: 56px;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-partners .sep { opacity: 0.4; }
.hero-partners .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse 2s ease-in-out infinite;
  display: inline-block;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Kinetic headline (hero only, one entrance) */
h1.display .kin-line, .kin-line { overflow: visible; display: block !important; line-height: 1.0; }
h1.display .kin-line.kin-clip, .kin-line.kin-clip { overflow: hidden; }
h1.display .kin-line > span, .kin-line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.0s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes rise { to { transform: translateY(0); } }

/* ========== PHONE ========== */
.phone {
  position: relative;
  width: 340px;
  height: 680px;
  border-radius: 44px;
  background: linear-gradient(165deg, #1e2a32 0%, #0a1114 100%);
  padding: 10px;
  box-shadow:
    0 50px 100px -20px rgba(0, 0, 0, 0.7),
    0 20px 40px -15px rgba(37, 211, 102, 0.12),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1.5px 0 rgba(255,255,255,0.08);
}
.phone.lg { width: 380px; height: 760px; }
.phone.compact { width: 300px; height: 600px; }
.phone-screen {
  position: relative;
  inset: 0;
  border-radius: 36px;
  background: #111b21;
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.04);
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #000;
  border-radius: 18px;
  z-index: 3;
}

/* WhatsApp header */
.wa-header {
  padding: 48px 14px 12px;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa-header);
  border-bottom: 1px solid rgba(0,0,0,0.25);
}
.wa-back { color: var(--ink-dim); padding: 4px; flex-shrink: 0; }
.wa-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, var(--emerald-2), var(--wa-green-deep));
  display: flex; align-items: center; justify-content: center;
  color: #052e1d; font-weight: 700; font-size: 14px;
}
.wa-avatar.b { background: radial-gradient(circle at 30% 30%, #f0c8aa, #b4734a); }
.wa-avatar.c { background: radial-gradient(circle at 30% 30%, #c9b8ff, #6947c4); }
.wa-avatar.d { background: radial-gradient(circle at 30% 30%, #ffd59e, #d97706); }
.wa-avatar.e { background: radial-gradient(circle at 30% 30%, #a5e4ff, #2563eb); }
.wa-avatar.f { background: radial-gradient(circle at 30% 30%, #ffb4c1, #be185d); }
.wa-name { font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.2; }
.wa-presence { font-size: 11.5px; color: var(--ink-dim); line-height: 1.3; margin-top: 2px; }
.wa-head-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; color: var(--ink-dim); }

.wa-body {
  flex: 1;
  padding: 14px 10px;
  display: flex; flex-direction: column; gap: 6px;
  overflow: hidden;
  background: #0b141a;
  position: relative;
}
.wa-body::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.015) 1px, transparent 2px),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.015) 1px, transparent 2px);
  background-size: 40px 40px, 60px 60px;
  opacity: 0.6; pointer-events: none;
}
.wa-date {
  align-self: center;
  background: rgba(27, 39, 47, 0.9);
  padding: 4px 10px; border-radius: 8px;
  font-size: 10.5px; color: var(--ink-dim);
  margin: 4px 0 8px;
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.wa-bubble {
  max-width: 80%;
  padding: 6px 8px 8px 10px;
  border-radius: 8px;
  font-size: 13px; line-height: 1.4;
  opacity: 0; transform: translateY(6px);
  animation: bubbleIn .4s cubic-bezier(.2,.9,.2,1) forwards;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.12);
}
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }
.wa-bubble.in { background: var(--wa-incoming); color: var(--ink); align-self: flex-start; border-radius: 8px 8px 8px 2px; }
.wa-bubble.out { background: var(--wa-green-dark); color: #e7f4ef; align-self: flex-end; border-radius: 8px 8px 2px 8px; }
.wa-bubble .txt { padding-right: 48px; }
.wa-bubble .meta {
  position: absolute; right: 8px; bottom: 4px;
  font-size: 10px; opacity: 0.65;
  display: inline-flex; align-items: center; gap: 3px;
  white-space: nowrap;
  font-family: var(--mono);
}
.wa-tick { display: inline-flex; }
.wa-tick svg { width: 14px; height: 10px; }
.wa-tick.read { color: var(--wa-tick-read); opacity: 1 !important; }

.wa-voice {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px 10px !important;
  min-width: 210px;
}
.wa-voice .va {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,0.2);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.wa-voice .vplay {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: currentColor; flex-shrink: 0;
}
.wa-bubble.out .wa-voice-accent, .wa-bubble.out.wa-voice .vplay { background: var(--emerald); color: #052e1d; }
.wa-bars { flex: 1; display: flex; align-items: center; gap: 2px; height: 22px; position: relative; }
.wa-bars span { width: 2px; background: currentColor; border-radius: 2px; opacity: 0.5; }
.wa-bars .played { opacity: 1; }
.wa-voice .vdur { font-size: 10px; opacity: 0.7; min-width: 28px; font-family: var(--mono); }
.wa-voice.playing .wa-bars span { animation: wavebar 0.9s ease-in-out infinite; }
@keyframes wavebar { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
.wa-voice .meta-v {
  display: inline-flex; gap: 3px; align-items: center;
  font-size: 10px; opacity: 0.65; margin-left: 4px;
  font-family: var(--mono);
}

.wa-photo { padding: 4px !important; overflow: hidden; }
.wa-photo .ph {
  width: 220px; height: 130px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2a3942 0%, #1a2830 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim); font-size: 11px;
  position: relative; overflow: hidden;
  font-family: var(--mono); letter-spacing: 0.08em;
}
.wa-photo .ph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(37,211,102,0.1), transparent 40%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 10px, transparent 10px 20px);
}
.wa-photo .caption { padding: 6px 8px 4px; font-size: 12.5px; color: var(--ink); }

.wa-card {
  background: rgba(0,0,0,0.2);
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 4px;
  display: flex; gap: 10px; align-items: center;
  font-size: 11.5px;
}
.wa-card .thumb {
  width: 38px; height: 38px; border-radius: 4px;
  background: linear-gradient(135deg, var(--emerald-2), var(--wa-green-deep));
  flex-shrink: 0;
}
.wa-card .title { font-weight: 500; color: var(--ink); }
.wa-card .sub { color: var(--ink-dim); font-size: 10.5px; margin-top: 1px; }

.wa-typing {
  align-self: flex-start;
  background: var(--wa-incoming);
  padding: 10px 14px;
  border-radius: 8px 8px 8px 2px;
  display: inline-flex; gap: 3px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.12);
}
.wa-typing i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-dim);
  animation: typing 1.2s infinite;
}
.wa-typing i:nth-child(2) { animation-delay: 0.15s; }
.wa-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.wa-input {
  padding: 8px 10px 14px;
  display: flex; align-items: center; gap: 6px;
  background: #111b21;
}
.wa-input .field {
  flex: 1;
  background: var(--wa-input);
  border-radius: 24px;
  padding: 9px 14px;
  font-size: 13px; color: var(--ink-dim);
}
.wa-input .icon-btn { color: var(--ink-dim); padding: 4px; display: inline-flex; background: transparent; border: none; cursor: pointer; }
.wa-input .send {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--emerald); color: #052e1d;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; flex-shrink: 0;
}

/* ========== FEATURE PILLS ========== */
.pills-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: flex-start;
}
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--ink);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.pill:hover { transform: translateY(-2px) scale(1.02); border-color: rgba(37,211,102,0.3); }
.pill svg { color: var(--emerald-2); flex-shrink: 0; }
.pill.featured { background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(37,211,102,0.02)); border-color: rgba(37,211,102,0.35); }
.pill .flag { font-family: var(--mono); font-size: 10px; color: var(--emerald); letter-spacing: 0.1em; text-transform: uppercase; margin-left: 4px; }

/* ========== INDUSTRIES ========== */
.industries-tabs {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  overflow-x: auto;
}
.industries-tabs.centered { justify-content: center; }
.industry-tab {
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: var(--ink-dim);
  font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: color .2s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}
.industry-tab:hover { color: var(--ink); }
.industry-tab.active { color: var(--emerald-2); border-bottom-color: var(--emerald); }

.industry-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
  animation: panelIn .5s cubic-bezier(.2,.8,.2,1);
}
@keyframes panelIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
@media (max-width: 900px) { .industry-panel { grid-template-columns: 1fr; } }

.industry-phone-wrap { display: flex; justify-content: center; position: relative; }
.industry-phone-wrap::before {
  content: "";
  position: absolute;
  top: 10%; left: 10%; right: 10%; bottom: 10%;
  background: radial-gradient(circle, rgba(37,211,102,0.08), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.industry-phone-wrap > * { position: relative; z-index: 1; }

.industry-copy .kicker {
  font-family: var(--mono); font-size: 11px;
  color: var(--emerald); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 16px;
  display: inline-block;
}
.industry-copy h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.industry-copy p { color: var(--ink-dim); font-size: 16.5px; line-height: 1.6; max-width: 48ch; margin-bottom: 32px; }
.industry-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.industry-bullets li { display: flex; gap: 12px; font-size: 15px; color: var(--ink); line-height: 1.5; }
.industry-bullets li svg { flex-shrink: 0; margin-top: 4px; color: var(--emerald); }

.industry-stat {
  padding: 22px 24px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 4px;
  max-width: 420px;
}
.industry-stat .big {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--emerald-2);
  letter-spacing: -0.02em;
  line-height: 1;
}
.industry-stat .label { font-size: 13px; color: var(--ink-dim); margin-top: 6px; line-height: 1.4; }

/* ========== HOW IT WORKS ========== */
.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; gap: 8px; }
  .how-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin: 0 auto;
    transform: rotate(90deg);
    transform-origin: center;
  }
  .how-arrow svg { width: 64px; height: auto; }
}
.how-col {
  padding: 36px 32px;
  border-radius: 18px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease;
  min-height: 360px;
}
.how-col:hover { transform: translateY(-3px); border-color: rgba(37,211,102,0.3); }
.how-col .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--emerald);
  letter-spacing: 0.14em;
}
.how-illu {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  min-height: 160px;
}
.how-col .t { font-family: var(--serif); font-size: clamp(22px, 2vw, 28px); line-height: 1.2; }
.how-col .b { color: var(--ink-dim); font-size: 14.5px; line-height: 1.55; }
.how-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald); opacity: 0.55;
}

/* ========== FLAGSHIP ========== */
.flagship {
  background: linear-gradient(180deg, var(--bg) 0%, #060c0f 50%, var(--bg) 100%);
  position: relative;
}
.flagship::before, .flagship::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.flagship::before { top: 0; } .flagship::after { bottom: 0; }
.flagship-head { text-align: center; margin-bottom: 60px; }
.flagship-head .eyebrow { margin: 0 auto 24px; justify-content: center; }
.flagship-head h2 { margin: 0 auto; max-width: 20ch; }
.flagship-head p { color: var(--ink-dim); margin-top: 20px; max-width: 54ch; margin-left: auto; margin-right: auto; }

.waveform-twin {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 760px) { .waveform-twin { grid-template-columns: 1fr; } }
.wave-card {
  padding: 36px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.wave-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.wave-label .who { font-family: var(--serif); font-size: 22px; }
.wave-label .tag {
  font-family: var(--mono); font-size: 10px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(37,211,102,0.1);
  color: var(--emerald);
  border: 1px solid rgba(37,211,102,0.3);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.wave-canvas { height: 120px; display: flex; align-items: center; gap: 3px; margin-bottom: 24px; }
.wave-canvas span { flex: 1; background: var(--emerald); border-radius: 2px; box-shadow: 0 0 5px rgba(37,211,102,0.3); transition: transform 0.08s ease; }
.wave-play { display: flex; align-items: center; gap: 14px; }
.play-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--emerald); color: #052e1d;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  transition: transform .2s ease;
}
.play-btn:hover { transform: scale(1.08); }
.play-hint { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); letter-spacing: 0.08em; text-transform: uppercase; }
.flagship-caption {
  text-align: center; margin-top: 48px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic; color: var(--emerald-2);
}

/* ========== ROI ========== */
.roi-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  padding: 48px;
  border-radius: 22px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.roi-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 100% 0%, rgba(37,211,102,0.08), transparent 70%);
  pointer-events: none;
}
@media (max-width: 900px) { .roi-card { grid-template-columns: 1fr; padding: 32px; } }

.roi-input-group { margin-bottom: 32px; }
.roi-label { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.roi-slider-row { display: flex; align-items: center; gap: 20px; }
.roi-value { font-family: var(--mono); font-size: 28px; min-width: 130px; color: var(--ink); letter-spacing: -0.01em; }
.roi-value .unit { font-size: 13px; color: var(--ink-dim); margin-left: 4px; }
.roi-slider {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 99px;
  background: rgba(255,255,255,0.1);
  outline: none;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 5px rgba(37,211,102,0.2), 0 4px 12px rgba(37,211,102,0.5);
  cursor: pointer;
}
.roi-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; border: none;
  background: var(--emerald);
  box-shadow: 0 0 0 5px rgba(37,211,102,0.2);
}

.roi-output { display: flex; flex-direction: column; justify-content: center; }
.roi-bars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.roi-bar-meta {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 8px;
}
.roi-bar-meta .val { color: var(--ink); font-family: var(--serif); font-size: 18px; text-transform: none; letter-spacing: 0; }
.roi-bar-track { height: 10px; background: rgba(255,255,255,0.04); border-radius: 99px; overflow: hidden; }
.roi-bar-fill { height: 100%; border-radius: 99px; transition: width 1s cubic-bezier(.2,.8,.2,1); }
.roi-bar-fill.gray { background: #2a3947; }
.roi-bar-fill.amber { background: linear-gradient(90deg, #d97706, #f59e0b); }
.roi-bar-fill.emerald { background: linear-gradient(90deg, var(--wa-green-deep), var(--emerald-2)); box-shadow: 0 0 16px rgba(37,211,102,0.4); }

.roi-total {
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(37,211,102,0.04));
  border: 1px solid rgba(37,211,102,0.3);
}
.roi-total .label { font-family: var(--mono); font-size: 11px; color: var(--emerald); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.roi-total .big {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.02em; line-height: 1;
  color: var(--emerald-2);
}
.roi-total .big .unit { color: var(--ink-dim); font-family: var(--sans); font-size: 16px; margin-right: 8px; letter-spacing: 0; }
.roi-total .fine { margin-top: 10px; color: var(--ink-dim); font-size: 13px; }

/* ========== INTEGRATIONS ========== */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) { .integrations-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .integrations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px)  { .integrations-grid { grid-template-columns: repeat(2, 1fr); } }

.int-tile {
  position: relative;
  padding: 28px 18px 22px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--ink-dim);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .25s ease, background .25s ease, color .25s ease;
  cursor: default;
  min-height: 118px;
  outline: none;
}
.int-tile:hover, .int-tile:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(37,211,102,0.35);
  background: #1a2229;
  color: var(--ink);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,211,102,0.15);
}
.int-tile.more {
  border-style: dashed;
  color: var(--ink-faint);
}
.int-tile.more:hover { color: var(--emerald-2); }
.int-logo {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: currentColor;
}
.int-logo svg { width: 40px; height: 28px; }
.int-name {
  font-size: 12.5px;
  font-family: var(--sans);
  letter-spacing: 0.01em;
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
}
.int-tile.more .int-name { color: var(--ink-faint); font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; }
.int-tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #0a1115;
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.4;
  width: max-content;
  max-width: 220px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 10;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.6);
}
.int-tip::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--line-2);
}
.int-tile:hover .int-tip, .int-tile:focus-visible .int-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.industry-stat-honest {
  padding: 16px 20px;
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  max-width: 460px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.4;
}
.industry-stat-honest svg { color: var(--emerald); flex-shrink: 0; }

.int-tile.soon { opacity: 0.78; }
.soon-pill {
  position: absolute;
  top: 8px; right: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line-2);
  padding: 2px 6px;
  border-radius: 99px;
}

.price-setup {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
  margin-top: -10px;
  letter-spacing: 0.02em;
}
.tag-soon {
  position: absolute;
  top: -11px; left: 24px;
  background: var(--bg-3); color: var(--emerald-2);
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  border: 1px solid rgba(37,211,102,0.4);
}
.pricing-fineprint {
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  margin-top: 32px;
}

/* ========== PRICING ========== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  padding: 36px 32px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease;
}
.price-card:hover { transform: translateY(-3px) scale(1.01); border-color: rgba(255,255,255,0.15); }
.price-card.pro {
  border-color: rgba(37,211,102,0.4);
  box-shadow: 0 0 0 1px rgba(37,211,102,0.25) inset;
}
.price-card.elite {
  position: relative;
}
.price-card.elite::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: conic-gradient(from 0deg, var(--emerald), transparent 30%, var(--emerald-2) 60%, transparent 90%, var(--emerald));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spin 5s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.tag-popular {
  position: absolute;
  top: -11px; left: 24px;
  background: var(--emerald); color: #052e1d;
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
}
.price-name { font-family: var(--serif); font-size: 28px; }
.price-amt { display: flex; align-items: baseline; gap: 6px; }
.price-amt .num { font-family: var(--mono); font-size: 48px; letter-spacing: -0.02em; line-height: 1; color: var(--ink); font-weight: 500; }
.price-amt .per { color: var(--ink-dim); font-size: 14px; }
.price-desc { color: var(--ink-dim); font-size: 14.5px; min-height: 42px; line-height: 1.5; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 8px 0 0; }
.price-features li { display: flex; gap: 10px; font-size: 14px; color: var(--ink); }
.price-features li svg { flex-shrink: 0; margin-top: 4px; color: var(--emerald); }
.price-cta { margin-top: auto; padding-top: 20px; }
.price-cta .btn { width: 100%; justify-content: center; }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; border: none;
  text-align: left; cursor: pointer;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 25px);
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--emerald-2); }
.faq-icon {
  width: 22px; height: 22px; position: relative; flex-shrink: 0;
  color: var(--ink-dim);
  transition: transform .4s cubic-bezier(.3,1.5,.5,1);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 13px; height: 1.5px; background: currentColor;
  transform: translate(-50%,-50%);
  transition: transform .35s cubic-bezier(.3,1.5,.5,1);
}
.faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-q { color: var(--emerald-2); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--emerald); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.3,1,.5,1); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner { padding: 0 40px 28px 0; color: var(--ink-dim); font-size: 15px; line-height: 1.65; max-width: 70ch; }

/* ========== FINAL CTA ========== */
.final {
  text-align: center;
  padding: clamp(140px, 16vw, 220px) 0;
  background:
    radial-gradient(900px 600px at 50% 100%, rgba(37, 211, 102, 0.22), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, #050a0d 100%);
  position: relative;
}
.final::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.final h2 { max-width: 22ch; margin: 0 auto; font-size: clamp(44px, 7vw, 100px); }
.final p { color: var(--ink-dim); margin-top: 24px; font-size: 18px; max-width: 54ch; margin-left: auto; margin-right: auto; }
.final .btn-xl { margin-top: 48px; animation: glow 3s ease-in-out infinite; }
@keyframes glow {
  0%,100% { box-shadow: 0 10px 40px -6px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 20px 60px -4px rgba(37,211,102,0.85); }
}

/* ========== FOOTER ========== */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--line); background: #050a0d; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: center; }
.footer .tagline { color: var(--ink-dim); font-size: 13px; }
.footer .copy { font-family: var(--mono); font-size: 11px; color: var(--ink-faint); letter-spacing: 0.08em; text-transform: uppercase; }
.footer a { color: var(--ink-dim); text-decoration: none; transition: color .2s ease; }
.footer a:hover { color: var(--emerald-2); }

/* ========== REVEAL ========== */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.reveal-stagger.in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.10s; }
.reveal-stagger.in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.reveal-stagger.in > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }

/* ========== PHOTO CARD BUBBLE (real image inside) ========== */
.wa-bubble.wa-photocard {
  padding: 4px !important;
  max-width: 86%;
  min-width: 240px;
}
.wa-photocard .pc-img {
  width: 100%;
  height: 150px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
  background: #1a2830;
}
.wa-photocard .pc-body {
  padding: 8px 8px 4px;
}
.wa-photocard .pc-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.wa-photocard .pc-sub {
  font-size: 12px;
  color: var(--ink-dim);
  margin-top: 2px;
  line-height: 1.4;
}
.wa-photocard .meta {
  position: relative;
  right: 0; bottom: 0;
  display: flex; justify-content: flex-end;
  padding: 2px 6px 2px;
  margin-top: 2px;
}

/* ========== TRY-IT-YOURSELF (interactive demo) ========== */
.tryit-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.tryit-vertical-pills {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center;
  padding: 6px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.tryit-pill {
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: var(--ink-dim);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.tryit-pill:hover { color: var(--ink); }
.tryit-pill.active {
  background: var(--emerald);
  color: #052e1d;
}
.tryit-phone-host {
  position: relative;
  display: flex; justify-content: center;
}
.tryit-phone-host::before {
  content: "";
  position: absolute; inset: -10% -5% -5%;
  background: radial-gradient(closest-side, rgba(37,211,102,0.10), transparent 70%);
  filter: blur(40px);
  z-index: 0; pointer-events: none;
}
.tryit-phone-host > * { position: relative; z-index: 1; }

.tryit-phone .wa-body {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.tryit-phone .wa-body::-webkit-scrollbar { width: 4px; }
.tryit-phone .wa-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

/* live input bar */
.wa-input-live {
  padding: 8px 10px 14px;
  display: flex; align-items: center; gap: 6px;
  background: #111b21;
}
.wa-input-live .icon-btn { color: var(--ink-dim); padding: 4px; display: inline-flex; background: transparent; border: none; cursor: pointer; }
.wa-input-live .field-input {
  flex: 1;
  background: var(--wa-input);
  border: none;
  outline: none;
  border-radius: 24px;
  padding: 9px 14px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
}
.wa-input-live .field-input::placeholder { color: var(--ink-dim); }
.wa-input-live .send-live {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--emerald); color: #052e1d;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; flex-shrink: 0;
  transition: transform .15s ease, background .15s ease;
}
.wa-input-live .send-live:hover { background: var(--emerald-2); transform: scale(1.05); }
.wa-input-live .send-live:disabled { background: var(--wa-input); color: var(--ink-faint); cursor: not-allowed; transform: none; }

.tryit-caption {
  margin-top: 8px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  max-width: 48ch;
  line-height: 1.5;
  opacity: 0;
  transition: opacity .6s ease;
}
.tryit-caption.show { opacity: 1; }
.tryit-caption .em { color: var(--emerald-2); }

.tryit-suggestions {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-top: 4px;
  max-width: 480px;
}
.tryit-sugg {
  padding: 7px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-dim);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.tryit-sugg:hover {
  border-color: rgba(37,211,102,0.4);
  color: var(--ink);
  background: rgba(37,211,102,0.05);
}

/* "Coming Q2" inline pill on bullets / cards */
.coming-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  padding: 2px 7px;
  border-radius: 99px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Section spacing tightening for shorter page */
section { padding: clamp(72px, 9vw, 120px) 0; }
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }

/* FAQ link callout (replaces inline FAQ on landing) */
.faq-link-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 36px 56px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.faq-link-card:hover {
  border-color: rgba(37,211,102,0.45);
  background: rgba(37,211,102,0.04);
  transform: translateY(-2px);
}
.faq-link-title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.faq-link-title .arrow {
  display: inline-block;
  margin-left: 8px;
  color: var(--emerald-2);
  transition: transform .25s ease;
}
.faq-link-card:hover .faq-link-title .arrow { transform: translateX(6px); }

/* Standalone FAQ page layout */
body.page-faq { background: var(--bg); color: var(--ink); }
.faq-page-hero {
  padding: clamp(80px, 10vw, 140px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
}
.faq-page-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .2s ease;
}
.faq-page-back:hover { color: var(--emerald-2); }
.faq-page-cta {
  margin-top: clamp(64px, 8vw, 96px);
  text-align: center;
  padding-bottom: clamp(80px, 10vw, 140px);
}

/* Light mode: footer + ghost button + nav glass */
:root[data-theme="light"] .footer { background: #f3f1ea; border-top: 1px solid var(--line); }
:root[data-theme="light"] .btn-ghost { background: rgba(0,0,0,0.02); }
:root[data-theme="light"] .btn-ghost:hover { background: rgba(0,0,0,0.04); }
:root[data-theme="light"] .roi-bar-fill.gray { background: #d4d0c4; }
:root[data-theme="light"] .pricing-grid .price-card { background: #fff; }
:root[data-theme="light"] .industry-tab { background: rgba(0,0,0,0.02); }
:root[data-theme="light"] .industry-tab.active { background: var(--emerald); color: #052e1d; }
:root[data-theme="light"] .industry-bullets li,
:root[data-theme="light"] .price-features li { color: var(--ink-dim); }
:root[data-theme="light"] .faq-item { background: #fff; }
:root[data-theme="light"] .scroll-progress { background: linear-gradient(90deg, var(--emerald), var(--emerald-2)); }
:root[data-theme="light"] .nav.scrolled { background: rgba(251, 250, 246, 0.85); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%); }
:root[data-theme="light"] .nav.scrolled { border-bottom: 1px solid var(--line); }
:root[data-theme="light"] .tryit-vertical-pills { background: #fff; }
:root[data-theme="light"] .tryit-pill { color: var(--ink-dim); }
:root[data-theme="light"] .tryit-pill.active { color: #052e1d; }
:root[data-theme="light"] .tryit-sugg { background: #fff; }
:root[data-theme="light"] .tryit-sugg:hover { background: rgba(37,211,102,0.08); color: var(--ink); }
:root[data-theme="light"] .pill { background: #fff; color: var(--ink); }
:root[data-theme="light"] .faq-link-card { background: #fff; }
:root[data-theme="light"] .faq-link-card:hover { background: rgba(37,211,102,0.05); }
:root[data-theme="light"] .coming-pill { background: rgba(0,0,0,0.04); color: var(--ink-faint); }
:root[data-theme="light"] .integrations-strip { background: #fff; border-color: var(--line); }
:root[data-theme="light"] .integrations-strip .int-mini-logo { color: var(--ink-faint); }
:root[data-theme="light"] .integrations-strip .int-mini:hover .int-mini-logo { color: var(--emerald-ink); }
:root[data-theme="light"] .theme-toggle { color: var(--ink-dim); }
:root[data-theme="light"] .theme-toggle:hover { color: var(--ink); }
:root[data-theme="light"] body { background: var(--bg); }

/* Theme toggle button (in nav) */
.theme-toggle {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-dim);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--line-2); }
.theme-toggle svg { width: 16px; height: 16px; }

/* Tiny integrations strip */
.integrations-strip-wrap {
  margin-top: clamp(72px, 8vw, 112px);
  display: flex; justify-content: center;
  padding: 0 24px;
}
.integrations-strip {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  padding: 14px clamp(20px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 999px;
  flex-wrap: wrap;
  justify-content: center;
}
.integrations-strip .strip-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}
.integrations-strip .int-mini {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.integrations-strip .int-mini-logo {
  width: 22px; height: 22px;
  color: var(--ink-faint);
  display: inline-flex;
  transition: color .2s ease, transform .2s ease;
}
.integrations-strip .int-mini:hover .int-mini-logo { color: var(--emerald-2); transform: translateY(-1px); }
.integrations-strip .int-mini-tip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(2px);
  background: var(--bg-raised);
  color: var(--ink);
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 5;
}
.integrations-strip .int-mini:hover .int-mini-tip { opacity: 1; transform: translateX(-50%) translateY(0); }
.integrations-strip .int-mini-tip .soon { color: var(--emerald-2); margin-left: 4px; }
.integrations-strip .strip-more {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  white-space: nowrap;
}

/* ========== END light + integrations strip ========== */

/* ========== VERTICAL LANDING PAGES ========== */

body.page-vertical { background: var(--bg); color: var(--ink); }

/* Breadcrumb */
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 20px;
  text-align: center;
}
.breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--emerald-2); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.5; }

/* Vertical hero */
.vertical-hero { padding-top: clamp(120px, 16vw, 180px); padding-bottom: clamp(80px, 10vw, 120px); position: relative; overflow: hidden; text-align: center; }
.vertical-hero h1 { max-width: 18ch; margin: 0 auto; }
.vertical-hero .hero-sub { max-width: 52ch; margin: 20px auto 0; }
.vertical-hero .hero-ctas { justify-content: center; margin-top: clamp(28px, 4vw, 44px); }

/* Pain points grid */
.pain-section { padding: clamp(80px, 10vw, 140px) 0; }
.pain-section .section-header { text-align: center; max-width: 680px; margin: 0 auto clamp(40px, 5vw, 64px); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.pain-card {
  padding: 32px 28px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pain-card .pain-icon { color: var(--emerald); width: 32px; height: 32px; }
.pain-card h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.pain-card p { color: var(--ink-dim); font-size: 15px; line-height: 1.55; }

/* Features section on vertical pages */
.vertical-features { padding: clamp(80px, 10vw, 140px) 0; }
.vertical-features .section-header { text-align: center; max-width: 680px; margin: 0 auto clamp(40px, 5vw, 64px); }

/* Vertical FAQ section */
.vertical-faq { padding: clamp(60px, 8vw, 100px) 0; }
.vertical-faq .section-header { text-align: center; max-width: 680px; margin: 0 auto clamp(32px, 4vw, 48px); }

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

/* Light mode overrides for vertical pages */
:root[data-theme="light"] .pain-card { background: #fff; border-color: var(--line); }

/* ========== END vertical landing pages ========== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}
