/* ==========================================================================
   VELZIA — velzia.css
   One stylesheet for every page. Mobile-first. Vanilla, no build step.
   Sections:
   01 Fonts · 02 Tokens · 03 Base · 04 Layout · 05 Type · 06 Components
   07 Header · 08 Hero (night shift) · 09 Live call · 10 Calculator
   11 How it works + Life of a call · 12 Practice switcher · 13 Summary
   14 Compare table · 15 Integrations · 16 Safety · 17 Pricing · 18 FAQ
   19 CTA band + footer · 20 Intent landing modules · 21 Motion + reveal
   22 Reduced motion · 23 Utilities
   ========================================================================== */

/* 01 — FONTS: self-hosted variable WOFF2 (latin) from the design system's fonts/. */
@font-face { font-family: "Newsreader"; src: url("../fonts/Newsreader-Variable-latin.woff2") format("woff2"); font-weight: 200 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Newsreader"; src: url("../fonts/Newsreader-Variable-latin-italic.woff2") format("woff2"); font-weight: 200 800; font-style: italic; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/Inter-Variable-latin.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
/* 02 — TOKENS ------------------------------------------------------------ */
:root {
  /* Brand colors */
  --vz-ink: #0E1A2B;            /* text, dark sections */
  --vz-paper: #F7F4EE;          /* page background */
  --vz-white: #FFFFFF;          /* cards */
  --vz-green: #0C7A5E;          /* Answered Green: accent, primary buttons (white text 5.3:1) */
  --vz-green-light: #3DBE95;    /* accent on Ink only (7.49:1 on Ink) */
  --vz-sand: #E7DFD0;           /* borders, subtle fills */
  --vz-red: #B4432F;            /* missed-call states only (5.55:1 on white) */

  /* Supporting (derived) */
  --vz-ink-muted: #5B6472;      /* secondary text on paper 5.45:1, white 5.98:1 */
  --vz-ink-raised: #16263B;     /* card surface inside Ink sections */
  --vz-ink-line: rgba(255, 255, 255, .14);
  --vz-on-ink: #FFFFFF;
  --vz-on-ink-muted: #A9B4C2;   /* secondary text on Ink 8.3:1 */
  --vz-green-hover: #0A6850;
  --vz-green-tint: #E4F2EC;     /* success fills behind green text */
  --vz-red-tint: #F7E6E1;       /* missed fills behind red text */
  --vz-sand-strong: #CFC3AD;    /* hover border, dividers that need more weight */
  --vz-focus: #0C7A5E;
  --vz-focus-on-ink: #3DBE95;

  /* Type */
  --vz-font-serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --vz-font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --vz-text-display: clamp(2.5rem, 1.35rem + 5.1vw, 5.25rem);
  --vz-text-h2: clamp(2rem, 1.35rem + 2.9vw, 3.5rem);
  --vz-text-h3: clamp(1.375rem, 1.18rem + .8vw, 1.75rem);
  --vz-text-h4: 1.1875rem;
  --vz-text-lead: clamp(1.0625rem, 1rem + .35vw, 1.25rem);
  --vz-text-body: 1rem;
  --vz-text-small: .875rem;
  --vz-text-micro: .75rem;
  --vz-text-numeral: clamp(3.5rem, 1.9rem + 6.4vw, 7.5rem);

  /* Space — 8px grid */
  --vz-space-half: 4px;
  --vz-space-1: 8px;
  --vz-space-2: 16px;
  --vz-space-3: 24px;
  --vz-space-4: 32px;
  --vz-space-5: 40px;
  --vz-space-6: 48px;
  --vz-space-8: 64px;
  --vz-space-12: 96px;
  --vz-space-16: 128px;
  --vz-section: clamp(72px, 48px + 6vw, 136px);
  --vz-gutter: 16px;

  /* Shape */
  --vz-radius-sm: 8px;
  --vz-radius: 12px;
  --vz-radius-lg: 20px;
  --vz-radius-pill: 999px;
  --vz-border: 1px solid var(--vz-sand);
  --vz-shadow-1: 0 1px 2px rgba(14, 26, 43, .05), 0 4px 16px rgba(14, 26, 43, .06);
  --vz-shadow-2: 0 2px 6px rgba(14, 26, 43, .06), 0 18px 48px rgba(14, 26, 43, .12);
  --vz-shadow-ink: 0 24px 64px rgba(0, 0, 0, .35);

  /* Layout */
  --vz-max: 1160px;
  --vz-header-h: 64px;

  /* Motion */
  --vz-ease: cubic-bezier(.2, .7, .2, 1);
  --vz-ease-spring: cubic-bezier(.34, 1.4, .64, 1);
  --vz-dur-1: 160ms;
  --vz-dur-2: 320ms;
  --vz-dur-3: 640ms;
}
@media (min-width: 768px) { :root { --vz-gutter: 32px; --vz-header-h: 72px; } }

/* 03 — BASE -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--vz-header-h) + 16px); }
body {
  margin: 0;
  background: var(--vz-paper);
  color: var(--vz-ink);
  font-family: var(--vz-font-sans);
  font-size: var(--vz-text-body);
  line-height: 1.6;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, canvas, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--vz-green); text-underline-offset: .2em; text-decoration-thickness: 1px; }
a:hover { color: var(--vz-green-hover); }
:focus-visible { outline: 2px solid var(--vz-focus); outline-offset: 3px; border-radius: 4px; }
.on-ink :focus-visible, .on-ink:focus-visible { outline-color: var(--vz-focus-on-ink); }
::selection { background: var(--vz-green); color: var(--vz-white); }
h1, h2, h3, h4 { margin: 0; font-family: var(--vz-font-serif); font-weight: 500; letter-spacing: -.015em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }
table { border-collapse: collapse; }
[hidden] { display: none !important; }

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--vz-ink); color: var(--vz-white); padding: 12px 16px; border-radius: var(--vz-radius-sm);
}
.skip-link:focus { top: 12px; color: var(--vz-white); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* 04 — LAYOUT ------------------------------------------------------------ */
.container { width: 100%; max-width: calc(var(--vz-max) + var(--vz-gutter) * 2); margin-inline: auto; padding-inline: var(--vz-gutter); }
.section { padding-block: var(--vz-section); position: relative; }
.section--tight { padding-block: calc(var(--vz-section) * .6); }
.section--ink { background: var(--vz-ink); color: var(--vz-on-ink); }
.section--white { background: var(--vz-white); }
.section-head { display: grid; gap: var(--vz-space-2); margin-bottom: var(--vz-space-6); max-width: 760px; }
.section-head--split { max-width: none; }
@media (min-width: 960px) {
  .section-head--split { grid-template-columns: 1.2fr 1fr; align-items: end; gap: var(--vz-space-8); }
}
.stack > * + * { margin-top: var(--vz-space-2); }
.grid { display: grid; gap: var(--vz-space-3); }

/* 05 — TYPE -------------------------------------------------------------- */
.display { font-size: var(--vz-text-display); line-height: 1.02; font-weight: 500; letter-spacing: -.025em; }
.h2 { font-size: var(--vz-text-h2); line-height: 1.06; letter-spacing: -.02em; }
.h3 { font-size: var(--vz-text-h3); line-height: 1.2; font-weight: 600; }
.h4 { font-family: var(--vz-font-sans); font-size: var(--vz-text-h4); line-height: 1.35; font-weight: 600; letter-spacing: -.01em; }
.lead { font-size: var(--vz-text-lead); line-height: 1.55; color: var(--vz-ink-muted); max-width: 60ch; }
.on-ink .lead, .section--ink .lead { color: var(--vz-on-ink-muted); }
.muted { color: var(--vz-ink-muted); }
.on-ink .muted, .section--ink .muted { color: var(--vz-on-ink-muted); }
.small { font-size: var(--vz-text-small); line-height: 1.5; }
.micro { font-size: var(--vz-text-micro); line-height: 1.4; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--vz-font-sans); font-size: var(--vz-text-micro); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--vz-green);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.section--ink .eyebrow, .on-ink .eyebrow { color: var(--vz-green-light); }
.serif-italic, em.accent { font-family: var(--vz-font-serif); font-style: italic; font-weight: 500; }
.numeral { font-family: var(--vz-font-serif); font-size: var(--vz-text-numeral); line-height: .9; font-weight: 500; letter-spacing: -.035em; font-variant-numeric: lining-nums tabular-nums; }
.tabular { font-variant-numeric: tabular-nums; }
.placeholder-note { font-size: var(--vz-text-micro); color: var(--vz-ink-muted); }

/* 06 — COMPONENTS -------------------------------------------------------- */
/* Buttons */
.btn {
  --btn-bg: var(--vz-green); --btn-fg: var(--vz-white); --btn-border: var(--vz-green);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px; border-radius: var(--vz-radius-pill);
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid var(--btn-border);
  font-family: var(--vz-font-sans); font-size: 1rem; font-weight: 600; line-height: 1.2; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform var(--vz-dur-2) var(--vz-ease), background-color var(--vz-dur-1), border-color var(--vz-dur-1), color var(--vz-dur-1);
  will-change: transform;
}
.btn:hover { --btn-bg: var(--vz-green-hover); --btn-border: var(--vz-green-hover); color: var(--btn-fg); }
.btn:active { transform: translateY(1px) scale(.99); }
.btn .btn__label { position: relative; display: inline-block; transition: transform var(--vz-dur-2) var(--vz-ease); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--lg { min-height: 56px; padding: 16px 28px; font-size: 1.0625rem; }
.btn--sm { min-height: 44px; padding: 10px 18px; font-size: .9375rem; }
.btn--secondary { --btn-bg: transparent; --btn-fg: var(--vz-ink); --btn-border: var(--vz-sand-strong); }
.btn--secondary:hover { --btn-bg: var(--vz-white); --btn-border: var(--vz-ink); --btn-fg: var(--vz-ink); }
.btn--ghost-ink { --btn-bg: transparent; --btn-fg: var(--vz-white); --btn-border: rgba(255,255,255,.32); }
.btn--ghost-ink:hover { --btn-bg: rgba(255,255,255,.08); --btn-border: var(--vz-white); --btn-fg: var(--vz-white); }
.btn--on-ink { --btn-bg: var(--vz-green-light); --btn-fg: var(--vz-ink); --btn-border: var(--vz-green-light); }
.btn--on-ink:hover { --btn-bg: #5FD0AB; --btn-border: #5FD0AB; --btn-fg: var(--vz-ink); }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; }
.text-link {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  font-weight: 600; color: var(--vz-ink); text-decoration: none;
}
.text-link:hover { color: var(--vz-green); }
.text-link .arrow { transition: transform var(--vz-dur-2) var(--vz-ease); }
.text-link:hover .arrow { transform: translateX(4px); }
.on-ink .text-link, .section--ink .text-link { color: var(--vz-white); }
.on-ink .text-link:hover, .section--ink .text-link:hover { color: var(--vz-green-light); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Badges */
.badge {
  font-family: var(--vz-font-sans);
  display: inline-flex; align-items: center; gap: 8px; min-height: 28px; padding: 4px 12px;
  border-radius: var(--vz-radius-pill); font-size: var(--vz-text-micro); font-weight: 600; letter-spacing: .02em;
  background: var(--vz-white); color: var(--vz-ink); border: 1px solid var(--vz-sand);
  white-space: nowrap;
}
.badge--green { background: var(--vz-green-tint); border-color: transparent; color: var(--vz-green); }
.badge--red { background: var(--vz-red-tint); border-color: transparent; color: var(--vz-red); }
.badge--ink { background: var(--vz-ink); border-color: var(--vz-ink); color: var(--vz-white); }
.badge--outline-ink { background: transparent; border-color: var(--vz-ink-line); color: var(--vz-on-ink); }
.badge--lang { font-family: var(--vz-font-sans); letter-spacing: .06em; text-transform: uppercase; }
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex: none; }
.badge--live .dot { animation: vz-pulse 1.6s var(--vz-ease) infinite; }

/* Cards */
.card {
  position: relative; background: var(--vz-white); border: var(--vz-border); border-radius: var(--vz-radius);
  box-shadow: var(--vz-shadow-1); padding: var(--vz-space-3);
}
.card--flat { box-shadow: none; }
.card--sand { background: var(--vz-paper); }
.card--ink { background: var(--vz-ink-raised); border-color: var(--vz-ink-line); color: var(--vz-on-ink); box-shadow: var(--vz-shadow-ink); }
.card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: var(--vz-space-2); }
.card__label { font-size: var(--vz-text-micro); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--vz-ink-muted); }
.card--ink .card__label { color: var(--vz-on-ink-muted); }

