/* ═══════════════════════════════════════════════════════════════════════════
   ANSWERED — warm dark cinema.
   Forge Iron ground, bronze as the only light source, bone paper for proof.
   Every text token measured against its own ground for AA. Nothing below 4.5:1.
   ═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video, canvas { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

:root {
  /* grounds, warm not cool. every one has a red/yellow cast, never a blue one */
  --ink-1000: #0A0908;
  --ink-950:  #0F0D0B;
  --ink-900:  #15120F;
  --ink-850:  #1C1814;
  --ink-800:  #26231F;   /* Forge Iron */
  --ink-700:  #342F28;

  /* the light source */
  --bronze:   #B07A3C;   /* Bell Bronze */
  --bronze-2: #D9A263;
  --bronze-3: #F2D2A0;
  --red:      #A93B26;   /* Crucible Red */
  --red-2:    #C9553B;

  /* the paper */
  --bone:     #F4EFE5;   /* Shopcoat Bone */
  --bone-2:   #E7DECE;
  --paper-ink:#1E1B17;

  /* text on dark. never go below --t3 for any glyph a human must read */
  --t1: #F6EFE0;
  --t2: rgba(246, 239, 224, 0.80);
  --t3: rgba(246, 239, 224, 0.64);

  --line:  rgba(246, 239, 224, 0.10);
  --line2: rgba(246, 239, 224, 0.18);

  --sans: 'Instrument Sans', ui-sans-serif, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --serif:'Instrument Serif', ui-serif, Georgia, 'Times New Roman', serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --e:      cubic-bezier(0.22, 1, 0.36, 1);
  --e-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --e-in:   cubic-bezier(0.7, 0, 0.84, 0);

  --gut: clamp(20px, 5vw, 64px);
  --max: 1240px;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--ink-950);
  color: var(--t1);
  font-family: var(--sans);
  font-size: clamp(16px, 1.05vw, 17.5px);
  line-height: 1.62;
  font-feature-settings: 'ss01' 1, 'cv01' 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* the grain. one 160x160 tiled noise, fixed, multiply-free so it never dulls bronze.
   this is what stops a dark gradient from banding on a cheap panel. */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  will-change: transform;
}

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.narrow { max-width: 780px; }

/* ── type scale ──────────────────────────────────────────────────────────── */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.022em;
  font-size: clamp(44px, 8.4vw, 118px);
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.018em;
  font-size: clamp(32px, 4.6vw, 62px);
}
.h3 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.014em;
  font-size: clamp(20px, 2vw, 26px);
}
.lede { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; color: var(--t2); }
.small { font-size: 14.5px; line-height: 1.6; color: var(--t3); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--bronze-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze));
  flex: 0 0 auto;
}

/* a number that must be believed sets in mono with tabular figures, always */
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }

/* the source note. small, but never below AA, because this is the line a
   partner leans in to read. */
.src {
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--t3);
}
.src a { border-bottom: 1px solid var(--line2); }

/* ── nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s var(--e), border-color .35s var(--e), backdrop-filter .35s var(--e);
  border-bottom: 1px solid transparent;
}
.nav.pinned {
  background: color-mix(in srgb, var(--ink-1000) 82%, transparent);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom-color: var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 28px; }

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark { width: 26px; height: 26px; flex: 0 0 auto; }
.brand-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand-name b { font-weight: 600; color: var(--t1); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  padding: 9px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--t2);
  border-radius: 8px;
  transition: color .2s var(--e), background .2s var(--e);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--t1); background: rgba(246,239,224,.05); }
.nav-links a[aria-current='page'] { color: var(--bronze-2); }

.nav-cta {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-1000);
  background: linear-gradient(180deg, var(--bronze-3), var(--bronze-2) 55%, var(--bronze));
  box-shadow: 0 1px 0 rgba(255,255,255,.28) inset, 0 8px 22px -10px rgba(176,122,60,.8);
  transition: transform .18s var(--e), box-shadow .25s var(--e), filter .2s var(--e);
}
.nav-cta:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 1px 0 rgba(255,255,255,.34) inset, 0 14px 30px -12px rgba(176,122,60,.9); }
.nav-cta:active { transform: translateY(0); }

.burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line2); border-radius: 10px;
  cursor: pointer;
}
.burger span { display: block; width: 16px; height: 1.5px; background: var(--t1); position: relative; transition: transform .3s var(--e), opacity .2s var(--e); }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--t1);
  transition: transform .3s var(--e);
}
.burger span::before { top: -5px; }
.burger span::after  { top: 5px; }
.burger[aria-expanded='true'] span { transform: rotate(45deg); }
.burger[aria-expanded='true'] span::before { transform: translateY(5px) rotate(-90deg); }
.burger[aria-expanded='true'] span::after  { opacity: 0; }

.sheet {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 190;
  background: color-mix(in srgb, var(--ink-1000) 96%, transparent);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--gut) 26px;
  display: none;
}
.sheet.open { display: block; }
.sheet a {
  display: block; padding: 15px 2px; font-size: 19px; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.sheet .nav-cta { display: inline-block; margin-top: 18px; }

@media (max-width: 860px) {
  .nav-links, .nav > .wrap > .nav-cta { display: none; }
  .burger { display: flex; }
}

/* ── buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600; font-size: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--e), box-shadow .25s var(--e), background .25s var(--e), border-color .25s var(--e), filter .2s var(--e);
}
.btn-primary {
  color: var(--ink-1000);
  background: linear-gradient(180deg, var(--bronze-3), var(--bronze-2) 55%, var(--bronze));
  box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 14px 34px -14px rgba(176,122,60,.95);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 1px 0 rgba(255,255,255,.36) inset, 0 22px 46px -16px rgba(176,122,60,1); }
.btn-ghost {
  color: var(--t1);
  background: rgba(246,239,224,.045);
  border-color: var(--line2);
}
.btn-ghost:hover { background: rgba(246,239,224,.08); border-color: rgba(246,239,224,.3); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--bronze-2); outline-offset: 3px;
}

/* ── sections ────────────────────────────────────────────────────────────── */
section { position: relative; }
.pad   { padding-block: clamp(72px, 11vw, 150px); }
.pad-s { padding-block: clamp(54px, 7vw, 96px); }

