/* ============================================================
   nouz.co — Solutions v2 (industry-differentiated)
   Layered on top of styles.css. Each industry sets accent
   tokens on the <body>, and the page composes shared blocks
   (hero, comparison split, KPI grid, mock, workflow, stories).
   ============================================================ */

/* Reset stale CSS — drop any unused .sol-* blocks (these still
   exist in solution.css for the old layout). We keep the
   existing CSS file and just override the layout below. */

/* ───── BRAND PALETTE (shared across all solutions) ─────── */
/* All solutions pages use the same nouz brand colors. Industry
   differentiation comes from the hero illustration and copy,
   not from chromatic theming. */
body[data-industry] {
  --sv-ink: #17171A;
  --sv-bg: var(--bg-app);       /* off-white #FAFAFA — matches homepage */
  --sv-bg-soft: #F4F3EE;        /* warm card tone — used sparingly */
  --sv-accent: #008060;         /* nouz positive green */
  --sv-accent-2: #4CCDA3;       /* mint, for highlights on dark */
  --sv-accent-soft: rgba(0,128,96,0.10);
  --sv-accent-glow: rgba(0,128,96,0.14);
  --sv-on-accent: #FFFFFF;
}

/* ───── HERO ──────────────────────────────────────────── */
.sv-hero {
  position: relative;
  padding: 96px 0 80px;
  background: var(--sv-bg);
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sv-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(0,128,96,0.07), transparent 60%);
  pointer-events: none;
}
.sv-hero > * { position: relative; z-index: 1; }
.sv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .sv-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .sv-hero { padding: 72px 0 56px; }
}

.sv-crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.sv-crumb a { color: var(--fg-muted); transition: color 180ms ease; }
.sv-crumb a:hover { color: var(--sv-ink); }
.sv-crumb .here { color: var(--sv-ink); font-weight: 500; }

.sv-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-accent);
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 6px 18px -10px rgba(0,0,0,0.06);
}
.sv-eyebrow .sv-eb-ic {
  width: 18px; height: 18px;
  color: var(--sv-accent);
}

.sv-title {
  margin: 22px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.01;
  letter-spacing: -0.028em;
  font-weight: 600;
  color: var(--sv-ink);
  text-wrap: balance;
}
.sv-title em { font-style: italic; font-weight: 500; }
.sv-title .hl {
  position: relative;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}
.sv-title .hl::after {
  content: '';
  position: absolute;
  left: -3px; right: -3px; bottom: 0.06em;
  height: 0.36em;
  background: var(--sv-accent-glow);
  z-index: -1;
  border-radius: 3px;
}
.sv-sub {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--sv-ink);
  opacity: 0.78;
  max-width: 540px;
  text-wrap: pretty;
}
.sv-sub em { font-style: italic; color: var(--sv-ink); opacity: 1; font-weight: 500; }
.sv-ctas {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.sv-ctas .btn-ink {
  background: var(--sv-accent);
  color: var(--sv-on-accent);
}
.sv-ctas .btn-ink:hover {
  background: var(--sv-ink);
}
.sv-ctas .btn-ghost-text {
  color: var(--sv-ink);
}

/* Hero visual — industry-specific metaphor card */
.sv-hero-vis {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-default);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.14);
}
@media (max-width: 980px) {
  .sv-hero-vis { aspect-ratio: 5 / 4; max-width: 520px; margin: 0 auto; }
}