/* Tilt + highlight (JS sets --mx/--my/--rx/--ry) */
[data-tilt] { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform var(--vz-dur-3) var(--vz-ease); transform-style: preserve-3d; }
[data-tilt].is-tilting { transition: transform 120ms linear; }
[data-tilt]::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(61, 190, 149, .12), transparent 60%);
  opacity: 0; transition: opacity var(--vz-dur-2);
}
[data-tilt].is-tilting::after { opacity: 1; }

/* Form fields */
.field { display: grid; gap: 8px; }
.field__label { font-size: var(--vz-text-small); font-weight: 600; color: var(--vz-ink); }
.field__hint { font-size: var(--vz-text-micro); color: var(--vz-ink-muted); }
.field__error { font-size: var(--vz-text-micro); color: var(--vz-red); font-weight: 600; }
.input, .select, .textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border-radius: var(--vz-radius-sm);
  background: var(--vz-white); border: 1px solid var(--vz-sand-strong); color: var(--vz-ink);
  transition: border-color var(--vz-dur-1), box-shadow var(--vz-dur-1);
}
.input::placeholder, .textarea::placeholder { color: #69717E; }
.input:hover, .select:hover, .textarea:hover { border-color: var(--vz-ink-muted); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--vz-green); box-shadow: 0 0 0 3px rgba(12, 122, 94, .22); }
.input[aria-invalid="true"] { border-color: var(--vz-red); }
.checkbox { display: flex; align-items: flex-start; gap: 12px; min-height: 44px; font-size: var(--vz-text-small); cursor: pointer; }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--vz-green); }

/* Range slider */
.range { display: grid; gap: 10px; }
.range__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.range__value { font-family: var(--vz-font-serif); font-size: 1.5rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.range input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 44px; background: transparent; cursor: pointer; margin: 0;
  --fill: 50%;
}
.range input[type="range"]::-webkit-slider-runnable-track {
  height: 6px; border-radius: 6px;
  background: linear-gradient(to right, var(--vz-green) 0 var(--fill), var(--vz-sand) var(--fill) 100%);
}
.range input[type="range"]::-moz-range-track { height: 6px; border-radius: 6px; background: var(--vz-sand); }
.range input[type="range"]::-moz-range-progress { height: 6px; border-radius: 6px; background: var(--vz-green); }
.range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 26px; height: 26px; margin-top: -10px; border-radius: 50%;
  background: var(--vz-white); border: 2px solid var(--vz-green); box-shadow: 0 2px 8px rgba(14,26,43,.18);
  transition: transform var(--vz-dur-1);
}
.range input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--vz-white); border: 2px solid var(--vz-green); }
.range input[type="range"]:active::-webkit-slider-thumb { transform: scale(1.12); }
.range input[type="range"]:focus-visible { outline: none; }
.range input[type="range"]:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(12,122,94,.3); }
.range input[type="range"]:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 4px rgba(12,122,94,.3); }

/* Switch */
.switch { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; cursor: pointer; font-weight: 600; background: none; border: 0; padding: 0; }
.switch__track { position: relative; width: 56px; height: 32px; border-radius: 32px; background: var(--vz-red); transition: background-color var(--vz-dur-2); flex: none; }
.switch__thumb { position: absolute; top: 4px; left: 4px; width: 24px; height: 24px; border-radius: 50%; background: var(--vz-white); box-shadow: 0 2px 6px rgba(0,0,0,.2); transition: transform var(--vz-dur-2) var(--vz-ease-spring); }
.switch[aria-checked="true"] .switch__track { background: var(--vz-green); }
.switch[aria-checked="true"] .switch__thumb { transform: translateX(24px); }

/* Tabs (segmented) */
.tabs { display: inline-flex; flex-wrap: wrap; gap: 4px; padding: 4px; border-radius: var(--vz-radius-pill); background: var(--vz-white); border: var(--vz-border); }
.tab {
  min-height: 44px; padding: 10px 18px; border-radius: var(--vz-radius-pill); border: 0; background: transparent;
  font-weight: 600; font-size: .9375rem; color: var(--vz-ink-muted); cursor: pointer;
  transition: background-color var(--vz-dur-2), color var(--vz-dur-2);
}
.tab:hover { color: var(--vz-ink); }
.tab[aria-selected="true"] { background: var(--vz-ink); color: var(--vz-white); }
.tabs--ink { background: rgba(255,255,255,.06); border-color: var(--vz-ink-line); }
.tabs--ink .tab { color: var(--vz-on-ink-muted); }
.tabs--ink .tab:hover { color: var(--vz-white); }
.tabs--ink .tab[aria-selected="true"] { background: var(--vz-white); color: var(--vz-ink); }

/* Icons (line icons, 24px grid, 1.5 stroke) */
.icon { width: 24px; height: 24px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon--lg { width: 32px; height: 32px; }
.icon-tile {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: var(--vz-radius);
  background: var(--vz-green-tint); color: var(--vz-green);
}
.section--ink .icon-tile { background: rgba(61, 190, 149, .12); color: var(--vz-green-light); }

/* Tables */
.table { width: 100%; font-size: var(--vz-text-small); }
.table th, .table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--vz-sand); vertical-align: top; }
.table thead th { font-size: var(--vz-text-micro); letter-spacing: .1em; text-transform: uppercase; color: var(--vz-ink-muted); font-weight: 600; }
.table tbody th { font-weight: 600; }
.table tbody tr:last-child > * { border-bottom: 0; }
.table-wrap { position: relative; background: var(--vz-white); border: var(--vz-border); border-radius: var(--vz-radius); overflow: hidden; }