/* the ground switch. this is the compositional weapon: the page runs dark and
   drops to bone paper exactly where the product must be believed. */
.paper {
  background: var(--bone);
  color: var(--paper-ink);
}
.paper .h2, .paper .display { color: var(--paper-ink); }
.paper .lede { color: rgba(30,27,23,.76); }
.paper .small, .paper .src { color: rgba(30,27,23,.66); }
.paper .eyebrow { color: #8A5A22; }
.paper .eyebrow::before { background: linear-gradient(90deg, transparent, #8A5A22); }

/* the seam between grounds is a torn edge of light, not a hard line */
.seam { position: relative; }
.seam::before {
  content: ''; position: absolute; inset: -1px 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,122,60,.55), transparent);
}

/* ── hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 24px);
  padding-bottom: 48px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 76% 22%, rgba(176,122,60,.20), transparent 58%),
    radial-gradient(90% 80% at 12% 88%, rgba(169,59,38,.13), transparent 60%),
    linear-gradient(180deg, var(--ink-900), var(--ink-1000) 78%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { min-height: 0; padding-bottom: 72px; }
}

.hero h1 { margin-top: 20px; font-size: clamp(36px, 4.9vw, 68px); text-wrap: balance; }
.hero h1 .lit {
  background: linear-gradient(96deg, var(--bronze-3) 6%, var(--bronze-2) 46%, var(--bronze) 92%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-style: italic;
}
.hero-sub { margin-top: 22px; max-width: 46ch; }
/* the three chips. a stranger must be able to read these and know what the
   company does before they scroll a single pixel. */
.chips { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.chips li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15.5px; font-weight: 500; color: var(--t1);
}
.chip-n {
  flex: 0 0 auto;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-content: center;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--bronze-2);
  border: 1px solid rgba(217,162,99,.42);
  background: rgba(217,162,99,.09);
}
@media (min-width: 620px) and (max-width: 940px) {
  .chips { flex-direction: row; flex-wrap: wrap; gap: 10px 22px; }
}

/* the setup flash: the single most important sentence for a contractor, so it
   gets its own bronze rule rather than living inside a paragraph */
.setup-flash {
  margin-top: 22px;
  padding: 14px 0 0 18px;
  border-left: 2px solid var(--bronze);
  font-size: 16px;
  line-height: 1.55;
  color: var(--t2);
  max-width: 48ch;
}
.setup-flash b { color: var(--t1); font-weight: 600; }

/* the three forwarding modes */
.modes { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 44px; }
@media (max-width: 940px) { .modes { grid-template-columns: 1fr; } }
.mode {
  padding: clamp(22px, 2.4vw, 30px);
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(217,162,99,.07), rgba(246,239,224,.012));
  transition: border-color .35s var(--e), transform .35s var(--e);
}
.mode:hover { border-color: rgba(217,162,99,.45); transform: translateY(-3px); }
.mode.off { background: linear-gradient(180deg, rgba(246,239,224,.04), rgba(246,239,224,.01)); }
.mode-code {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--bronze-2);
  margin-bottom: 16px;
}
.mode.off .mode-code { color: var(--t2); }
.mode h3 { margin-bottom: 9px; }
.mode p { color: var(--t2); font-size: 15.5px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin-top: 22px; max-width: 52ch; }

/* ── the ring: the signature. canvas, no library, no 3D, 60fps on old phones ── */
.ring-stage {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}
.ring-stage canvas { width: 100%; height: 100%; }
.ring-glow {
  position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,122,60,.30), rgba(176,122,60,0) 62%);
  filter: blur(30px);
  opacity: .68;
  pointer-events: none;
  transition: opacity .6s var(--e);
}
.ring-stage.live .ring-glow { opacity: .95; }
.ring-center {
  position: absolute; inset: 0;
  display: grid; place-content: center; text-align: center;
  pointer-events: none;
}
.ring-state {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--t3);
  transition: color .4s var(--e);
}
.ring-stage.live .ring-state { color: var(--bronze-2); }
.ring-count {
  font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 4.4vw, 44px);
  letter-spacing: -.02em; color: var(--t1); margin-top: 8px;
}