/* ───── BEFORE / AFTER COMPARISON ───────────────────── */
.sv-compare {
  padding: 96px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-default);
}
.sv-compare-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.sv-compare-eb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.sv-compare-eb::before, .sv-compare-eb::after {
  content: ''; width: 24px; height: 1px;
  background: var(--sv-ink);
}
.sv-compare-h {
  margin: 18px 0 0;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  font-weight: 600;
  color: var(--sv-ink);
  text-wrap: balance;
}
.sv-compare-h em { font-style: italic; font-weight: 500; }
.sv-compare-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 820px) {
  .sv-compare-grid { grid-template-columns: 1fr; gap: 16px; }
}
.sv-col {
  padding: 36px 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sv-col-before {
  background: var(--bg-muted);
  border: 1px solid var(--border-default);
}
.sv-col-after {
  background: var(--sv-bg);
  border: 1px solid rgba(0,0,0,0.08);
}
.sv-col-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.sv-col-before .sv-col-label { color: var(--fg-muted); }
.sv-col-after .sv-col-label { color: var(--sv-accent); }
.sv-col-label .d {
  width: 6px; height: 6px; border-radius: 99px;
}
.sv-col-before .sv-col-label .d { background: var(--fg-muted); }
.sv-col-after .sv-col-label .d {
  background: var(--sv-accent);
  box-shadow: 0 0 0 3px var(--sv-accent-glow);
}
.sv-col-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--sv-ink);
  line-height: 1.2;
  margin: 0;
}
.sv-col-before .sv-col-title { opacity: 0.65; }
.sv-col-title em { font-style: italic; font-weight: 500; }
.sv-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sv-col-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--sv-ink);
}
.sv-col-before .sv-col-list li { opacity: 0.65; }
.sv-col-list li .ic {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px; height: 16px;
}
.sv-col-before .sv-col-list .ic { color: var(--fg-muted); }
.sv-col-after .sv-col-list .ic { color: var(--sv-accent); }
.sv-arrow {
  display: grid;
  place-items: center;
  color: var(--sv-accent);
}
.sv-arrow svg { width: 40px; height: 40px; }
@media (max-width: 820px) {
  .sv-arrow { transform: rotate(90deg); height: 40px; }
}

/* ───── INDUSTRY KPI GRID ─────────────────────────────── */
.sv-kpis {
  padding: 96px 0;
  background: var(--sv-bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sv-kpis-head {
  max-width: 720px;
  margin: 0 0 56px;
}
.sv-kpis-eb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-accent);
  font-weight: 600;
}
.sv-kpis-eb::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--sv-accent);
}
.sv-kpis-h {
  margin: 18px 0 0;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: var(--sv-ink);
  text-wrap: balance;
}
.sv-kpis-h em { font-style: italic; font-weight: 500; }
.sv-kpis-sub {
  margin: 18px 0 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--sv-ink);
  opacity: 0.74;
  max-width: 580px;
}

.sv-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .sv-kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .sv-kpi-grid { grid-template-columns: 1fr; } }

.sv-kpi {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  transition: transform 220ms var(--ease-out-quint), border-color 220ms;
}
.sv-kpi:hover {
  transform: translateY(-3px);
  border-color: rgba(0,0,0,0.18);
}
.sv-kpi-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--sv-accent-soft);
  color: var(--sv-accent);
  display: grid; place-items: center;
}
.sv-kpi-ic svg { width: 18px; height: 18px; }
.sv-kpi-lab {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.sv-kpi-val {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sv-ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.sv-kpi-vis {
  margin-top: auto;
  height: 32px;
}
.sv-kpi-vis svg { width: 100%; height: 100%; }
.sv-kpi-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--sv-ink);
  opacity: 0.7;
  margin: 0;
}

/* ───── PRODUCT MOCK ──────────────────────────────────── */
.sv-product {
  padding: 96px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-default);
}
.sv-product-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.sv-mock {
  position: relative;
  background: var(--bg-app);
  border: 1px solid var(--border-default);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.18);
  max-width: 1080px;
  margin: 0 auto;
}
.sv-mock-chrome {
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--border-default);
  background: linear-gradient(180deg, #FAFAFA, #F4F3EE);
}
.sv-mock-chrome .dots { display: flex; gap: 6px; }
.sv-mock-chrome .dots i {
  width: 10px; height: 10px; border-radius: 99px;
  background: var(--border-default);
}
.sv-mock-chrome .url {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}
.sv-mock-chrome .url strong { color: var(--sv-ink); font-weight: 600; }