/* Status marks */
.mark-yes, .mark-no, .mark-part { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.mark-yes { color: var(--vz-green); }
.mark-no { color: var(--vz-red); }
.mark-part { color: var(--vz-ink-muted); }
.mark-yes svg, .mark-no svg, .mark-part svg { width: 18px; height: 18px; flex: none; }

/* 07 — HEADER ------------------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--vz-header-h);
  color: var(--vz-ink);
  transition: background-color var(--vz-dur-2), color var(--vz-dur-2), box-shadow var(--vz-dur-2), transform var(--vz-dur-2) var(--vz-ease);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; background: rgba(247, 244, 238, .88);
  -webkit-backdrop-filter: saturate(1.4) blur(14px); backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--vz-sand); opacity: 1; transition: opacity var(--vz-dur-2);
}
.site-header.is-over-ink { color: var(--vz-white); }
.site-header.is-over-ink::before { opacity: 0; }
.site-header.is-over-ink.is-scrolled::before { opacity: 1; background: rgba(14, 26, 43, .82); border-bottom-color: var(--vz-ink-line); }
.site-header__inner { position: relative; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; min-height: 44px; color: inherit; text-decoration: none; }
.brand:hover { color: inherit; }
.logo { height: 32px; width: auto; overflow: visible; }
.logo .logo__s1 { stroke: currentColor; }
.logo .logo__s2 { stroke: var(--vz-green); }
.logo .logo__word { fill: currentColor; }
.is-over-ink .logo .logo__s2, .on-ink .logo .logo__s2 { stroke: var(--vz-green-light); }
.logo .logo__waves path { stroke: var(--vz-green); opacity: 0; transform-box: fill-box; transform-origin: 0% 100%; transform: scale(.4); transition: opacity var(--vz-dur-2), transform var(--vz-dur-2) var(--vz-ease-spring); }
.is-over-ink .logo .logo__waves path, .on-ink .logo .logo__waves path { stroke: var(--vz-green-light); }
.logo .logo__mark { transform-box: fill-box; transform-origin: 40% 90%; transition: transform var(--vz-dur-3) var(--vz-ease-spring); }
.brand:hover .logo__mark, .brand:focus-visible .logo__mark { transform: rotate(-4deg) scale(1.04); }
.brand:hover .logo__waves path, .brand:focus-visible .logo__waves path { opacity: 1; transform: scale(1); animation: vz-wave-ping 1.2s var(--vz-ease) infinite; }
.brand:hover .logo__waves path:nth-child(2), .brand:focus-visible .logo__waves path:nth-child(2) { animation-delay: .18s; }

.nav { display: none; }
.nav__list { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav__link { display: inline-flex; align-items: center; min-height: 44px; padding: 0 12px; border-radius: var(--vz-radius-pill); color: inherit; text-decoration: none; font-size: .9375rem; font-weight: 500; }
.nav__link:hover { color: inherit; background: rgba(14, 26, 43, .06); }
.is-over-ink .nav__link:hover { background: rgba(255,255,255,.08); }
.nav__link[aria-current="page"] { font-weight: 600; box-shadow: inset 0 -2px 0 currentColor; border-radius: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions .text-link { color: inherit; font-size: .9375rem; }
.header-actions .text-link:hover { color: inherit; opacity: .8; }

.lang-switch { display: inline-flex; align-items: center; gap: 2px; font-size: var(--vz-text-micro); font-weight: 600; letter-spacing: .08em; }
.lang-switch a, .lang-switch span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; min-height: 44px; padding: 0 6px; color: inherit; text-decoration: none; }
.lang-switch [aria-current="true"] { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.lang-switch .is-disabled { opacity: .55; cursor: not-allowed; position: relative; }
.lang-switch .is-disabled .soon { position: absolute; top: calc(100% - 6px); left: 50%; transform: translate(-50%, 4px); white-space: nowrap; font-size: 11px; letter-spacing: .02em; background: var(--vz-ink); color: var(--vz-white); padding: 4px 8px; border-radius: 6px; opacity: 0; pointer-events: none; transition: opacity var(--vz-dur-1), transform var(--vz-dur-1); }
.lang-switch .is-disabled:hover .soon, .lang-switch .is-disabled:focus .soon { opacity: 1; transform: translate(-50%, 0); }
.lang-switch .sep { min-width: auto; opacity: .4; }

.menu-toggle {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid currentColor; border-color: rgba(127,127,127,.35); background: transparent; color: inherit; cursor: pointer;
}
.menu-toggle .bars { position: relative; width: 18px; height: 12px; }
.menu-toggle .bars span { position: absolute; left: 0; width: 100%; height: 1.5px; background: currentColor; border-radius: 2px; transition: transform var(--vz-dur-2) var(--vz-ease), opacity var(--vz-dur-1); }
.menu-toggle .bars span:nth-child(1) { top: 0; }
.menu-toggle .bars span:nth-child(2) { top: 5px; }
.menu-toggle .bars span:nth-child(3) { top: 10px; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--vz-header-h) 0 0 0; z-index: 49; background: var(--vz-ink); color: var(--vz-white);
  padding: 24px var(--vz-gutter) 40px; display: flex; flex-direction: column; gap: 24px; overflow-y: auto;
  opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity var(--vz-dur-2), transform var(--vz-dur-2) var(--vz-ease);
}
.mobile-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav ul { list-style: none; display: grid; }
.mobile-nav ul a { display: flex; align-items: center; justify-content: space-between; min-height: 56px; font-family: var(--vz-font-serif); font-size: 1.75rem; color: var(--vz-white); text-decoration: none; border-bottom: 1px solid var(--vz-ink-line); }
.mobile-nav ul a:hover { color: var(--vz-green-light); }
.mobile-nav .btn { width: 100%; }
.header-cta-mobile { display: none; }
@media (min-width: 420px) { .header-cta-mobile { display: inline-flex; } }
@media (min-width: 1080px) {
  .nav { display: block; }
  .menu-toggle, .mobile-nav { display: none !important; }
}
.header-desktop-only { display: none; }
@media (min-width: 1080px) { .header-desktop-only { display: inline-flex; } }

/* 08 — HERO (night shift) ------------------------------------------------ */
.hero {
  position: relative; background: var(--vz-ink); color: var(--vz-white);
  padding-top: calc(var(--vz-header-h) + clamp(32px, 6vw, 72px));
  padding-bottom: clamp(96px, 12vw, 160px);
  isolation: isolate; overflow: clip;
}
.hero__grid { display: grid; gap: var(--vz-space-6); align-items: start; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: var(--vz-space-6); align-items: start; } .hero .live-call { margin-top: 56px; } }
.hero__copy { display: grid; gap: var(--vz-space-3); }
.hero__clock { display: inline-flex; align-items: center; gap: 12px; font-size: var(--vz-text-small); color: var(--vz-on-ink-muted); font-variant-numeric: tabular-nums; }
.hero__clock b { color: var(--vz-white); font-weight: 600; }
.hero h1 { font-size: clamp(2.5rem, 1.1rem + 3.6vw, 4rem); line-height: 1.02; letter-spacing: -.028em; font-weight: 500; }
.hero h1 .line { display: block; }
.hero h1 .accent-word { font-style: italic; color: var(--vz-green-light); }
.hero h1 .underline-wave { position: relative; display: inline-block; white-space: nowrap; }
.hero h1 .underline-wave svg { position: absolute; left: 0; right: 0; bottom: -.12em; width: 100%; height: .22em; overflow: visible; }
.hero h1 .underline-wave path { fill: none; stroke: var(--vz-green-light); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 0; }
.hero__sub { font-size: var(--vz-text-lead); color: var(--vz-on-ink-muted); max-width: 54ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--vz-space-1); }
.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: var(--vz-space-2); font-size: var(--vz-text-small); color: var(--vz-on-ink-muted); }
.trust-row li { display: inline-flex; align-items: center; gap: 8px; }
.trust-row li svg { width: 16px; height: 16px; color: var(--vz-green-light); }
.hero__stars { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5; }
/* Wave edge: Ink → Paper */
.wave-edge { position: absolute; left: 0; right: 0; bottom: -1px; height: clamp(48px, 7vw, 96px); color: var(--vz-paper); pointer-events: none; }
.wave-edge svg { width: 100%; height: 100%; }
.wave-edge path { fill: currentColor; }
.dawn-line { position: absolute; left: 0; right: 0; bottom: clamp(48px, 7vw, 96px); height: 1px; background: linear-gradient(90deg, transparent, rgba(61,190,149,.4), transparent); }

/* Audio sample player */
.sample-player { display: grid; gap: 12px; padding: 16px; border-radius: var(--vz-radius); border: 1px solid var(--vz-ink-line); background: rgba(255,255,255,.04); max-width: 520px; }
.sample-player__row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.play-btn {
  display: inline-grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--vz-green-light); color: var(--vz-ink); transition: transform var(--vz-dur-2) var(--vz-ease);
}
.play-btn:hover { transform: scale(1.06); }
.play-btn svg { width: 20px; height: 20px; }
.play-btn .i-pause { display: none; }
.play-btn[aria-pressed="true"] .i-play { display: none; }
.play-btn[aria-pressed="true"] .i-pause { display: block; }
.sample-player__meta { display: grid; gap: 2px; min-width: 0; flex: 1; }
.sample-player__title { font-weight: 600; font-size: .9375rem; }
.sample-player__progress { height: 4px; border-radius: 4px; background: rgba(255,255,255,.12); overflow: hidden; }
.sample-player__progress span { display: block; height: 100%; width: 100%; background: var(--vz-green-light); transform-origin: left; transform: scaleX(0); }
.sample-player .tabs { padding: 3px; }
.sample-player .tab { min-height: 44px; padding: 10px 14px; font-size: .875rem; }
.sample-player__note { font-size: var(--vz-text-micro); color: var(--vz-on-ink-muted); }
/* Light variant (paper pages) */
.sample-player--light { background: var(--vz-white); border: var(--vz-border); color: var(--vz-ink); }
.sample-player--light .play-btn { background: var(--vz-green); color: var(--vz-white); }
.sample-player--light .sample-player__progress { background: var(--vz-sand); }
.sample-player--light .sample-player__progress span { background: var(--vz-green); }
.sample-player--light .sample-player__note { color: var(--vz-ink-muted); }

/* 09 — LIVE CALL WIDGET -------------------------------------------------- */
.live-call { position: relative; display: grid; gap: 12px; }
.call-card {
  position: relative; border-radius: var(--vz-radius-lg); background: var(--vz-ink-raised); border: 1px solid var(--vz-ink-line);
  box-shadow: var(--vz-shadow-ink); overflow: hidden;
}
.call-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--vz-ink-line); }
.call-card__who { display: flex; align-items: center; gap: 12px; min-width: 0; }
.call-avatar { position: relative; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(61,190,149,.14); color: var(--vz-green-light); flex: none; }
.call-avatar svg { width: 20px; height: 20px; }
.call-avatar::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--vz-green-light); opacity: 0; }
.live-call[data-state="ringing"] .call-avatar::after { animation: vz-ring 1.2s var(--vz-ease) infinite; }
.call-card__num { font-weight: 600; font-size: .9375rem; font-variant-numeric: tabular-nums; }
.call-card__status { font-size: var(--vz-text-micro); color: var(--vz-on-ink-muted); }
.call-card__timer { font-variant-numeric: tabular-nums; font-size: var(--vz-text-small); color: var(--vz-on-ink-muted); }
.wave-canvas-wrap { position: relative; height: 96px; padding: 28px 16px 8px; border-bottom: 1px solid var(--vz-ink-line); }
.wave-canvas-wrap canvas { width: 100%; height: 100%; }
.wave-legend { position: absolute; left: 16px; top: 8px; display: flex; gap: 12px; font-size: 11px; color: var(--vz-on-ink-muted); }
.wave-legend span { display: inline-flex; align-items: center; gap: 6px; }
.wave-legend i { width: 10px; height: 2px; border-radius: 2px; background: var(--vz-green-light); }
.wave-legend .caller i { background: var(--vz-white); }
.transcript {
  list-style: none; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  height: 300px; padding: 16px; overflow: hidden; font-size: .9375rem; line-height: 1.5;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 56px); mask-image: linear-gradient(to bottom, transparent 0, #000 56px);
}
.transcript li { display: grid; gap: 2px; max-width: 92%; animation: vz-rise var(--vz-dur-2) var(--vz-ease) both; }
.transcript .who { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--vz-on-ink-muted); display: flex; align-items: center; gap: 8px; }
.transcript .who .lang { padding: 1px 6px; border-radius: 4px; border: 1px solid var(--vz-ink-line); letter-spacing: .06em; }
.transcript .agent .who { color: var(--vz-green-light); }
.transcript .caller { align-self: flex-end; text-align: right; }
.transcript .caller .who { justify-content: flex-end; }
.transcript .text { color: var(--vz-white); }
.transcript .typing::after { content: ""; display: inline-block; width: 2px; height: 1em; margin-left: 2px; vertical-align: -2px; background: var(--vz-green-light); animation: vz-blink .9s steps(1) infinite; }
.lang-flip { position: absolute; left: 50%; top: 144px; transform: translate(-50%, -8px); opacity: 0; z-index: 3; transition: opacity var(--vz-dur-2), transform var(--vz-dur-2) var(--vz-ease-spring); }
.lang-flip.is-on { opacity: 1; transform: translate(-50%, 0); }
.lang-flip .badge { background: var(--vz-green-light); color: var(--vz-ink); border-color: transparent; box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.call-card__controls { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 12px; border-top: 1px solid var(--vz-ink-line); }
.icon-btn { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; min-width: 44px; padding: 0 12px; border-radius: var(--vz-radius-pill); border: 0; background: transparent; color: var(--vz-on-ink-muted); font-size: var(--vz-text-small); font-weight: 600; cursor: pointer; }
.icon-btn:hover { color: var(--vz-white); background: rgba(255,255,255,.06); }
.icon-btn svg { width: 18px; height: 18px; }

/* Summary card (assembles at end of live call; also used standalone) */
.summary-card { position: relative; background: var(--vz-white); color: var(--vz-ink); border: var(--vz-border); border-radius: var(--vz-radius); box-shadow: var(--vz-shadow-2); padding: 20px; }
.summary-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.summary-card__title { font-family: var(--vz-font-serif); font-size: 1.375rem; font-weight: 600; line-height: 1.2; }
.summary-card__time { font-size: var(--vz-text-micro); color: var(--vz-ink-muted); font-variant-numeric: tabular-nums; }
.summary-list { display: grid; gap: 0; margin: 0; }
.summary-list > div { display: grid; grid-template-columns: 116px 1fr; gap: 12px; padding: 10px 0; border-top: 1px solid var(--vz-sand); font-size: var(--vz-text-small); }
.summary-list dt { color: var(--vz-ink-muted); font-weight: 500; }
.summary-list dd { margin: 0; font-weight: 500; }
.summary-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--vz-sand); }
.sent-to { display: inline-flex; align-items: center; gap: 8px; font-size: var(--vz-text-small); font-weight: 600; color: var(--vz-green); }
.sent-to svg { width: 18px; height: 18px; }
.live-call .summary-card { position: absolute; left: 12px; right: 12px; top: 12px; z-index: 4; padding: 16px; }
.live-call .summary-card .summary-list > div { grid-template-columns: 96px 1fr; padding: 7px 0; }
.live-call .summary-card [data-assemble] { opacity: 0; transform: translateY(10px); transition: opacity var(--vz-dur-2), transform var(--vz-dur-2) var(--vz-ease); }
.live-call .summary-card [data-assemble].is-in { opacity: 1; transform: none; }
.live-call .summary-card { opacity: 0; transform: translateY(24px) scale(.98); pointer-events: none; transition: opacity var(--vz-dur-3) var(--vz-ease), transform var(--vz-dur-3) var(--vz-ease); }
.live-call[data-state="summary"] .summary-card { opacity: 1; transform: none; pointer-events: auto; }
.live-caption { font-size: var(--vz-text-micro); color: var(--vz-on-ink-muted); text-align: right; }