.mic-row { display: flex; justify-content: center; margin-top: 20px; }
.mic-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(246,239,224,.05); border: 1px solid var(--line2);
  font-size: 13.5px; font-weight: 500; color: var(--t2); cursor: pointer;
  transition: background .2s var(--e), border-color .2s var(--e), color .2s var(--e);
}
.mic-btn:hover { background: rgba(246,239,224,.09); color: var(--t1); border-color: rgba(246,239,224,.3); }
.mic-btn .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--t3); transition: background .3s var(--e), box-shadow .3s var(--e); }
.mic-btn.on .dot { background: var(--red-2); box-shadow: 0 0 0 4px rgba(201,85,59,.22); }

/* ── stat band ───────────────────────────────────────────────────────────── */
.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(246,239,224,.024), transparent);
}
.band-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.band-cell { padding: clamp(24px, 3vw, 38px) clamp(16px, 2vw, 28px); border-left: 1px solid var(--line); }
.band-cell:first-child { border-left: 0; }
.band-v {
  font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: clamp(26px, 3.2vw, 40px); letter-spacing: -.03em; line-height: 1;
  color: var(--bronze-2);
}
.band-k { margin-top: 10px; font-size: 14px; color: var(--t2); line-height: 1.45; }
.band-s { margin-top: 9px; }
@media (max-width: 880px) {
  .band-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .band-cell:nth-child(3) { border-left: 0; }
  .band-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 460px) {
  .band-grid { grid-template-columns: 1fr; }
  .band-cell { border-left: 0; }
  .band-cell + .band-cell { border-top: 1px solid var(--line); }
}

/* ── cards ───────────────────────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 52px; }
/* four dense cards in three tracks strands the fourth. a 2x2 block reads as a
   deliberate composition instead of a row with a leftover. */
.cards.four { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
@media (max-width: 940px) { .cards, .cards.four { grid-template-columns: 1fr; } }

.card {
  position: relative;
  padding: clamp(24px, 2.6vw, 34px);
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(246,239,224,.045), rgba(246,239,224,.012));
  overflow: hidden;
  transition: border-color .35s var(--e), transform .35s var(--e), background .35s var(--e);
}
.card:hover { border-color: rgba(217,162,99,.42); transform: translateY(-3px); }
.card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,162,99,.6), transparent);
  opacity: 0; transition: opacity .35s var(--e);
}
.card:hover::before { opacity: 1; }
.card-tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bronze-2);
}
.card h3 { margin: 14px 0 10px; }
.card p { color: var(--t2); font-size: 15.5px; }
.card .price {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 13.5px; color: var(--t2);
  font-variant-numeric: tabular-nums;
}
.card .price b { color: var(--bronze-2); font-weight: 500; }