/* ───── WORKFLOW (industry routine) ───────────────────── */
.sv-flow {
  padding: 96px 0;
  background: var(--sv-bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sv-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 64px;
  align-items: start;
}
@media (max-width: 820px) {
  .sv-flow-grid { grid-template-columns: 1fr; gap: 32px; }
}
.sv-flow-head {
  position: sticky;
  top: 100px;
}
@media (max-width: 820px) { .sv-flow-head { position: static; } }
.sv-flow-h {
  margin: 18px 0 18px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: var(--sv-ink);
  text-wrap: balance;
}
.sv-flow-h em { font-style: italic; font-weight: 500; }
.sv-flow-sub {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--sv-ink);
  opacity: 0.72;
}
.sv-flow-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sv-step {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 24px 28px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.sv-step-n {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--sv-accent-soft);
  color: var(--sv-accent);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.sv-step-body {
  display: flex; flex-direction: column; gap: 4px;
}
.sv-step-when {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-accent);
  font-weight: 600;
}
.sv-step-t {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--sv-ink);
}
.sv-step-t em { font-style: italic; font-weight: 500; }
.sv-step-d {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--sv-ink);
  opacity: 0.7;
  line-height: 1.5;
}
.sv-step-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ───── STORIES ───────────────────────────────────────── */
.sv-stories {
  padding: 96px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-default);
}
.sv-stories-head {
  max-width: 720px;
  margin: 0 0 48px;
}
.sv-story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .sv-story-grid { grid-template-columns: 1fr; } }

.sv-story {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 18px;
  padding: 30px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 220ms var(--ease-out-quint);
}
.sv-story:hover { transform: translateY(-3px); }
.sv-story-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.sv-story-stat-v {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 600;
  color: var(--sv-accent);
  letter-spacing: -0.022em;
  line-height: 1;
}
.sv-story-stat-l {
  font-size: 13.5px;
  color: var(--sv-ink);
  opacity: 0.78;
  line-height: 1.4;
  font-weight: 500;
}
.sv-story-q {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--sv-ink);
  font-style: italic;
  letter-spacing: -0.008em;
}
.sv-story-q em {
  font-style: italic;
  font-weight: 600;
  background: var(--sv-accent-glow);
  padding: 0 2px;
  border-radius: 2px;
}
.sv-story-by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.sv-story-av {
  width: 36px; height: 36px;
  border-radius: 99px;
  background: var(--sv-accent-soft);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--sv-accent);
}
.sv-story-by-t {
  display: flex; flex-direction: column; gap: 1px;
}
.sv-story-by-t .who {
  font-size: 13px;
  color: var(--sv-ink);
  font-weight: 600;
}
.sv-story-by-t .where {
  font-size: 11.5px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
}

/* ───── FINAL CTA — industry-themed ───────────────────── */
.sv-final-section {
  padding: 96px 0;
  background: var(--sv-bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sv-final {
  position: relative;
  background: var(--sv-ink);
  color: #fff;
  border-radius: 28px;
  padding: 64px 56px;
  overflow: hidden;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
@media (max-width: 640px) { .sv-final { padding: 48px 28px; border-radius: 20px; } }
.sv-final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, var(--sv-accent-glow), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, var(--sv-accent-soft), transparent 60%);
  pointer-events: none;
}
.sv-final > * { position: relative; z-index: 1; }
.sv-final-eb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.sv-final-eb .d {
  width: 6px; height: 6px; border-radius: 99px;
  background: var(--sv-accent-2);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.10);
}
.sv-final-h {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  font-weight: 600;
  text-wrap: balance;
  max-width: 720px;
}
.sv-final-h em { font-style: italic; font-weight: 500; }
.sv-final-sub {
  margin: 0;
  font-size: 17px;
  color: rgba(255,255,255,0.74);
  max-width: 560px;
  line-height: 1.5;
}
.sv-final-ctas {
  margin-top: 16px;
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}
.sv-final-ctas .btn-on-ink {
  background: var(--sv-accent-2);
  color: var(--sv-ink);
  font-weight: 600;
}
.sv-final-ctas .btn-on-ink:hover {
  background: #fff;
}
.sv-final-fine {
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  justify-content: center;
}
.sv-final-fine .sep { color: rgba(255,255,255,0.2); }