/* 10 — CALCULATOR -------------------------------------------------------- */
.calc { display: grid; gap: var(--vz-space-3); }
@media (min-width: 960px) { .calc { grid-template-columns: 5fr 7fr; } }
.calc__inputs { display: grid; gap: var(--vz-space-3); padding: var(--vz-space-4) var(--vz-space-3); }
@media (min-width: 768px) { .calc__inputs { padding: var(--vz-space-5); } }
.calc__out {
  position: relative; display: grid; align-content: space-between; gap: var(--vz-space-4); overflow: hidden;
  padding: var(--vz-space-4) var(--vz-space-3); border-radius: var(--vz-radius); background: var(--vz-white); border: var(--vz-border);
  box-shadow: var(--vz-shadow-1);
}
@media (min-width: 768px) { .calc__out { padding: var(--vz-space-6); } }
.calc__out::before { content: ""; position: absolute; inset: 0; background: var(--vz-red-tint); opacity: 1; transition: opacity var(--vz-dur-3); z-index: 0; }
.calc__out.is-on::before { opacity: 0; }
.calc__out::after { content: ""; position: absolute; inset: 0; background: var(--vz-green-tint); opacity: 0; transition: opacity var(--vz-dur-3); z-index: 0; }
.calc__out.is-on::after { opacity: 1; }
.calc__out > * { position: relative; z-index: 1; }
.calc__label { font-weight: 600; font-size: var(--vz-text-small); color: var(--vz-ink); }
.calc__state-off, .calc__state-on { transition: opacity var(--vz-dur-2); }
.calc__out:not(.is-on) .calc__state-on, .calc__out.is-on .calc__state-off { display: none; }
.odometer { display: inline-flex; align-items: flex-start; font-family: var(--vz-font-serif); font-size: clamp(3rem, 1.6rem + 6.6vw, 6.75rem); line-height: 1; font-weight: 500; letter-spacing: -.03em; color: var(--vz-red); transition: color var(--vz-dur-3); height: 1em; overflow: hidden; font-variant-numeric: lining-nums tabular-nums; }
.calc__out.is-on .odometer { color: var(--vz-green); }
.odometer__col { display: inline-block; height: 1em; overflow: hidden; }
.odometer__strip { display: flex; flex-direction: column; transition: transform 900ms var(--vz-ease); }
.odometer__strip span, .odometer__sym { display: block; height: 1em; line-height: 1; }
.odometer__sym { width: auto; }
.calc__per { font-size: var(--vz-text-small); color: var(--vz-ink-muted); }
.calc__stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.calc__stat { padding: 14px 16px; border-radius: var(--vz-radius-sm); background: rgba(255,255,255,.72); border: 1px solid rgba(14,26,43,.08); }
.calc__stat b { display: block; font-family: var(--vz-font-serif); font-size: 1.75rem; font-weight: 600; line-height: 1.1; font-variant-numeric: tabular-nums; }
.calc__stat span { font-size: var(--vz-text-micro); color: var(--vz-ink-muted); }
.calc__stat--missed b { color: var(--vz-red); transition: color var(--vz-dur-3); }
.calc__out.is-on .calc__stat--missed b { color: var(--vz-green); }
.missed-dots { display: flex; flex-wrap: wrap; gap: 5px; min-height: 12px; }
.missed-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--vz-red); transition: background-color var(--vz-dur-3), transform var(--vz-dur-2) var(--vz-ease-spring); }
.calc__out.is-on .missed-dots i { background: var(--vz-green); transform: scale(.85); }
.calc__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }

/* 11 — HOW IT WORKS + LIFE OF A CALL ------------------------------------ */
.steps { list-style: none; display: grid; gap: var(--vz-space-3); counter-reset: step; position: relative; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--vz-space-4); } }
.step { position: relative; display: grid; gap: 12px; align-content: start; padding-top: var(--vz-space-3); border-top: 1px solid var(--vz-ink); }
.step__num { font-family: var(--vz-font-serif); font-size: 4.5rem; line-height: .9; font-weight: 500; color: var(--vz-green); letter-spacing: -.04em; }
.step__mini { margin-top: 8px; padding: 14px 16px; border-radius: var(--vz-radius); background: var(--vz-white); border: var(--vz-border); font-size: var(--vz-text-small); display: grid; gap: 8px; }
.step__mini .row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.step__mini .mono { font-variant-numeric: tabular-nums; font-weight: 600; }

.story { position: relative; margin-top: var(--vz-section); }
.story__head { margin-bottom: var(--vz-space-4); }
.story__layout { display: grid; gap: var(--vz-space-4); }
.story__stage-wrap { position: sticky; top: calc(var(--vz-header-h) + 8px); z-index: 2; }
.story__stage {
  position: relative; height: 300px; border-radius: var(--vz-radius-lg); background: var(--vz-ink); color: var(--vz-white);
  overflow: hidden; box-shadow: var(--vz-shadow-2);
}
.story__clock { position: absolute; left: 16px; top: 14px; z-index: 3; display: flex; align-items: baseline; gap: 10px; font-variant-numeric: tabular-nums; }
.story__clock b { font-family: var(--vz-font-serif); font-size: 1.75rem; font-weight: 500; }
.story__clock span { font-size: var(--vz-text-micro); color: var(--vz-on-ink-muted); letter-spacing: .08em; text-transform: uppercase; }
.story__progress { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 3; display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.story__progress i { height: 3px; border-radius: 3px; background: rgba(255,255,255,.16); overflow: hidden; position: relative; }
.story__progress i::after { content: ""; position: absolute; inset: 0; background: var(--vz-green-light); transform: scaleX(0); transform-origin: left; transition: transform var(--vz-dur-3) var(--vz-ease); }
.story__progress i.is-done::after { transform: scaleX(1); }
.scene { position: absolute; inset: 56px 16px 32px; display: grid; place-items: center; opacity: 0; transform: translateY(16px) scale(.98); transition: opacity var(--vz-dur-3) var(--vz-ease), transform var(--vz-dur-3) var(--vz-ease); pointer-events: none; }
.scene.is-active { opacity: 1; transform: none; }
.scene__inner { width: 100%; max-width: 420px; }
/* scene 1: ringing phone */
.ring-phone { position: relative; display: grid; place-items: center; width: 136px; height: 136px; margin: 0 auto; }
.ring-phone .core { position: relative; z-index: 2; display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: var(--vz-green-light); color: var(--vz-ink); }
.ring-phone .core svg { width: 30px; height: 30px; }
.ring-phone .ring { position: absolute; inset: 32px; border-radius: 50%; border: 1.5px solid var(--vz-green-light); opacity: 0; }
.scene.is-active .ring-phone .ring { animation: vz-ring-out 2.1s var(--vz-ease) infinite; }
.scene.is-active .ring-phone .ring:nth-child(2) { animation-delay: .7s; }
.scene.is-active .ring-phone .ring:nth-child(3) { animation-delay: 1.4s; }
.scene.is-active .ring-phone .core { animation: vz-shake 1.4s ease-in-out infinite; }
.ring-caption { text-align: center; margin-top: 12px; font-size: var(--vz-text-small); color: var(--vz-on-ink-muted); }
.ring-caption b { color: var(--vz-white); display: block; font-size: 1rem; }
/* scene 2: answer bubble */
.bubble { padding: 14px 16px; border-radius: 14px 14px 14px 4px; background: var(--vz-ink-raised); border: 1px solid var(--vz-ink-line); font-size: .9375rem; }
.bubble + .bubble { margin-top: 10px; }
.bubble--caller { margin-left: auto; border-radius: 14px 14px 4px 14px; background: rgba(255,255,255,.08); max-width: 80%; }
.bubble .who { display: block; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--vz-green-light); margin-bottom: 4px; }
.bubble--caller .who { color: var(--vz-on-ink-muted); }
/* scene 3: intake checklist */
.intake-list { list-style: none; display: grid; gap: 8px; }
.intake-list li { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; background: var(--vz-ink-raised); border: 1px solid var(--vz-ink-line); font-size: .9375rem; }
.intake-list .tick { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--vz-green-light); color: var(--vz-ink); flex: none; }
.intake-list .tick svg { width: 14px; height: 14px; opacity: 0; transform: scale(.4); transition: opacity var(--vz-dur-2), transform var(--vz-dur-2) var(--vz-ease-spring); }
.scene.is-active .intake-list .tick { background: var(--vz-green-light); transition: background-color var(--vz-dur-2); }
.scene.is-active .intake-list .tick svg { opacity: 1; transform: none; }
.scene.is-active .intake-list li:nth-child(2) .tick, .scene.is-active .intake-list li:nth-child(2) .tick svg { transition-delay: .25s; }
.scene.is-active .intake-list li:nth-child(3) .tick, .scene.is-active .intake-list li:nth-child(3) .tick svg { transition-delay: .5s; }
.scene.is-active .intake-list li:nth-child(4) .tick, .scene.is-active .intake-list li:nth-child(4) .tick svg { transition-delay: .75s; }
.intake-list .ans { margin-left: auto; font-size: var(--vz-text-micro); color: var(--vz-on-ink-muted); text-align: right; }
/* scene 4: calendar */
.mini-cal { background: var(--vz-white); color: var(--vz-ink); border-radius: var(--vz-radius); padding: 14px; }
.mini-cal__head { display: flex; justify-content: space-between; font-weight: 600; font-size: var(--vz-text-small); margin-bottom: 10px; }
.mini-cal__grid { display: grid; grid-template-columns: 44px repeat(3, 1fr); gap: 4px; font-size: 11px; }
.mini-cal__grid .t { color: var(--vz-ink-muted); padding-top: 4px; font-variant-numeric: tabular-nums; }
.mini-cal__grid .d { font-weight: 600; text-align: center; color: var(--vz-ink-muted); }
.mini-cal__grid .slot { height: 28px; border-radius: 6px; background: var(--vz-paper); border: 1px solid var(--vz-sand); }
.mini-cal__grid .slot.busy { background: repeating-linear-gradient(135deg, var(--vz-sand) 0 4px, var(--vz-paper) 4px 8px); }
.mini-cal__grid .slot.booked { position: relative; background: var(--vz-green); border-color: var(--vz-green); color: var(--vz-white); font-weight: 600; display: flex; align-items: center; padding: 0 6px; font-size: 10.5px; white-space: nowrap; overflow: hidden; transform: scale(.6); opacity: 0; transition: transform var(--vz-dur-3) var(--vz-ease-spring) .2s, opacity var(--vz-dur-2) .2s; }
.scene.is-active .mini-cal__grid .slot.booked { transform: none; opacity: 1; }
/* scene 5: inbox */
.inbox { display: grid; gap: 8px; }
.inbox__item { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 12px; background: var(--vz-white); color: var(--vz-ink); font-size: var(--vz-text-small); }
.inbox__item.is-new { box-shadow: 0 0 0 2px var(--vz-green-light); transform: translateY(-12px); opacity: 0; transition: transform var(--vz-dur-3) var(--vz-ease-spring) .15s, opacity var(--vz-dur-2) .15s; }
.scene.is-active .inbox__item.is-new { transform: none; opacity: 1; }
.inbox__item.is-old { opacity: .8; }
.inbox__item .ico { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 8px; background: var(--vz-green-tint); color: var(--vz-green); }
.inbox__item .ico svg { width: 18px; height: 18px; }
.inbox__item b { display: block; font-weight: 600; line-height: 1.3; }
.inbox__item small { color: var(--vz-ink-muted); }
.inbox__item time { font-size: 11px; color: var(--vz-ink-muted); font-variant-numeric: tabular-nums; }