/* ── the ledger, on paper ────────────────────────────────────────────────── */
.ledger {
  border: 1px solid rgba(30,27,23,.16);
  border-radius: 14px;
  background: #FBF8F1;
  box-shadow: 0 30px 60px -30px rgba(30,27,23,.35);
  overflow: hidden;
}
.ledger-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: baseline;
  padding: 15px clamp(16px, 2.4vw, 26px);
  border-top: 1px solid rgba(30,27,23,.10);
  font-family: var(--mono); font-size: 14px; font-variant-numeric: tabular-nums;
}
.ledger-row:first-child { border-top: 0; }
.ledger-row.head {
  background: rgba(30,27,23,.05);
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(30,27,23,.62);
}
.ledger-row.total { background: rgba(176,122,60,.10); font-weight: 600; }
.ledger-row .lbl { font-family: var(--sans); font-size: 15px; }
.ledger-row .amt { text-align: right; min-width: 84px; }
.ledger-row .bill { text-align: right; min-width: 90px; color: #8A5A22; }
@media (max-width: 560px) {
  .ledger-row { grid-template-columns: 1fr auto; }
  .ledger-row .amt { display: none; }
  .ledger-row.head .amt { display: none; }
}

/* ── receipt (consumer proof object) ─────────────────────────────────────── */
.receipt {
  max-width: 430px;
  border-radius: 16px;
  /* solid first, gradient on top. a gradient-only ground leaves the text with
     no computable background, which breaks contrast auditing and renders as
     the page ground anywhere the gradient fails. */
  background-color: #F7F3EA;
  background-image: linear-gradient(180deg, #FCFAF4, #F1EADC);
  color: var(--paper-ink);
  box-shadow: 0 40px 80px -34px rgba(0,0,0,.7);
  overflow: hidden;
  border: 1px solid rgba(30,27,23,.14);
}
.receipt-top {
  padding: 18px 22px 14px;
  border-bottom: 1px dashed rgba(30,27,23,.26);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.receipt-top .rt-l { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(30,27,23,.6); }
.receipt-body { padding: 20px 22px 8px; }
.receipt-line { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; font-family: var(--mono); font-size: 13.5px; font-variant-numeric: tabular-nums; }
.receipt-line span:first-child { color: rgba(30,27,23,.64); }
.receipt-big { font-family: var(--mono); font-size: 40px; letter-spacing: -.03em; line-height: 1; margin: 6px 0 2px; }
.receipt-foot {
  padding: 14px 22px 20px; margin-top: 10px;
  border-top: 1px dashed rgba(30,27,23,.26);
  font-family: var(--mono); font-size: 11.5px; color: rgba(30,27,23,.74); line-height: 1.6;
}

/* ── steps ───────────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 48px; counter-reset: s; }
/* four steps in a three track grid orphans the fourth under two empty cells.
   the count is a property of the content, so the track count follows it. */
.steps.four { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
@media (max-width: 1100px) { .steps.four { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 860px) { .steps, .steps.four { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 26px; border-top: 1px solid var(--line2); counter-increment: s; }
.step::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  color: var(--bronze-2); position: absolute; top: 12px; left: 0;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--t2); font-size: 15.5px; }

/* ── quote ───────────────────────────────────────────────────────────────── */
.pull {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 48px); line-height: 1.14; letter-spacing: -.018em;
  max-width: 20ch;
}

/* ── faq / disclosure ────────────────────────────────────────────────────── */
.disc { border-top: 1px solid var(--line); }
.disc summary {
  list-style: none; cursor: pointer;
  padding: 22px 44px 22px 0; position: relative;
  font-size: clamp(17px, 1.6vw, 20px); font-weight: 500;
}
.disc summary::-webkit-details-marker { display: none; }
.disc summary::after {
  content: ''; position: absolute; right: 8px; top: 50%;
  width: 11px; height: 11px; margin-top: -6px;
  border-right: 1.5px solid var(--bronze-2); border-bottom: 1.5px solid var(--bronze-2);
  transform: rotate(45deg); transition: transform .3s var(--e);
}
.disc[open] summary::after { transform: rotate(-135deg); }
.disc .disc-body { padding: 0 0 24px; color: var(--t2); max-width: 74ch; }
.disc .disc-body p + p { margin-top: 12px; }

/* ── form ────────────────────────────────────────────────────────────────── */
.form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.form input[type='email'], .form input[type='text'] {
  flex: 1 1 260px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line2);
  background: rgba(246,239,224,.05);
  color: var(--t1);
  font-size: 16px;
  transition: border-color .2s var(--e), background .2s var(--e);
}
.form input::placeholder { color: var(--t3); }
.form input:focus { outline: none; border-color: var(--bronze-2); background: rgba(246,239,224,.08); }
.form-note { margin-top: 14px; }

/* ── footer ──────────────────────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line); background: var(--ink-1000); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-block: 54px 30px; }
@media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-grid > :first-child { grid-column: 1 / -1; } }
.foot h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--t3); margin-bottom: 14px; }
.foot li + li { margin-top: 9px; }
.foot a { color: var(--t2); font-size: 15px; }
.foot a:hover { color: var(--bronze-2); }
.foot-base { padding-block: 22px 40px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; }

/* ── reveal. transform + opacity only. never leave base at opacity 0, or a
   browser without IntersectionObserver renders a permanently blank page. ── */
.rv { opacity: 1; transform: none; }
html.js .rv { opacity: 0; transform: translateY(18px); }
html.js .rv.in { opacity: 1; transform: none; transition: opacity .8s var(--e-out), transform .8s var(--e-out); }
html.js .rv.d1.in { transition-delay: .07s; }
html.js .rv.d2.in { transition-delay: .14s; }
html.js .rv.d3.in { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
  html.js .rv, html.js .rv.in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ── the mobile sheet carries a description per item, because a menu of five
   product names is only useful if you know what each one does ───────────── */
.sheet a { display: flex; flex-direction: column; gap: 3px; }
.sh-l { font-size: 19px; font-weight: 500; }
.sh-d { font-family: var(--mono); font-size: 11.5px; letter-spacing: .01em; color: var(--t3); }
.sheet .nav-cta { display: inline-flex; align-items: center; justify-content: center; }
.sheet .nav-cta .sh-l, .sheet .nav-cta .sh-d { display: none; }

/* ── pricing tables. two columns, tabular figures, the billed rows lit ──── */
.ptable {
  margin-top: 30px;
  border: 1px solid rgba(30,27,23,.16);
  border-radius: 14px;
  overflow: hidden;
  background: #FBF8F1;
  box-shadow: 0 30px 60px -34px rgba(30,27,23,.34);
  max-width: 720px;
}
.ptable.dark {
  background: linear-gradient(180deg, rgba(246,239,224,.05), rgba(246,239,224,.015));
  border-color: var(--line2);
  box-shadow: none;
}
.prow {
  display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: baseline;
  padding: 16px clamp(16px, 2.4vw, 26px);
  border-top: 1px solid rgba(30,27,23,.10);
  font-size: 16px;
}
.ptable.dark .prow { border-top-color: var(--line); }
.prow:first-child { border-top: 0; }
.prow .num { font-size: 19px; letter-spacing: -.02em; }
.prow.head {
  background: rgba(30,27,23,.05);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(30,27,23,.62);
}
.ptable.dark .prow.head { background: rgba(246,239,224,.04); color: var(--t3); }
.prow.hi { background: rgba(176,122,60,.10); font-weight: 600; }
.prow.hi .num { color: #8A5A22; }
.ptable.dark .prow.hi { background: rgba(217,162,99,.09); }
.ptable.dark .prow.hi .num { color: var(--bronze-2); }

/* two-column blocks collapse. these carry inline grid declarations in the
   markup, so the override has to win on specificity, not on order. */
@media (max-width: 900px) {
  .two { grid-template-columns: 1fr !important; }
}
/* the receipt sits in an `auto` track on desktop; on a phone it must not
   force the row wider than the viewport. */
@media (max-width: 900px) { .receipt { max-width: 100%; } }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--bronze); color: var(--ink-1000); padding: 12px 18px; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip:focus { left: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   SHOWCASES — the product, running, at full capability.
   Every one is labelled a concept rendering. They demonstrate capability;
   they never present themselves as a customer's live data.
   ═══════════════════════════════════════════════════════════════════════════ */
.showcase {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line2);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(176,122,60,.14), transparent 60%),
    linear-gradient(180deg, #1B1712, #121009);
  box-shadow: 0 60px 120px -50px rgba(0,0,0,.9), 0 1px 0 rgba(246,239,224,.07) inset;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.sc-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(246,239,224,.03);
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--t3);
}
.sc-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red-2);
  box-shadow: 0 0 0 0 rgba(201,85,59,.55);
  flex: 0 0 auto;
}
.showcase.running .sc-dot { animation: pulse 1.6s var(--e) infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,85,59,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(201,85,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,85,59,0); }
}
.sc-num { margin-left: auto; color: var(--bronze-2); letter-spacing: .06em; }
.sc-body { padding: 20px 18px 22px; flex: 1; display: flex; flex-direction: column; gap: 12px; }