/* Hero illustration helpers — reusable shapes */
.sv-illu {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
}
.sv-illu svg { max-width: 100%; max-height: 100%; }

/* ============================================================
   v2 BEATS — added Nov 2026
   Beat 2 Problem, Beat 3 Cost, Beat 4 After,
   Beat 5 mechanism intro, Beat 6 vs alternatives,
   Beat 8 objections/trust, Beat 9 FAQ
   ============================================================ */

/* ───── BEAT 2 · THE PROBLEM (diary prose) ────────────── */
.sv-problem {
  padding: 110px 0 100px;
  background: #fff;
  border-bottom: 1px solid var(--border-default);
  position: relative;
}
.sv-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: start;
}
@media (max-width: 940px) { .sv-problem-grid { grid-template-columns: 1fr; gap: 36px; } }
.sv-problem-eb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sv-problem-eb::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--fg-muted);
}
.sv-problem-h {
  margin: 18px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.024em;
  font-weight: 600;
  color: var(--sv-ink);
  text-wrap: balance;
}
.sv-problem-h em { font-style: italic; font-weight: 500; }
.sv-problem-stamp {
  margin-top: 28px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border-default);
  border-radius: 10px;
  background: var(--bg-app);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}
.sv-problem-stamp strong {
  color: var(--sv-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.sv-diary {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--sv-ink);
  letter-spacing: -0.005em;
  max-width: 580px;
  text-wrap: pretty;
}
.sv-diary p { margin: 0; }
.sv-diary em {
  font-style: italic;
  font-weight: 500;
}
.sv-diary .sv-diary-q {
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--sv-ink);
  padding-left: 18px;
  border-left: 2px solid var(--sv-accent);
  margin: 4px 0;
  letter-spacing: -0.012em;
}
.sv-diary .sv-mark {
  background: rgba(199, 135, 31, 0.16);
  padding: 0 3px;
  border-radius: 2px;
  font-weight: 500;
}
.sv-diary .sv-strike {
  text-decoration: line-through;
  text-decoration-color: var(--color-destructive);
  text-decoration-thickness: 1.5px;
  color: var(--fg-muted);
}

/* ───── BEAT 3 · COST OF THE STATUS QUO ───────────────── */
.sv-cost {
  padding: 110px 0;
  background: var(--sv-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sv-cost::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(76,205,163,0.08), transparent 60%);
  pointer-events: none;
}
.sv-cost > * { position: relative; z-index: 1; }
.sv-cost-head {
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: center;
}
.sv-cost-eb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sv-accent-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sv-cost-eb::before,
.sv-cost-eb::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--sv-accent-2);
  opacity: 0.5;
}
.sv-cost-h {
  margin: 20px 0 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.026em;
  font-weight: 600;
  text-wrap: balance;
}
.sv-cost-h em { font-style: italic; font-weight: 500; }
.sv-cost-sub {
  margin: 22px auto 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  text-wrap: pretty;
}
.sv-cost-sub em { color: #fff; font-style: italic; font-weight: 500; }

.sv-cost-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 720px) { .sv-cost-grid { grid-template-columns: 1fr; } }