.story__steps { list-style: none; display: grid; }
.story-step { position: relative; min-height: 64vh; display: grid; align-content: center; gap: 12px; padding: 24px 0 24px 24px; }
.story-step::before { content: ""; position: absolute; left: 0; top: 50%; width: 3px; height: 120px; margin-top: -60px; border-radius: 3px; background: var(--vz-sand); }
.story-step::after { content: ""; position: absolute; left: 0; top: 50%; width: 3px; height: 120px; margin-top: -60px; border-radius: 3px; background: var(--vz-green); transform: scaleY(0); transform-origin: top; transition: transform var(--vz-dur-3) var(--vz-ease); }
.story-step.is-active::after { transform: scaleY(1); }
.story-step h3 { color: var(--vz-ink-muted); transition: color var(--vz-dur-2); }
.story-step.is-active h3 { color: var(--vz-ink); }
.story-step__time { font-variant-numeric: tabular-nums; font-weight: 600; font-size: var(--vz-text-small); color: var(--vz-green); }
.story-step h3 { font-size: var(--vz-text-h3); font-weight: 600; line-height: 1.2; }
.story-step p { color: var(--vz-ink-muted); max-width: 46ch; }
.story-step:first-child { min-height: 40vh; }
.story-step:last-child { min-height: 70vh; }
@media (min-width: 960px) {
  .story__layout { grid-template-columns: 1fr 1fr; gap: var(--vz-space-8); align-items: start; }
  .story__stage-wrap { top: calc(var(--vz-header-h) + (100vh - var(--vz-header-h) - 480px) / 2); order: 2; }
  .story__stage { height: 480px; }
  .scene { inset: 72px 32px 48px; }
  .story__clock { left: 24px; top: 20px; }
  .story__clock b { font-size: 2.25rem; }
  .story__progress { left: 24px; right: 24px; bottom: 20px; }
  .story-step { min-height: 76vh; }
  .story-step:first-child { min-height: 60vh; }
}


/* 12 — PRACTICE SWITCHER ------------------------------------------------- */
.switcher { display: grid; gap: var(--vz-space-3); }
.switcher__tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; margin-inline: calc(var(--vz-gutter) * -1); padding-inline: var(--vz-gutter); }
.switcher__tabs::-webkit-scrollbar { display: none; }
.switcher__tabs .tabs { flex-wrap: nowrap; }
.switcher__tabs .tab { white-space: nowrap; }
@media (min-width: 768px) { .switcher__tabs { margin: 0; padding: 0; overflow: visible; } }
.switcher__panels { position: relative; }
.switcher__panel { display: grid; gap: var(--vz-space-3); }
@media (min-width: 960px) { .switcher__panel { grid-template-columns: 5fr 7fr; gap: var(--vz-space-3); } }
.js .switcher__panel { animation: vz-morph-in var(--vz-dur-3) var(--vz-ease) both; }
.js .switcher__panel[hidden] { display: none; }
.intake-card { display: grid; gap: var(--vz-space-2); align-content: start; }
.intake-card__title { font-family: var(--vz-font-serif); font-size: var(--vz-text-h3); font-weight: 600; line-height: 1.15; }
.q-list { list-style: none; display: grid; gap: 0; counter-reset: q; }
.q-list li { counter-increment: q; display: grid; grid-template-columns: 36px 1fr; gap: 8px; padding: 14px 0; border-top: 1px solid var(--vz-sand); }
.q-list li::before { content: counter(q, decimal-leading-zero); font-family: var(--vz-font-serif); font-size: 1.25rem; color: var(--vz-green); font-weight: 600; line-height: 1.3; }
.q-list .q-meta { display: block; font-size: var(--vz-text-micro); color: var(--vz-ink-muted); margin-top: 2px; }
.urgent-rule { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border-radius: var(--vz-radius-sm); background: var(--vz-paper); border: var(--vz-border); font-size: var(--vz-text-small); }
.urgent-rule svg { width: 20px; height: 20px; color: var(--vz-red); flex: none; margin-top: 2px; }
.transcript-card { background: var(--vz-ink); color: var(--vz-white); border-radius: var(--vz-radius); padding: var(--vz-space-3); display: flex; flex-direction: column; gap: 14px; border: 0; }
.transcript-card .t-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--vz-ink-line); display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; justify-content: space-between; }
.transcript-card .t-foot .sent-to { color: var(--vz-green-light); }
.transcript-card .t-line { display: grid; grid-template-columns: 72px 1fr; gap: 12px; font-size: .9375rem; }
.transcript-card .t-who { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--vz-on-ink-muted); padding-top: 4px; }
.transcript-card .t-line.agent .t-who { color: var(--vz-green-light); }
.transcript-card .t-es { display: block; color: var(--vz-on-ink-muted); font-size: var(--vz-text-small); font-style: italic; margin-top: 2px; }

/* 13 — SAMPLE SUMMARY SECTION -------------------------------------------- */
.summary-split { display: grid; gap: var(--vz-space-6); align-items: center; }
@media (min-width: 960px) { .summary-split { grid-template-columns: 5fr 7fr; gap: var(--vz-space-8); } }
.summary-points { list-style: none; display: grid; gap: 14px; }
.summary-points li { display: flex; gap: 12px; align-items: flex-start; }
.summary-points svg { width: 20px; height: 20px; color: var(--vz-green); flex: none; margin-top: 3px; }
.summary-split > * { min-width: 0; }
.summary-stage { position: relative; }
.summary-stage .summary-card { padding: var(--vz-space-3); }
@media (min-width: 768px) { .summary-stage .summary-card { padding: var(--vz-space-4); } .summary-stage .summary-list > div { grid-template-columns: 160px 1fr; } .summary-stage__behind { right: -12px; } }
@media (max-width: 559px) {
  .transcript { height: 380px; }
  .summary-card__head { flex-direction: column; gap: 4px; }
  .live-call .summary-card { padding: 14px; }
  .live-call .summary-card .summary-card__title { font-size: 1.1875rem; }
}
@media (max-width: 400px) { .summary-list > div { grid-template-columns: 1fr; gap: 2px; } .live-call .summary-card .summary-list > div { grid-template-columns: 84px 1fr; gap: 8px; } }
.summary-stage__behind { position: absolute; inset: 20px 0 -16px 24px; border-radius: var(--vz-radius); background: var(--vz-sand); z-index: -1; transform: rotate(2deg); }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { display: inline-flex; align-items: center; min-height: 26px; padding: 2px 10px; border-radius: 6px; background: var(--vz-paper); border: 1px solid var(--vz-sand); font-size: var(--vz-text-micro); font-weight: 600; }

/* 14 — COMPARE TABLE ----------------------------------------------------- */
.compare { position: relative; background: var(--vz-white); border: var(--vz-border); border-radius: var(--vz-radius); overflow: hidden; }
.compare table { width: 100%; }
.compare caption { text-align: left; }
.compare th, .compare td { padding: 16px; text-align: left; border-bottom: 1px solid var(--vz-sand); font-size: var(--vz-text-small); vertical-align: middle; }
.compare thead th { font-family: var(--vz-font-serif); font-size: 1.25rem; font-weight: 600; letter-spacing: -.01em; }
.compare thead th.is-us { color: var(--vz-green); }
.compare .is-us { background: rgba(12, 122, 94, .05); }
.compare thead th.is-us .badge { margin-left: 8px; vertical-align: middle; }
.compare tbody th { font-weight: 600; color: var(--vz-ink); width: 24%; }
.compare tbody tr:last-child > * { border-bottom: 0; }
.compare .big { font-family: var(--vz-font-serif); font-size: 1.375rem; font-weight: 600; font-variant-numeric: tabular-nums; }
@media (max-width: 719px) {
  .compare table, .compare tbody, .compare tr, .compare th, .compare td { display: block; width: 100%; }
  .compare thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .compare tbody tr { padding: 16px; border-bottom: 1px solid var(--vz-sand); }
  .compare tbody tr:last-child { border-bottom: 0; }
  .compare tbody th { padding: 0 0 10px; border: 0; font-size: 1rem; }
  .compare tbody td { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 10px 12px; border: 0; border-radius: 8px; }
  .compare tbody td::before { content: attr(data-label); color: var(--vz-ink-muted); font-weight: 500; }
  .compare tbody td.is-us::before { color: var(--vz-green); font-weight: 600; }
}
.footnotes { margin-top: var(--vz-space-2); font-size: var(--vz-text-micro); color: var(--vz-ink-muted); display: grid; gap: 4px; }
.footnotes ol { padding-left: 18px; display: grid; gap: 4px; }