/* conversation turns */
.turn {
  max-width: 84%;
  padding: 12px 15px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s var(--e-out), transform .5s var(--e-out);
}
.turn.in { opacity: 1; transform: none; }
.turn.them { background: rgba(246,239,224,.06); border: 1px solid var(--line); align-self: flex-start; }
.turn.us {
  align-self: flex-end;
  background: linear-gradient(180deg, rgba(217,162,99,.20), rgba(176,122,60,.12));
  border: 1px solid rgba(217,162,99,.34);
  color: var(--t1);
}
.turn-who {
  display: block;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--t3); margin-bottom: 5px;
}
.turn.us .turn-who { color: var(--bronze-2); }

/* the result card that slides up when the job lands */
.sc-result {
  margin-top: auto;
  border-radius: 14px;
  border: 1px solid rgba(217,162,99,.4);
  background: linear-gradient(180deg, rgba(217,162,99,.15), rgba(176,122,60,.06));
  padding: 16px 17px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s var(--e-out), transform .6s var(--e-out);
}
.sc-result.in { opacity: 1; transform: none; }
.sc-result-h {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bronze-2); margin-bottom: 12px;
}
.sc-kv { display: grid; grid-template-columns: auto 1fr; gap: 7px 16px; font-size: 14px; }
.sc-kv dt { font-family: var(--mono); font-size: 11.5px; color: var(--t3); letter-spacing: .04em; padding-top: 2px; }
.sc-kv dd { margin: 0; color: var(--t1); }
.sc-bill {
  font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: 15px; color: var(--bronze-2);
  border: 1px solid rgba(217,162,99,.4); border-radius: 999px; padding: 3px 11px;
}

/* the hold ladder */
.ladder { display: flex; flex-direction: column; gap: 9px; }
.rung {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(246,239,224,.03);
  font-size: 14.5px; color: var(--t2);
  opacity: .34;
  transition: opacity .45s var(--e), border-color .45s var(--e), background .45s var(--e), color .45s var(--e);
}
.rung.done { opacity: 1; color: var(--t2); }
.rung.done .rung-i { background: rgba(217,162,99,.18); border-color: rgba(217,162,99,.5); color: var(--bronze-2); }
.rung.hit {
  opacity: 1; color: var(--t1);
  border-color: rgba(217,162,99,.55);
  background: linear-gradient(90deg, rgba(217,162,99,.16), rgba(217,162,99,.04));
}
.rung-i {
  width: 26px; height: 26px; border-radius: 8px; flex: 0 0 auto;
  display: grid; place-content: center;
  border: 1px solid var(--line2); background: rgba(246,239,224,.04);
  font-family: var(--mono); font-size: 10.5px; color: var(--t3);
}
.rung-t { margin-left: auto; font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 13px; color: var(--t3); }
.hold-clock {
  font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: clamp(38px, 5vw, 58px); line-height: 1; letter-spacing: -.03em;
  color: var(--bronze-2); margin: 6px 0 2px;
}
.hold-sub { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--t3); }
.hold-hit {
  margin-top: auto;
  border-radius: 14px; padding: 15px 16px;
  border: 1px solid rgba(201,85,59,.5);
  background: linear-gradient(180deg, rgba(201,85,59,.20), rgba(169,59,38,.08));
  font-weight: 600; font-size: 15.5px; color: var(--t1);
  display: flex; align-items: center; gap: 11px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s var(--e-out), transform .6s var(--e-out);
}
.hold-hit.in { opacity: 1; transform: none; }