.sv-cost-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 26px 28px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 12px 18px;
  align-items: start;
}
.sv-cost-card-lab {
  grid-column: 1 / 2;
  grid-row: 1;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.sv-cost-card-amt {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 600;
  color: var(--sv-accent-2);
  letter-spacing: -0.022em;
  line-height: 1;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.sv-cost-card-amt .sv-cost-card-amt-l {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.sv-cost-card-t {
  grid-column: 1 / 2;
  grid-row: 2;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  letter-spacing: -0.012em;
}
.sv-cost-card-t em { font-style: italic; font-weight: 500; }
.sv-cost-card-d {
  grid-column: 1 / 3;
  grid-row: 3;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
  margin: 0;
}
.sv-cost-card-d strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.sv-cost-total {
  margin: 28px auto 0;
  max-width: 980px;
  border-top: 1px dashed rgba(255,255,255,0.18);
  padding-top: 28px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sv-cost-total-l {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.sv-cost-total-v {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.024em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.sv-cost-total-v .sv-cur {
  font-size: 0.5em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.sv-cost-foot {
  margin: 26px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* ───── BEAT 4 · THE AFTER (emotional payoff) ─────────── */
.sv-after {
  padding: 130px 0 120px;
  background: var(--bg-app);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-default);
}
.sv-after > * { position: relative; z-index: 1; }
.sv-after-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.sv-after-eb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sv-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sv-after-eb::before,
.sv-after-eb::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--sv-accent);
  opacity: 0.5;
}
.sv-after-h {
  margin: 22px 0 0;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 600;
  color: var(--sv-ink);
  text-wrap: balance;
}
.sv-after-h em { font-style: italic; font-weight: 500; }
.sv-after-prose {
  margin: 36px auto 0;
  font-size: 20px;
  line-height: 1.6;
  color: var(--sv-ink);
  opacity: 0.84;
  max-width: 580px;
  text-wrap: pretty;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sv-after-prose p { margin: 0; }
.sv-after-prose em { font-style: italic; font-weight: 500; opacity: 1; }
.sv-after-screen {
  margin: 48px auto 0;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 22px;
  padding: 24px 26px 22px;
  text-align: left;
  box-shadow: 0 30px 80px -30px rgba(23,23,26,0.22);
  position: relative;
}
.sv-after-screen-eb {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sv-after-screen-eb .dot {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: var(--sv-accent);
  box-shadow: 0 0 0 3px var(--sv-accent-soft);
}
.sv-after-screen-num {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.034em;
  color: var(--sv-ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.sv-after-screen-num .sv-cur {
  font-size: 0.42em;
  color: var(--fg-muted);
  font-weight: 500;
}
.sv-after-screen-cap {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}
.sv-after-screen-cap .chip {
  background: var(--sv-accent-soft);
  color: var(--sv-accent);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
}
.sv-after-screen-cap .who {
  color: var(--fg-muted);
}
.sv-after-time {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sv-after-time::before,
.sv-after-time::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-default);
}

/* ───── BEAT 5 · MECHANISM INTRO ──────────────────────── */
.sv-mech-intro {
  padding: 110px 0 60px;
  background: #fff;
}
.sv-mech-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: start;
}
@media (max-width: 940px) { .sv-mech-intro-grid { grid-template-columns: 1fr; gap: 28px; } }
.sv-mech-eb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sv-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sv-mech-eb::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--sv-accent);
}
.sv-mech-h {
  margin: 18px 0 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: var(--sv-ink);
  text-wrap: balance;
}
.sv-mech-h em { font-style: italic; font-weight: 500; }
.sv-mech-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--sv-ink);
  opacity: 0.78;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-wrap: pretty;
}
.sv-mech-body p { margin: 0; }
.sv-mech-body em { font-style: italic; font-weight: 500; opacity: 1; }
.sv-mech-body strong { color: var(--sv-ink); font-weight: 600; }

/* Sub-headers inside Beat 5 for the three nested blocks */
.sv-mech-sub-eb {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.sv-mech-sub-eb::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--fg-muted);
}
.sv-mech-sub-eb .n {
  font-family: var(--font-mono);
  color: var(--sv-accent);
  font-weight: 600;
}

/* When .sv-kpis / .sv-product / .sv-flow appear inside Beat 5,
   tighten the top padding so they read as one section. */
.sv-mech-block + .sv-mech-block { padding-top: 24px; }
.sv-mech-block { padding: 60px 0; background: #fff; }
.sv-mech-block.sv-mech-tone { background: var(--sv-bg); border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.sv-mech-block .sv-kpis-head,
.sv-mech-block .sv-flow-head,
.sv-mech-block .sv-product-head {
  margin-bottom: 32px;
}

/* ───── BEAT 6 · VS THE ALTERNATIVES ──────────────────── */
.sv-vs {
  padding: 110px 0;
  background: var(--sv-bg);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.sv-vs-head {
  max-width: 740px;
  margin: 0 auto 56px;
  text-align: center;
}
.sv-vs-eb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sv-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sv-vs-eb::before,
.sv-vs-eb::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--sv-accent);
  opacity: 0.5;
}
.sv-vs-h {
  margin: 20px 0 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.024em;
  font-weight: 600;
  color: var(--sv-ink);
  text-wrap: balance;
}
.sv-vs-h em { font-style: italic; font-weight: 500; }
.sv-vs-sub {
  margin: 22px auto 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--sv-ink);
  opacity: 0.74;
  max-width: 580px;
  text-wrap: pretty;
}

/* Stacked-row comparison: each alternative is one full-width card.
   nouz sits at the bottom in ink, highlighted. Far easier to read
   than a multi-column matrix. */
.sv-vs-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto;
}
.sv-vs-row {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr) minmax(0, 0.7fr);
  gap: 28px;
  align-items: center;
}
@media (max-width: 760px) {
  .sv-vs-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 22px;
  }
}
.sv-vs-row-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sv-vs-row-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.sv-vs-row-t {
  font-size: 16px;
  font-weight: 600;
  color: var(--sv-ink);
  letter-spacing: -0.012em;
  margin: 0;
  line-height: 1.3;
}
.sv-vs-row-t em { font-style: italic; font-weight: 500; }
.sv-vs-row-when {
  font-size: 14px;
  color: var(--sv-ink);
  opacity: 0.78;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.sv-vs-row-when strong { color: var(--sv-ink); opacity: 1; font-weight: 600; }
.sv-vs-row-when em { font-style: italic; opacity: 1; }
.sv-vs-row-cost {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--sv-ink);
  opacity: 0.78;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
  letter-spacing: -0.005em;
  text-align: right;
}
@media (max-width: 760px) {
  .sv-vs-row-cost { text-align: left; }
}
.sv-vs-row-cost-l {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

/* nouz row — same shape, ink fill, highlighted */
.sv-vs-row-nouz {
  background: var(--sv-ink);
  color: #fff;
  border-color: var(--sv-ink);
  position: relative;
  margin-top: 14px;
  box-shadow: 0 30px 60px -28px rgba(23,23,26,0.35);
}
.sv-vs-row-nouz::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--sv-accent-2);
  border-radius: 14px 0 0 14px;
}
.sv-vs-row-nouz .sv-vs-row-tag {
  color: var(--sv-accent-2);
  font-weight: 600;
}
.sv-vs-row-nouz .sv-vs-row-t {
  color: #fff;
}
.sv-vs-row-nouz .sv-vs-row-when {
  color: rgba(255,255,255,0.85);
  opacity: 1;
}
.sv-vs-row-nouz .sv-vs-row-when strong { color: #fff; }
.sv-vs-row-nouz .sv-vs-row-cost {
  color: #fff;
  opacity: 1;
}
.sv-vs-row-nouz .sv-vs-row-cost-l {
  color: rgba(255,255,255,0.55);
}

.sv-vs-foot {
  margin: 32px auto 0;
  text-align: center;
  font-size: 14.5px;
  color: var(--sv-ink);
  opacity: 0.72;
  font-style: italic;
  max-width: 580px;
}
.sv-vs-foot em { font-style: italic; font-weight: 500; opacity: 1; }

/* ───── BEAT 8 · OBJECTIONS & TRUST ───────────────────── */
.sv-trust {
  padding: 110px 0;
  background: var(--bg-app);
  border-bottom: 1px solid var(--border-default);
}
.sv-trust-head {
  max-width: 720px;
  margin: 0 0 48px;
}
.sv-trust-eb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sv-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sv-trust-eb::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--sv-accent);
}
.sv-trust-h {
  margin: 20px 0 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: var(--sv-ink);
  text-wrap: balance;
}
.sv-trust-h em { font-style: italic; font-weight: 500; }
.sv-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 940px) { .sv-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sv-trust-grid { grid-template-columns: 1fr; } }
.sv-trust-card {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 220ms var(--ease-out-quint), border-color 220ms;
}
.sv-trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,0,0,0.18);
}
.sv-trust-card-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--sv-accent-soft);
  color: var(--sv-accent);
  display: grid;
  place-items: center;
}
.sv-trust-card-ic svg { width: 18px; height: 18px; }
.sv-trust-card-q {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.sv-trust-card-t {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--sv-ink);
  letter-spacing: -0.012em;
}
.sv-trust-card-t em { font-style: italic; font-weight: 500; }
.sv-trust-card-d {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--sv-ink);
  opacity: 0.78;
}
.sv-trust-card-d em {
  font-style: italic;
  font-weight: 500;
  opacity: 1;
}
.sv-trust-card-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sv-trust-card-list li {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--bg-app);
  border: 1px solid var(--border-default);
  color: var(--sv-ink);
}
.sv-trust-card-list li.csv {
  background: var(--sv-accent-soft);
  border-color: rgba(0,128,96,0.3);
  color: var(--sv-accent);
  font-weight: 600;
}