/* 15 — INTEGRATIONS ------------------------------------------------------ */
.works-with { display: grid; gap: var(--vz-space-3); align-items: center; }
@media (min-width: 960px) { .works-with { grid-template-columns: 1fr 2fr; } }
.logo-strip { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--vz-sand); border: var(--vz-border); border-radius: var(--vz-radius); overflow: hidden; }
@media (min-width: 640px) { .logo-strip { grid-template-columns: repeat(3, 1fr); } }
.logo-strip li { display: grid; place-items: center; gap: 2px; min-height: 88px; background: var(--vz-paper); text-align: center; padding: 12px; }
.logo-strip .lname { font-weight: 600; font-size: 1.0625rem; letter-spacing: -.01em; color: var(--vz-ink); }
.logo-strip .ph { font-size: 10.5px; color: var(--vz-ink-muted); letter-spacing: .04em; }

/* 16 — SAFETY ------------------------------------------------------------ */
.bento { display: grid; gap: var(--vz-space-2); }
@media (min-width: 720px) { .bento { grid-template-columns: repeat(6, 1fr); } }
.bento > * { grid-column: span 6; }
@media (min-width: 720px) {
  .bento .span-2 { grid-column: span 2; } .bento .span-3 { grid-column: span 3; } .bento .span-4 { grid-column: span 4; }
}
.safety-card { display: grid; gap: 12px; align-content: start; padding: var(--vz-space-3); border-radius: var(--vz-radius); background: var(--vz-ink-raised); border: 1px solid var(--vz-ink-line); min-height: 200px; position: relative; overflow: hidden; }
.safety-card h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.15; }
.safety-card p { color: var(--vz-on-ink-muted); font-size: .9375rem; }
.safety-card--quote { background: transparent; }
.safety-card .quote { font-family: var(--vz-font-serif); font-style: italic; font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.375rem); line-height: 1.2; letter-spacing: -.01em; color: var(--vz-white); }
.safety-card .quote mark { background: none; color: var(--vz-green-light); }

/* 17 — PRICING ----------------------------------------------------------- */
.plans { display: grid; gap: var(--vz-space-2); align-items: stretch; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); gap: var(--vz-space-3); } }
.plan { position: relative; display: grid; grid-template-rows: auto auto auto 1fr auto; gap: var(--vz-space-2); padding: var(--vz-space-4) var(--vz-space-3); border-radius: var(--vz-radius); background: var(--vz-white); border: var(--vz-border); box-shadow: var(--vz-shadow-1); }
.plan--featured { background: var(--vz-ink); color: var(--vz-white); border-color: var(--vz-ink); box-shadow: var(--vz-shadow-2); }
@media (min-width: 900px) { .plan--featured { transform: translateY(-12px); } .plan--featured[data-tilt] { transform: perspective(900px) translateY(-12px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)); } }
.plan__name { font-family: var(--vz-font-serif); font-size: 1.75rem; font-weight: 600; line-height: 1.1; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; }
.plan__price b { font-family: var(--vz-font-serif); font-size: 3.5rem; line-height: 1; font-weight: 500; letter-spacing: -.03em; font-variant-numeric: lining-nums; }
.plan__price span { color: var(--vz-ink-muted); font-size: var(--vz-text-small); }
.plan--featured .plan__price span, .plan--featured .plan__for { color: var(--vz-on-ink-muted); }
.plan__for { font-size: var(--vz-text-small); color: var(--vz-ink-muted); }
.plan__minutes { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--vz-radius-sm); background: var(--vz-paper); font-weight: 600; font-size: var(--vz-text-small); font-variant-numeric: tabular-nums; }
.plan--featured .plan__minutes { background: rgba(255,255,255,.06); }
.plan__minutes svg { width: 18px; height: 18px; color: var(--vz-green); }
.plan--featured .plan__minutes svg { color: var(--vz-green-light); }
.plan__features { list-style: none; display: grid; gap: 10px; align-content: start; font-size: var(--vz-text-small); }
.plan__features li { display: flex; gap: 10px; align-items: flex-start; }
.plan__features svg { width: 18px; height: 18px; color: var(--vz-green); flex: none; margin-top: 2px; }
.plan--featured .plan__features svg { color: var(--vz-green-light); }
.pricing-notes { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: var(--vz-space-3); font-size: var(--vz-text-small); color: var(--vz-ink-muted); }
.pricing-notes span { display: inline-flex; align-items: center; gap: 8px; }
.pricing-notes svg { width: 16px; height: 16px; color: var(--vz-green); }
/* Minutes estimator (pricing page) */
.estimator { display: grid; gap: var(--vz-space-3); }
@media (min-width: 960px) { .estimator { grid-template-columns: 1fr 1fr; } }
.estimator__result { display: grid; gap: 16px; align-content: start; }
.estimator__bars { display: grid; gap: 12px; }
.cost-bar { display: grid; gap: 6px; }
.cost-bar__top { display: flex; justify-content: space-between; gap: 12px; font-size: var(--vz-text-small); font-weight: 600; }
.cost-bar__track { height: 14px; border-radius: 14px; background: var(--vz-paper); border: 1px solid var(--vz-sand); overflow: hidden; }
.cost-bar__fill { height: 100%; width: 100%; border-radius: 14px; background: var(--vz-green); transform-origin: left; transform: scaleX(.2); transition: transform 700ms var(--vz-ease); }
.cost-bar--live .cost-bar__fill { background: var(--vz-ink-muted); }

/* 18 — FAQ --------------------------------------------------------------- */
.faq { display: grid; gap: var(--vz-space-6); }
@media (min-width: 960px) { .faq { grid-template-columns: 4fr 8fr; gap: var(--vz-space-8); } .faq__head { position: sticky; top: calc(var(--vz-header-h) + 32px); align-self: start; } }
.faq__list { border-top: 1px solid var(--vz-ink); }
.faq__item { border-bottom: 1px solid var(--vz-sand); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; padding: 16px 0;
  font-family: var(--vz-font-serif); font-size: clamp(1.1875rem, 1.1rem + .4vw, 1.375rem); font-weight: 600; line-height: 1.3; cursor: pointer; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .plus { position: relative; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--vz-sand-strong); flex: none; transition: transform var(--vz-dur-2) var(--vz-ease), background-color var(--vz-dur-2); }
.faq__item summary .plus::before, .faq__item summary .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); }
.faq__item summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform var(--vz-dur-2) var(--vz-ease); }
.faq__item[open] summary .plus { background: var(--vz-ink); color: var(--vz-white); border-color: var(--vz-ink); }
.faq__item[open] summary .plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__item summary:hover { color: var(--vz-green); }
.faq__answer { padding: 0 48px 24px 0; color: var(--vz-ink-muted); display: grid; gap: 12px; max-width: 64ch; }
.faq__item[open] .faq__answer { animation: vz-rise var(--vz-dur-2) var(--vz-ease) both; }