/* the recover meter */
.meter-big {
  font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: clamp(40px, 5.6vw, 66px); line-height: 1; letter-spacing: -.035em;
  color: var(--bronze-2);
}
.meter-lab { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--t3); margin-bottom: 12px; }
.inv { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.inv-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center;
  padding: 11px 14px; border-radius: 11px;
  border: 1px solid var(--line); background: rgba(246,239,224,.03);
  font-size: 14.5px;
  transition: opacity .5s var(--e), border-color .5s var(--e), background .5s var(--e);
}
.inv-row .age { font-family: var(--mono); font-size: 12px; color: var(--t3); }
.inv-row .amt { font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 14.5px; color: var(--t1); }
.inv-row.cleared { border-color: rgba(217,162,99,.42); background: linear-gradient(90deg, rgba(217,162,99,.13), rgba(217,162,99,.03)); }
.inv-row.cleared .name { text-decoration: line-through; text-decoration-color: rgba(246,239,224,.35); color: var(--t3); }
.inv-row.cleared .amt { color: var(--bronze-2); }
.inv-row.cleared .age::after { content: ' PAID'; color: var(--bronze-2); letter-spacing: .1em; }

.sc-note {
  padding: 12px 18px 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; line-height: 1.5; color: var(--t3);
  background: rgba(246,239,224,.02);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING CARDS — one per product, identical anatomy, identical position.
   ═══════════════════════════════════════════════════════════════════════════ */
.pcards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 46px; align-items: stretch; }
@media (max-width: 1040px) { .pcards { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.pcard {
  display: flex; flex-direction: column;
  border-radius: 20px;
  border: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(246,239,224,.055), rgba(246,239,224,.014));
  padding: 26px 24px 24px;
  position: relative; overflow: hidden;
  transition: border-color .35s var(--e), transform .35s var(--e);
}
.pcard:hover { border-color: rgba(217,162,99,.45); transform: translateY(-4px); }
.pcard.lead { border-color: rgba(217,162,99,.42); background: linear-gradient(180deg, rgba(217,162,99,.10), rgba(246,239,224,.015)); }
.pcard::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,162,99,.7), transparent);
  opacity: 0; transition: opacity .35s var(--e);
}
.pcard:hover::before, .pcard.lead::before { opacity: 1; }
.pc-name { font-family: var(--serif); font-size: 30px; line-height: 1; letter-spacing: -.02em; }
.pc-for { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--bronze-2); margin-bottom: 12px; }
.pc-price {
  margin: 20px 0 4px;
  font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: 44px; line-height: 1; letter-spacing: -.04em; color: var(--t1);
}
.pc-unit { font-size: 14.5px; color: var(--t2); min-height: 42px; }
.pc-free {
  margin-top: 14px; padding: 9px 12px; border-radius: 10px;
  border: 1px dashed rgba(217,162,99,.4); background: rgba(217,162,99,.06);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .05em; color: var(--bronze-2);
}
.pc-list { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 11px; }
.pc-list li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--t2); }
.pc-list li::before {
  content: ''; flex: 0 0 auto; width: 7px; height: 7px; margin-top: 8px; border-radius: 2px;
  background: var(--bronze); transform: rotate(45deg);
}
.pc-foot { margin-top: auto; padding-top: 20px; }
.pc-econ {
  margin-top: 18px; padding: 13px 14px; border-radius: 12px;
  background: rgba(0,0,0,.28); border: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px; line-height: 1.7; color: var(--t2);
  font-variant-numeric: tabular-nums;
}
.pc-econ b { color: var(--bronze-2); font-weight: 500; }

/* the revenue against cost bar */
.econ-row { display: grid; grid-template-columns: 190px 1fr; gap: 20px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); }
@media (max-width: 720px) { .econ-row { grid-template-columns: 1fr; gap: 10px; } }
.econ-name { font-size: 16px; font-weight: 600; }
.econ-name span { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--t3); font-weight: 400; margin-top: 3px; }
.econ-track { position: relative; height: 44px; border-radius: 10px; background: rgba(246,239,224,.05); overflow: hidden; border: 1px solid var(--line); }
.econ-rev {
  position: absolute; inset: 0 auto 0 0; width: 0;
  background: linear-gradient(90deg, rgba(217,162,99,.34), rgba(217,162,99,.18));
  border-right: 1px solid rgba(217,162,99,.6);
  transition: width 1.2s var(--e-out);
}
.econ-cost {
  position: absolute; inset: 0 auto 0 0; width: 0;
  background: linear-gradient(90deg, var(--red), rgba(169,59,38,.5));
  transition: width 1.2s var(--e-out);
}
.econ-tags { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; font-family: var(--mono); font-size: 12.5px; font-variant-numeric: tabular-nums; }
.econ-tags .c { color: #F2C9BC; }
.econ-tags .r { color: var(--bronze-3); }

/* ── pricing card call to action + the interest form ──────────────────────── */
.pc-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  margin-top: 22px;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 15px; font-weight: 600;
  color: var(--t1);
  background: rgba(246,239,224,.055);
  border: 1px solid var(--line2);
  transition: background .25s var(--e), border-color .25s var(--e), transform .18s var(--e), color .25s var(--e);
}
.pc-cta:hover { background: rgba(217,162,99,.14); border-color: rgba(217,162,99,.5); color: var(--bronze-3); transform: translateY(-2px); }
.pcard.lead .pc-cta {
  color: var(--ink-1000);
  background: linear-gradient(180deg, var(--bronze-3), var(--bronze-2) 55%, var(--bronze));
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 12px 28px -14px rgba(176,122,60,.9);
}
.pcard.lead .pc-cta:hover { filter: brightness(1.06); color: var(--ink-1000); }