/* ───── BEAT 9 · FAQ ──────────────────────────────────── */
.sv-faq {
  padding: 110px 0;
  background: var(--sv-bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sv-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
  align-items: start;
}
@media (max-width: 940px) { .sv-faq-grid { grid-template-columns: 1fr; gap: 32px; } }
.sv-faq-head {
  position: sticky;
  top: 100px;
}
@media (max-width: 940px) { .sv-faq-head { position: static; } }
.sv-faq-eb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sv-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sv-faq-eb::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--sv-accent);
}
.sv-faq-h {
  margin: 18px 0 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: var(--sv-ink);
  text-wrap: balance;
}
.sv-faq-h em { font-style: italic; font-weight: 500; }
.sv-faq-sub {
  margin: 18px 0 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--sv-ink);
  opacity: 0.74;
  max-width: 320px;
}
.sv-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 18px;
  overflow: hidden;
}
.sv-faq-item {
  border-bottom: 1px solid var(--border-default);
}
.sv-faq-item:last-child { border-bottom: none; }
.sv-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--sv-ink);
  letter-spacing: -0.012em;
  line-height: 1.4;
  transition: background 180ms ease;
}
.sv-faq-q:hover { background: var(--bg-app); }
.sv-faq-q em { font-style: italic; font-weight: 500; }
.sv-faq-q-ic {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 99px;
  border: 1px solid var(--border-default);
  display: grid;
  place-items: center;
  color: var(--fg-muted);
  transition: transform 220ms var(--ease-out-quint), color 180ms;
}
.sv-faq-q-ic svg { width: 10px; height: 10px; }
.sv-faq-item[open] .sv-faq-q-ic { transform: rotate(45deg); color: var(--sv-accent); border-color: var(--sv-accent); }
.sv-faq-a {
  padding: 0 26px 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--sv-ink);
  opacity: 0.78;
  max-width: 680px;
  text-wrap: pretty;
}
.sv-faq-a p { margin: 0 0 10px; }
.sv-faq-a p:last-child { margin-bottom: 0; }
.sv-faq-a em { font-style: italic; font-weight: 500; opacity: 1; }
.sv-faq-a strong { color: var(--sv-ink); font-weight: 600; opacity: 1; }
.sv-faq-a code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  background: var(--bg-app);
  padding: 1px 6px;
  border-radius: 4px;
}

/* Use <details> for native open/close */
details.sv-faq-item > summary {
  list-style: none;
  cursor: pointer;
}
details.sv-faq-item > summary::-webkit-details-marker { display: none; }