/* 19 — CTA BAND + FOOTER ------------------------------------------------- */
.cta-band { position: relative; background: var(--vz-ink); color: var(--vz-white); padding-block: clamp(96px, 12vw, 176px); overflow: clip; isolation: isolate; }
.cta-band__inner { display: grid; gap: var(--vz-space-4); justify-items: start; }
.cta-band h2 { font-size: clamp(2.5rem, 1.2rem + 5.4vw, 5.5rem); line-height: 1; letter-spacing: -.03em; max-width: 14ch; }
.cta-band h2 em { color: var(--vz-green-light); }
.cta-band__wave { position: absolute; inset: auto 0 0 0; height: 60%; z-index: -1; opacity: .9; pointer-events: none; }
.cta-band__wave svg { width: 100%; height: 100%; }
.cta-band__wave path { fill: none; stroke: var(--vz-green-light); stroke-width: 1.25; opacity: .35; }
.cta-band__wave path:nth-child(2) { opacity: .2; }
.cta-band__wave path:nth-child(3) { opacity: .12; }
.site-footer { background: var(--vz-ink); color: var(--vz-on-ink-muted); padding-block: var(--vz-space-8) var(--vz-space-5); border-top: 1px solid var(--vz-ink-line); font-size: var(--vz-text-small); }
.site-footer a { color: var(--vz-white); text-decoration: none; }
.site-footer a:hover { color: var(--vz-green-light); text-decoration: underline; }
.footer-grid { display: grid; gap: var(--vz-space-4); }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-grid h2 { font-family: var(--vz-font-sans); font-size: var(--vz-text-micro); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--vz-on-ink-muted); margin-bottom: 12px; }
.footer-grid ul { list-style: none; display: grid; gap: 0; }
.footer-grid ul a { display: inline-flex; align-items: center; min-height: 44px; }
.footer-legal { margin-top: var(--vz-space-6); padding-top: var(--vz-space-3); border-top: 1px solid var(--vz-ink-line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.footer-legal .disclaimer { color: var(--vz-white); }

/* 20 — INTENT LANDING MODULES ------------------------------------------- */
.intent-hero { position: relative; padding-top: calc(var(--vz-header-h) + clamp(40px, 7vw, 96px)); padding-bottom: var(--vz-section); overflow: clip; }
.intent-hero__grid { display: grid; gap: var(--vz-space-6); align-items: center; }
@media (min-width: 1024px) { .intent-hero__grid { grid-template-columns: 7fr 5fr; gap: var(--vz-space-8); } }
.intent-hero h1 { font-size: clamp(2.375rem, 1.3rem + 3.6vw, 4.25rem); line-height: 1.03; letter-spacing: -.028em; }
.intent-hero h1 em { color: var(--vz-green); }
.intent-hero__kicker { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.intent-hero__wave { position: absolute; right: -10%; top: 12%; width: 70%; height: 70%; color: var(--vz-sand); z-index: -1; pointer-events: none; }
.intent-hero__wave path { fill: none; stroke: currentColor; stroke-width: 1.5; }
/* Pain block: missed call wall */
.pain { display: grid; gap: var(--vz-space-3); }
@media (min-width: 960px) { .pain { grid-template-columns: 5fr 7fr; gap: var(--vz-space-8); align-items: center; } }
.missed-log { list-style: none; display: grid; gap: 8px; }
.missed-log li { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 14px 16px; border-radius: var(--vz-radius); background: var(--vz-white); border: var(--vz-border); font-size: var(--vz-text-small); }
.missed-log .ico { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--vz-red-tint); color: var(--vz-red); }
.missed-log .ico svg { width: 18px; height: 18px; }
.missed-log b { display: block; font-weight: 600; }
.missed-log small { color: var(--vz-ink-muted); }
.missed-log time { font-variant-numeric: tabular-nums; color: var(--vz-red); font-weight: 600; }
.missed-log li.is-answered .ico { background: var(--vz-green-tint); color: var(--vz-green); }
.missed-log li.is-answered time { color: var(--vz-green); }
/* Unique section frame: visually prominent */
.unique { position: relative; background: var(--vz-ink); color: var(--vz-white); border-radius: calc(var(--vz-radius) * 2); padding: clamp(28px, 5vw, 64px); overflow: hidden; isolation: isolate; }
.unique__tag { display: inline-flex; margin-bottom: var(--vz-space-2); }
/* Module: bilingual split */
.bilingual { display: grid; gap: var(--vz-space-2); margin-top: var(--vz-space-4); }
@media (min-width: 900px) { .bilingual { grid-template-columns: 1fr auto 1fr; gap: var(--vz-space-3); align-items: stretch; } }
.bilingual__col { display: grid; gap: 12px; align-content: start; padding: var(--vz-space-3); border-radius: var(--vz-radius); background: var(--vz-ink-raised); border: 1px solid var(--vz-ink-line); }
.bilingual__col--out { background: var(--vz-white); color: var(--vz-ink); }
.bilingual__arrow { display: grid; place-items: center; color: var(--vz-green-light); }
.bilingual__arrow svg { width: 48px; height: 48px; transform: rotate(90deg); }
@media (min-width: 900px) { .bilingual__arrow svg { transform: none; } }
.bilingual .line { display: grid; gap: 2px; font-size: .9375rem; }
.bilingual .line small { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--vz-on-ink-muted); }
.bilingual .line.agent small { color: var(--vz-green-light); }
/* Module: urgency router */
.router { display: grid; gap: var(--vz-space-2); margin-top: var(--vz-space-4); }
@media (min-width: 900px) { .router { grid-template-columns: 1fr 1.1fr 1fr; align-items: center; gap: var(--vz-space-3); } }
.router__in, .router__out { display: grid; gap: 10px; }
.router__node { padding: 14px 16px; border-radius: var(--vz-radius); background: var(--vz-ink-raised); border: 1px solid var(--vz-ink-line); font-size: var(--vz-text-small); }
.router__node b { display: block; font-size: .9375rem; color: var(--vz-white); }
.router__node span { color: var(--vz-on-ink-muted); }
.router__core { position: relative; display: grid; place-items: center; gap: 10px; text-align: center; padding: var(--vz-space-4) var(--vz-space-3); border-radius: 50%; aspect-ratio: 1; max-width: 300px; margin: 0 auto; width: 100%; border: 1px dashed rgba(61,190,149,.5); }
.router__core .core-dot { display: grid; place-items: center; width: 88px; height: 88px; border-radius: 50%; background: var(--vz-green-light); color: var(--vz-ink); }
.router__core .core-dot svg { width: 40px; height: 40px; }
.router__core .orbit { position: absolute; inset: -1px; border-radius: 50%; animation: vz-spin 18s linear infinite; }
.router__core .orbit::before { content: ""; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--vz-green-light); }
.router__out .urgent { border-color: rgba(244, 138, 116, .5); }
.router__out .urgent b::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #F48A74; margin-right: 8px; vertical-align: 1px; }
.router__out .routine b::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--vz-green-light); margin-right: 8px; vertical-align: 1px; }
/* Module: intake form builder */
.intake-builder { display: grid; gap: var(--vz-space-3); margin-top: var(--vz-space-4); }
@media (min-width: 900px) { .intake-builder { grid-template-columns: 7fr 5fr; } }
/* Old way vs new way */
.oldnew { display: grid; gap: var(--vz-space-2); }
@media (min-width: 900px) { .oldnew { grid-template-columns: 1fr 1fr; } }
.oldnew__col { padding: var(--vz-space-4) var(--vz-space-3); border-radius: var(--vz-radius); border: var(--vz-border); background: var(--vz-white); display: grid; gap: 16px; align-content: start; }
.oldnew__col--old { background: transparent; border-style: dashed; border-color: var(--vz-sand-strong); }
.oldnew__col h3 { font-size: 1.5rem; font-weight: 600; }
.oldnew__col ul { list-style: none; display: grid; gap: 12px; font-size: .9375rem; }
.oldnew__col li { display: flex; gap: 10px; align-items: flex-start; }
.oldnew__col li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; }
.oldnew__col--old li svg { color: var(--vz-red); }
.oldnew__col--new li svg { color: var(--vz-green); }
/* Pricing snippet */
.price-snippet { display: grid; gap: var(--vz-space-3); align-items: center; padding: var(--vz-space-4) var(--vz-space-3); border-radius: var(--vz-radius); background: var(--vz-white); border: var(--vz-border); }
@media (min-width: 900px) { .price-snippet { grid-template-columns: 1.2fr 2fr auto; padding: var(--vz-space-5); } }
.price-snippet__plans { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; }
.price-snippet__plan { padding: 12px; border-radius: var(--vz-radius-sm); background: var(--vz-paper); border: 1px solid var(--vz-sand); display: grid; gap: 2px; }
.price-snippet__plan.is-featured { background: var(--vz-ink); color: var(--vz-white); border-color: var(--vz-ink); }
.price-snippet__plan b { font-family: var(--vz-font-serif); font-size: 1.5rem; font-weight: 600; line-height: 1.1; }
.price-snippet__plan span { font-size: var(--vz-text-micro); color: var(--vz-ink-muted); }
.price-snippet__plan.is-featured span { color: var(--vz-on-ink-muted); }

/* Page hero (pricing etc.) */
.page-hero { padding-top: calc(var(--vz-header-h) + clamp(40px, 7vw, 96px)); padding-bottom: var(--vz-space-6); }
.page-hero h1 { font-size: clamp(2.5rem, 1.3rem + 5vw, 5rem); line-height: 1.02; letter-spacing: -.03em; max-width: 16ch; }
.page-hero h1 em { color: var(--vz-green); }