.iform { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 30px; }
@media (max-width: 720px) { .iform { grid-template-columns: 1fr; } }
.iform .full { grid-column: 1 / -1; }
.ifield { display: flex; flex-direction: column; gap: 7px; }
.ifield label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(30,27,23,.66);
}
.ifield input, .ifield select, .ifield textarea {
  padding: 13px 15px;
  border-radius: 11px;
  border: 1px solid rgba(30,27,23,.2);
  background: rgba(255,255,255,.65);
  color: var(--paper-ink);
  font-size: 16px;
  font-family: var(--sans);
  transition: border-color .2s var(--e), background .2s var(--e);
}
.ifield textarea { min-height: 104px; resize: vertical; }
.ifield input::placeholder, .ifield textarea::placeholder { color: rgba(30,27,23,.42); }
.ifield input:focus, .ifield select:focus, .ifield textarea:focus {
  outline: none; border-color: #8A5A22; background: #fff;
}
.iform .btn { grid-column: 1 / -1; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   POLISH
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── line-mask reveal on display headings ────────────────────────────────────
   Each authored line rises out of its own clip box. This is the single motion
   cue that separates a top-tier site from a competent one, and it costs one
   transform per line. Base state is VISIBLE: the mask is only applied once JS
   has split the heading, so a JS failure leaves plain readable text. */
.ln { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.ln-i { display: block; transform: translateY(108%); transition: transform .95s var(--e-out); }
.rv.split.in .ln-i { transform: none; }
.rv.split .ln:nth-child(2) .ln-i { transition-delay: .09s; }
.rv.split .ln:nth-child(3) .ln-i { transition-delay: .18s; }
.rv.split .ln:nth-child(4) .ln-i { transition-delay: .27s; }
/* the split heading does its own motion, so the generic reveal stands down */
html.js .rv.split { opacity: 1; transform: none; transition: none; }

/* ── the light follows the cursor across a card ──────────────────────────────
   Bronze is the only light source in this palette, so the most honest hover is
   a light that moves. Pointer-coarse devices never see it and never pay for it. */
.card, .pcard, .mode, .showcase { position: relative; }
.card::after, .pcard::after, .mode::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .45s var(--e);
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%),
              rgba(217,162,99,.13), transparent 62%);
}
@media (hover: hover) and (pointer: fine) {
  .card:hover::after, .pcard:hover::after, .mode:hover::after { opacity: 1; }
}

/* ── nav: an underline that grows from the middle ────────────────────────── */
.nav-links a::after {
  content: '';
  position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze-2), transparent);
  transform: scaleX(0);
  transition: transform .35s var(--e);
}
.nav-links a:hover::after, .nav-links a[aria-current='page']::after { transform: scaleX(1); }

/* ── the CTA gets a slow sheen, once, on hover ───────────────────────────── */
.btn-primary, .nav-cta, .pcard.lead .pc-cta { position: relative; overflow: hidden; }
.btn-primary::after, .nav-cta::after, .pcard.lead .pc-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.42) 50%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover::after, .nav-cta:hover::after, .pcard.lead .pc-cta:hover::after {
    transform: translateX(120%);
    transition: transform .85s var(--e-out);
  }
}

/* ── a hairline of bronze tracks reading progress ────────────────────────── */
.prog {
  position: fixed; inset: 0 auto auto 0; z-index: 300;
  height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--red), var(--bronze) 40%, var(--bronze-3));
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .ln-i { transform: none !important; transition: none !important; }
  .card::after, .pcard::after, .mode::after { display: none; }
  .btn-primary::after, .nav-cta::after, .pcard.lead .pc-cta::after { display: none; }
  .prog { display: none; }
}

/* ── WHERE EACH DOLLAR GOES ──────────────────────────────────────────────────
   The previous version drew every revenue bar at full width, so $19 and $1,500
   rendered identically and the chart carried no information across rows. Every
   row is now the SAME scale: one dollar of revenue from one event, split into
   what it costs and what is left. That is comparable by construction. */
.dollars { margin-top: 34px; }
.drow {
  display: grid; grid-template-columns: 210px 1fr 118px;
  gap: 22px; align-items: center;
  padding: 20px 0; border-top: 1px solid var(--line);
}
@media (max-width: 820px) { .drow { grid-template-columns: 1fr; gap: 10px; padding: 18px 0; } }
.dname { font-size: 16px; font-weight: 600; line-height: 1.3; }
.dname span {
  display: block; margin-top: 4px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--t3); font-weight: 400;
}
.dtrack {
  position: relative; height: 46px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line); background: rgba(246,239,224,.04);
  display: flex;
}
.dcost {
  width: 0; flex: 0 0 auto;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  transition: width 1.1s var(--e-out);
  display: flex; align-items: center; justify-content: flex-start;
  min-width: 3px;
}
.dkeep {
  flex: 1 1 auto;
  background: linear-gradient(90deg, rgba(217,162,99,.30), rgba(217,162,99,.16));
  display: flex; align-items: center; justify-content: flex-end;
}
.dlab {
  font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 12.5px;
  white-space: nowrap; padding: 0 12px;
}
.dcost .dlab { color: #FFE6DE; }
.dkeep .dlab { color: var(--bronze-3); }
/* when the cost slice is too thin to hold its own label, the label sits outside */
.dcost.thin .dlab { display: none; }
.dtrack.thin-cost .dkeep .dlab::before {
  content: attr(data-cost) '  cost  ·  ';
  color: #E9A08C;
}
.dtotal {
  font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: 17px; text-align: right; color: var(--t1); letter-spacing: -.02em;
}
.dtotal span { display: block; font-size: 11px; color: var(--t3); letter-spacing: .1em; margin-top: 3px; }
.dkey { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 24px; }
.dkey i { display: flex; align-items: center; gap: 8px; font-style: normal; font-family: var(--mono); font-size: 11.5px; color: var(--t3); }
.dkey b { width: 12px; height: 12px; border-radius: 3px; display: block; }

/* ── the derivation chain ───────────────────────────────────────────────────
   The old table put per-minute rates, a per-call total and a per-booked-job
   total in one column headed RATE. Three units, one heading, no operators.
   This shows the arithmetic as arithmetic. */
.chain { margin-top: 34px; display: flex; flex-direction: column; gap: 0; max-width: 860px; }
.step-row {
  display: grid; grid-template-columns: 44px 1fr auto;
  gap: 18px; align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line); border-bottom: 0;
  background: rgba(246,239,224,.028);
}
.step-row:first-child { border-radius: 14px 14px 0 0; }
.step-row:last-child { border-bottom: 1px solid var(--line); border-radius: 0 0 14px 14px; }
.step-row.out {
  background: linear-gradient(90deg, rgba(217,162,99,.14), rgba(217,162,99,.04));
  border-color: rgba(217,162,99,.4);
}
.op {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-content: center;
  font-family: var(--mono); font-size: 15px;
  color: var(--bronze-2); border: 1px solid rgba(217,162,99,.34); background: rgba(217,162,99,.08);
}
.step-t { font-size: 15.5px; line-height: 1.45; }
.step-t b { color: var(--t1); font-weight: 600; }
.step-t span { display: block; margin-top: 3px; font-size: 13px; color: var(--t3); }
.step-v {
  font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: 18px; letter-spacing: -.02em; color: var(--t1); white-space: nowrap;
}
.step-row.out .step-v { color: var(--bronze-2); font-size: 22px; }
@media (max-width: 660px) {
  .step-row { grid-template-columns: 34px 1fr; row-gap: 8px; }
  .step-v { grid-column: 2; text-align: left; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   THE USE-CASE CHOOSER
   This is SEGMENTATION, not a security control. Nothing is protected by it and
   nothing should ever be. Every section is visible by default; filtering only
   happens after a deliberate choice, so no-JS readers and crawlers get the
   whole page. If anything ever needs actual protection, it goes server side.
   ═══════════════════════════════════════════════════════════════════════════ */
.gate { padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 80px)); }
.gate-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 40px; }
@media (max-width: 900px) { .gate-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

.gc {
  position: relative;
  display: flex; flex-direction: column;
  text-align: left;
  padding: 28px 26px 26px;
  border-radius: 20px;
  border: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(246,239,224,.05), rgba(246,239,224,.012));
  cursor: pointer;
  transition: border-color .3s var(--e), transform .3s var(--e), background .3s var(--e);
  font: inherit; color: inherit;
}
.gc:hover { border-color: rgba(217,162,99,.5); transform: translateY(-4px); }
.gc::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,162,99,.7), transparent);
  opacity: 0; transition: opacity .3s var(--e);
}
.gc:hover::before { opacity: 1; }
.gc-i {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-content: center; margin-bottom: 18px;
  border: 1px solid rgba(217,162,99,.34); background: rgba(217,162,99,.09);
  font-family: var(--mono); font-size: 15px; color: var(--bronze-2);
}
.gc-t { font-family: var(--serif); font-size: 27px; line-height: 1.05; letter-spacing: -.02em; }
.gc-d { margin-top: 12px; font-size: 15px; line-height: 1.55; color: var(--t2); }
.gc-w { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--t3); }
.gc-go {
  margin-top: 20px; display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--bronze-2);
}
.gc-go::after { content: '→'; transition: transform .3s var(--e); }
.gc:hover .gc-go::after { transform: translateX(4px); }

/* the chip that lets you change your mind, and says what you are looking at */
.aud-chip {
  display: none;
  align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 11px 16px; border-radius: 999px;
  border: 1px solid var(--line2); background: rgba(246,239,224,.04);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; color: var(--t3);
  width: max-content; max-width: 100%;
}
html.js[data-aud] .aud-chip { display: flex; }
.aud-chip b { color: var(--bronze-2); font-weight: 500; letter-spacing: .04em; }
.aud-chip button {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--t2); text-decoration: underline; text-underline-offset: 3px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em;
}
.aud-chip button:hover { color: var(--bronze-2); }

/* the filter itself. only ever active once a choice exists. */
html.js[data-aud] .gate { display: none; }
html.js[data-aud='consumer'] [data-aud]:not([data-aud~='consumer']),
html.js[data-aud='business'] [data-aud]:not([data-aud~='business']),
html.js[data-aud='both']     [data-aud]:not([data-aud~='both']) { display: none; }