/* 21 — MOTION + REVEAL --------------------------------------------------- */
@keyframes vz-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }
@keyframes vz-ring { 0% { opacity: .9; transform: scale(.9); } 100% { opacity: 0; transform: scale(1.6); } }
@keyframes vz-ring-out { 0% { opacity: .8; transform: scale(1); } 100% { opacity: 0; transform: scale(2.1); } }
@keyframes vz-shake { 0%, 100% { transform: rotate(0); } 10% { transform: rotate(-9deg); } 20% { transform: rotate(8deg); } 30% { transform: rotate(-6deg); } 40% { transform: rotate(4deg); } 50% { transform: rotate(0); } }
@keyframes vz-rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes vz-blink { 50% { opacity: 0; } }
@keyframes vz-morph-in { from { opacity: 0; transform: translateY(12px) scale(.99); } to { opacity: 1; transform: none; } }
@keyframes vz-wave-ping { 0% { opacity: 0; transform: scale(.5); } 40% { opacity: 1; } 100% { opacity: 0; transform: scale(1.15); } }
@keyframes vz-spin { to { transform: rotate(360deg); } }
@keyframes vz-line-up { from { transform: translateY(105%); } to { transform: none; } }
@keyframes vz-drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Kinetic headline: words slide up out of a line mask (transform only) */
.js .kinetic .line { overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.js .kinetic .w { display: inline-block; animation: vz-line-up 760ms var(--vz-ease) both; animation-delay: calc(var(--i, 0) * 55ms + 80ms); }

/* Scroll reveals */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--vz-ease), transform 700ms var(--vz-ease); transition-delay: calc(var(--d, 0) * 80ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* Wave drift in CTA */
.cta-band__wave .drift { animation: vz-drift 22s linear infinite; }
.cta-band__wave .drift--slow { animation-duration: 34s; }

/* Magnetic */
[data-magnetic] { transition: transform 400ms var(--vz-ease-spring); }
[data-magnetic].is-magnet { transition: transform 120ms linear; }

/* 22 — REDUCED MOTION: static, still beautiful -------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .kinetic .w { animation: none; }
  .scene { transition: none; }
  [data-tilt] { transform: none !important; }
  .router__core .orbit { animation: none; }
  .cta-band__wave .drift { animation: none; }
  .brand:hover .logo__waves path { opacity: 1; transform: scale(1); animation: none; }
}
html.reduce-motion .js-anim-off { animation: none !important; }

/* 23 — UTILITIES --------------------------------------------------------- */
.mt-1 { margin-top: var(--vz-space-1); } .mt-2 { margin-top: var(--vz-space-2); } .mt-3 { margin-top: var(--vz-space-3); } .mt-4 { margin-top: var(--vz-space-4); } .mt-6 { margin-top: var(--vz-space-6); }
.center { text-align: center; }
.nowrap { white-space: nowrap; }
.on-ink { color: var(--vz-white); }
.ph-mark { outline: 1px dashed rgba(180, 67, 47, .6); outline-offset: 2px; }

/* 20b — INTENT LANDING: variants ---------------------------------------- */
.intent-hero--ink { background: var(--vz-ink); color: var(--vz-white); padding-bottom: clamp(120px, 14vw, 180px); }
.intent-hero--ink h1 em { color: var(--vz-green-light); }
.intent-hero--ink .lead { color: var(--vz-on-ink-muted); }
.intent-hero--ink .intent-hero__wave { color: rgba(61, 190, 149, .16); }
.missed-log--ink li { background: var(--vz-ink-raised); border-color: var(--vz-ink-line); color: var(--vz-white); }
.missed-log--ink small { color: var(--vz-on-ink-muted); }
.missed-log--ink li.is-answered .ico { background: rgba(61,190,149,.14); color: var(--vz-green-light); }
.missed-log--ink li.is-answered time { color: var(--vz-green-light); }
.missed-log--ink li.is-urgent .ico { background: rgba(244,138,116,.14); color: #F48A74; }
.missed-log--ink li.is-urgent time { color: #F48A74; }
.log-caption { margin-top: 10px; font-size: var(--vz-text-micro); color: var(--vz-ink-muted); }
.on-ink .log-caption { color: var(--vz-on-ink-muted); }
.hero-visual { display: grid; gap: 12px; }
.rules { list-style: none; display: grid; gap: 8px; margin-top: var(--vz-space-3); }
@media (min-width: 900px) { .rules { grid-template-columns: repeat(3, 1fr); gap: var(--vz-space-2); } }
.rules li { padding: 16px; border-radius: var(--vz-radius); border: 1px solid var(--vz-ink-line); font-size: var(--vz-text-small); color: var(--vz-on-ink-muted); }
.rules li b { display: block; color: var(--vz-white); font-size: .9375rem; margin-bottom: 4px; }
.script-editor { display: grid; gap: 0; }
.script-row { display: grid; grid-template-columns: 28px 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-top: 1px solid var(--vz-sand); font-size: var(--vz-text-small); }
.script-row .grip { color: var(--vz-sand-strong); letter-spacing: -2px; font-weight: 700; user-select: none; }
.script-row .type { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 6px; background: var(--vz-paper); border: 1px solid var(--vz-sand); color: var(--vz-ink-muted); white-space: nowrap; }
.script-row .type--conflict { background: var(--vz-green-tint); border-color: transparent; color: var(--vz-green); }
.record { font-variant-numeric: tabular-nums; }
.record .kv { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 10px 0; border-top: 1px solid var(--vz-ink-line); font-size: var(--vz-text-small); }
.record .kv span:first-child { color: var(--vz-on-ink-muted); }
.lang-meter { display: grid; gap: 6px; }
.lang-meter__bar { display: flex; height: 10px; border-radius: 10px; overflow: hidden; background: var(--vz-sand); }
.lang-meter__bar i { display: block; height: 100%; }
.lang-meter__bar .en { background: var(--vz-ink); width: 38%; }
.lang-meter__bar .es { background: var(--vz-green); width: 62%; }
.lang-meter__legend { display: flex; justify-content: space-between; font-size: var(--vz-text-micro); color: var(--vz-ink-muted); }
.template-note { border: 1px dashed var(--vz-red); background: var(--vz-red-tint); color: var(--vz-ink); padding: 12px 16px; border-radius: var(--vz-radius-sm); font-size: var(--vz-text-small); }
.plan.is-recommended { box-shadow: 0 0 0 2px var(--vz-green), var(--vz-shadow-2); }
.plan--featured.is-recommended { box-shadow: 0 0 0 2px var(--vz-green-light), var(--vz-shadow-2); }
.feature-table .table th[scope="col"] { text-align: center; }
.feature-table .table td { text-align: center; }
.feature-table .table td .mark-yes, .feature-table .table td .mark-no, .feature-table .table td .mark-part { justify-content: center; }
.feature-table .table-wrap { overflow-x: auto; }
.feature-table .table { min-width: 560px; }
.feature-table .table tbody th { font-weight: 500; }
.feature-table .table .is-us { background: rgba(12,122,94,.05); }
.minute-explainer { display: grid; gap: var(--vz-space-2); }
@media (min-width: 900px) { .minute-explainer { grid-template-columns: repeat(3, 1fr); gap: var(--vz-space-3); } }
.kinetic .line { display: block; }
.unique .card:not(.card--ink) { color: var(--vz-ink); }
.unique .card:not(.card--ink) .card__label { color: var(--vz-ink-muted); }
.unique .transcript-card { background: var(--vz-ink-raised); border: 1px solid var(--vz-ink-line); }
.unique .bilingual__col--out .card__label { color: var(--vz-ink-muted); }

/* 24 — SITE ADDITIONS ----------------------------------------------------
   Small glue for the marketing pages. Tokens only: no new colors, fonts,
   radii or shadows. Class names stay vertical-neutral.                  */

/* Hero: sound-ring backdrop + clock icon */
.hero__rings { position: absolute; inset: 0; z-index: -1; pointer-events: none; width: 100%; height: 100%; }
.hero__rings circle { fill: none; stroke: var(--vz-ink-line); stroke-width: 1; }
.hero__rings circle:nth-child(odd) { stroke: rgba(61, 190, 149, .10); }
.hero__clock svg { width: 18px; height: 18px; color: var(--vz-green-light); }
.hero__badge-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.hero .sample-player { margin-top: var(--vz-space-1); }

/* Header: mobile menu is inert while closed */
.mobile-nav[inert] { visibility: hidden; }
.mobile-nav.is-open { visibility: visible; }
.mobile-nav__foot { display: grid; gap: 12px; }
.mobile-nav .lang-switch { color: var(--vz-on-ink-muted); }
html.menu-open { overflow: hidden; }

/* Live call */
.call-card__controls .micro { color: var(--vz-on-ink-muted); padding-right: 4px; }
.live-call.is-paused .transcript .typing::after { animation: none; }
.transcript li[hidden] { display: none; }

/* Sample player */
.sample-player__note b { color: var(--vz-white); font-weight: 600; }
.sample-player--light .sample-player__note b { color: var(--vz-ink); }

/* Calculator */
.calc__inputs.card { padding: var(--vz-space-4) var(--vz-space-3); }
@media (min-width: 768px) { .calc__inputs.card { padding: var(--vz-space-5); } }
.calc__formula { font-size: var(--vz-text-micro); color: var(--vz-ink-muted); }
.missed-dots .more { font-size: var(--vz-text-micro); font-weight: 600; color: var(--vz-red); line-height: 9px; }
.calc__out.is-on .missed-dots .more { color: var(--vz-green); }

/* Story: finished state without JS */
.story__stage .scene { will-change: opacity, transform; }

/* Intent hero */
.intent-hero { isolation: isolate; }
.intent-hero .lead { max-width: 56ch; }
.intent-hero__copy { display: grid; gap: var(--vz-space-3); align-content: start; }
.intent-notes { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: var(--vz-text-small); color: var(--vz-ink-muted); }
.intent-notes li { display: inline-flex; align-items: center; gap: 8px; }
.intent-notes svg { width: 16px; height: 16px; color: var(--vz-green); }
.intent-hero--ink .intent-notes { color: var(--vz-on-ink-muted); }
.intent-hero--ink .intent-notes svg { color: var(--vz-green-light); }
.intent-hero--ink .wave-edge { color: var(--vz-paper); }

/* Unique frame content */
.unique .section-head { margin-bottom: 0; }
.unique .switcher { margin-top: var(--vz-space-4); }
.unique .intake-card { color: var(--vz-ink); }

/* Router (after-hours): interactive night calls */
.router__in .router__node { display: block; width: 100%; text-align: left; font: inherit; color: inherit; cursor: pointer; min-height: 44px; transition: box-shadow var(--vz-dur-2), opacity var(--vz-dur-2), transform var(--vz-dur-2) var(--vz-ease); }
.router__in .router__node:hover { border-color: rgba(255, 255, 255, .32); }
.router__node.is-active { box-shadow: 0 0 0 2px var(--vz-green-light); }
.router__in .router__node[aria-pressed="true"] { transform: translateX(4px); }
.router__out .router__node { transition: opacity var(--vz-dur-2), box-shadow var(--vz-dur-2); }

.router__core p { font-size: var(--vz-text-small); color: var(--vz-on-ink-muted); max-width: 18ch; }
.router__core b { font-family: var(--vz-font-serif); font-size: 1.375rem; font-weight: 600; color: var(--vz-white); }
.router__label { font-size: var(--vz-text-micro); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--vz-on-ink-muted); }

/* Bilingual split */
.bilingual .line { padding-top: 10px; border-top: 1px solid var(--vz-ink-line); }
.bilingual .line .t-es { color: var(--vz-on-ink-muted); font-size: var(--vz-text-small); font-style: italic; }
.bilingual__col--out .summary-list > div { grid-template-columns: 112px 1fr; }

/* Intake script editor */
.script-row input[type="checkbox"] { width: 20px; height: 20px; margin: 0; accent-color: var(--vz-green); cursor: pointer; }
.script-row label { display: flex; align-items: center; min-height: 44px; cursor: pointer; }
.script-row.is-off label { color: var(--vz-ink-muted); text-decoration: line-through; }
.record .kv { transition: opacity var(--vz-dur-2); }
.record .kv[hidden] { display: none; }
.record .kv span:last-child { color: var(--vz-white); font-weight: 500; }

/* Pricing */
.plan__top { display: grid; gap: 8px; }
.plan .plan__name .badge { font-family: var(--vz-font-sans); }
.estimator__result .card__label { margin-bottom: 0; }
.estimator__pick { font-family: var(--vz-font-serif); font-size: var(--vz-text-h3); font-weight: 600; line-height: 1.2; }
.estimator__pick span { color: var(--vz-green); }
.cost-bar__top b { font-variant-numeric: tabular-nums; }
.minute-explainer .card h3 { font-size: var(--vz-text-h3); font-weight: 600; margin: 12px 0 8px; }

/* Footer brand */
.footer-brand { display: grid; gap: 16px; align-content: start; }
.footer-brand img { height: 32px; width: auto; }
.footer-brand p { max-width: 36ch; }

/* Wave drift in CTA: translate by the group's own width */
.cta-band__wave .drift { transform-box: fill-box; }
.cta-band__inner .lead { color: var(--vz-on-ink-muted); }




/* Italic accent word in section titles */
.h2 em.accent, .h3 em.accent { color: var(--vz-green); }
.section--ink .h2 em.accent, .on-ink .h2 em.accent { color: var(--vz-green-light); }

/* Long-running decorative motion rests while off-screen */
.is-offscreen, .is-offscreen * { animation-play-state: paused !important; }

/* Reduced motion: the finished call shows the full transcript and the summary below it */
@media (prefers-reduced-motion: reduce) {
  .live-call .summary-card { position: relative; left: auto; right: auto; top: auto; }
  .live-call .summary-card [data-assemble] { opacity: 1; transform: none; }
}

/* Sample player: language tabs take their own row on phones */
@media (max-width: 559px) {
  .sample-player .tabs { display: flex; width: 100%; }
  .sample-player .tab { flex: 1; }
}

/* Without script the finished call summary is fully assembled */
html:not(.js) .live-call .summary-card [data-assemble] { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------------
   25 · Pilot application and text pages (about, security, privacy, terms)
   --------------------------------------------------------------------------- */
.split { display: grid; gap: var(--vz-space-6); align-items: start; }
@media (min-width: 960px) { .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--vz-space-8); } .split__aside { position: sticky; top: calc(var(--vz-header-h) + 24px); } }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ticks li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; color: var(--vz-ink-muted); }
.ticks li::before { content: ""; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%; background: var(--vz-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 12px no-repeat; }
.ticks li b { color: var(--vz-ink); font-weight: 600; }
.pilot-form { display: grid; gap: var(--vz-space-3); padding: clamp(20px, 4vw, 40px); background: var(--vz-white); border: 1px solid var(--vz-sand); border-radius: var(--vz-radius-lg); box-shadow: var(--vz-shadow-2); }
.pilot-form__row { display: grid; gap: var(--vz-space-3); }
@media (min-width: 640px) { .pilot-form__row { grid-template-columns: 1fr 1fr; } }
.pilot-form fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 4px; min-width: 0; }
.pilot-form legend { font-size: var(--vz-text-small); font-weight: 600; margin-bottom: 6px; padding: 0; }
.pilot-form .checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); column-gap: 16px; }
.pilot-form .req { color: var(--vz-ink-muted); font-weight: 400; }
.pilot-form .hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.pilot-form .btn { justify-self: start; }
.pilot-form .input, .pilot-form .select, .pilot-form .textarea { width: 100%; }
.prose { max-width: 70ch; color: var(--vz-ink); }
.prose > * + * { margin-top: 1em; }
.prose h2 { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem); line-height: 1.15; letter-spacing: -.015em; margin-top: 2em; }
.prose h3 { font-size: 1.15rem; font-weight: 600; font-family: var(--vz-font-sans, Inter, system-ui, sans-serif); margin-top: 1.6em; }
.prose p, .prose li { color: var(--vz-ink-muted); line-height: 1.7; }
.prose ul { padding-left: 1.2em; display: grid; gap: .4em; }
.prose a { color: var(--vz-green); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--vz-ink); }
.prose .updated { font-size: var(--vz-text-small); color: var(--vz-ink-muted); }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--vz-text-small); display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--vz-sand); vertical-align: top; }
.prose th { color: var(--vz-ink); font-weight: 600; }
.note-card { padding: var(--vz-space-3); border-radius: var(--vz-radius); background: var(--vz-sand-soft, #F1ECE2); border: 1px solid var(--vz-sand); }

/* Light cards inside Ink sections keep the light-surface muted color (WCAG AA) */
.on-ink .card:not(.card--ink) .muted { color: var(--vz-ink-muted); }
