/* ===========================================================================
   Storm Season Experts — design system
   Direction: "The Instrument". A weather bureau bulletin crossed with a legal
   brief. Marketing surfaces are the storm (dark, atmospheric). Reading surfaces
   are the document (warm paper). No stock storm photography anywhere: the
   authority comes from typography, data and line-work, which also keeps the
   site fast, which keeps it ranking.
   =========================================================================== */

:root {
  /* Storm surfaces */
  --ink:        #0A0E16;
  --ink-2:      #111825;
  --ink-3:      #19212F;
  --ink-line:   #26303F;

  /* Document surfaces */
  --paper:      #F5F2EB;
  --paper-2:    #EDE8DE;
  --paper-line: #D9D2C4;
  --paper-ink:  #1A1D24;
  --paper-mute: #5C6270;

  /* Signal */
  --signal:      #E8A33D;
  /* --signal-deep is the colour of every inline body link on light surfaces.
     At #B87A19 it measured 3.22:1 on --paper, below AA, and was actually more
     legible on hover than at rest. #96620F measures 4.64:1. */
  --signal-deep: #96620F;
  --signal-amber:#B87A19;
  --signal-wash: rgba(232,163,61,0.10);
  --cold:        #7FB2CE;
  --alert:       #D9705A;
  --good:        #6FA88A;

  /* Storm text. --faint was #666F7E, which measured 3.5-3.8:1 on the dark
     surfaces: below WCAG AA. It carries the refund, privacy and legal copy,
     which is the last text that should be hard to read. Now 5.2-6.2:1. */
  --text:  #E7EAF0;
  --mute:  #929BAB;
  --faint: #8A93A3;

  /* System */
  --measure: 68ch;
  --shell: 1180px;
  --narrow: 760px;
  --r: 4px;
  --r-lg: 8px;

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

/* --- Typography ---------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 650; letter-spacing: -0.01em; }

p { margin: 0 0 1.15em; max-width: var(--measure); text-wrap: pretty; }

a { color: var(--signal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #F2BC63; }

strong { font-weight: 650; color: #FFF; }
.paper strong { color: #000; }

/* Eyebrow: the bulletin metadata line */
.eyebrow {
  font-family: var(--mono);
  font-size: .705rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--signal-deep), transparent);
  opacity: .5;
}
.paper .eyebrow { color: var(--signal-deep); }
.paper .eyebrow::after { background: linear-gradient(90deg, var(--paper-line), transparent); opacity: 1; }

.lede { font-size: clamp(1.1rem, 1.9vw, 1.3rem); line-height: 1.55; color: var(--text); }
.paper .lede { color: #2A2E38; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.fig { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }

/* --- Layout -------------------------------------------------------------- */

.shell { width: min(100% - 2.6rem, var(--shell)); margin-inline: auto; }
.narrow { width: min(100% - 2.6rem, var(--narrow)); margin-inline: auto; }

section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }

.paper {
  background: var(--paper);
  color: var(--paper-ink);
}
.paper h1, .paper h2, .paper h3, .paper h4 { color: #12151B; }
.paper p { color: #333843; }
.paper a { color: var(--signal-deep); }
.paper a:hover { color: #8F5F10; }

.band-2 { background: var(--ink-2); }

/* Isobar texture: pressure-map line work, drawn not loaded */
.isobars {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
  opacity: .5;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 78%);
}
.isobars svg { width: 130%; height: 100%; margin-left: -15%; }
.isobars path { fill: none; stroke: var(--ink-line); stroke-width: 1; }

/* --- Bulletin header ----------------------------------------------------- */

.masthead {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,14,22,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--ink-line);
}
.masthead-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: .85rem 0;
}
.wordmark {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-weight: 600; font-size: 1.06rem;
  color: #FFF; text-decoration: none; letter-spacing: -.01em; white-space: nowrap;
}
.wordmark:hover { color: #FFF; }
.wordmark .glyph { flex: none; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
/* :not(.btn) matters: a bare `.nav a` rule outranks `.btn-primary` on
   specificity and silently greys out the CTA label on the amber fill. */
.nav a:not(.btn) {
  color: var(--mute); text-decoration: none;
  font-size: .875rem; font-weight: 500; white-space: nowrap;
}
.nav a:not(.btn):hover { color: var(--text); }
@media (max-width: 800px) { .nav .hide-sm { display: none; } }

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem;
  font-family: var(--sans); font-size: .95rem; font-weight: 600;
  letter-spacing: -.005em;
  border-radius: var(--r); border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .14s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #F0AE47, var(--signal-deep));
  color: #1A1204; border-color: #F2BC63;
  box-shadow: 0 1px 0 rgba(255,255,255,.28) inset, 0 8px 24px -10px rgba(232,163,61,.55);
}
.btn-primary:hover { color: #1A1204; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--ink-line); }
.btn-ghost:hover { color: #FFF; border-color: #3C4859; }
.paper .btn-ghost { color: var(--paper-ink); border-color: var(--paper-line); }
.paper .btn-ghost:hover { border-color: #B8AF9C; color: #000; }
.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* --- Hero ---------------------------------------------------------------- */

.hero { padding-top: clamp(3.5rem, 8vw, 6rem); padding-bottom: clamp(3.5rem, 8vw, 6rem); }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: .45em; }
.hero h1 em {
  font-style: normal;
  color: var(--signal);
  display: block;
}

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem;
  margin-top: 2.4rem; padding-top: 1.6rem;
  border-top: 1px solid var(--ink-line);
}
.trust-strip div { min-width: 0; }
.trust-strip .n {
  font-family: var(--mono); font-size: 1.5rem; font-weight: 500;
  color: #FFF; letter-spacing: -.03em; display: block; line-height: 1.1;
}
.trust-strip .l {
  font-size: .78rem; color: var(--mute); display: block; margin-top: .3rem;
  max-width: 20ch; line-height: 1.35;
}

/* --- The offer card (the "instrument") ----------------------------------- */

.offer-card {
  background: linear-gradient(180deg, var(--ink-2), #0D131E);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 1.9rem;
  position: relative;
  box-shadow: 0 30px 70px -35px rgba(0,0,0,.9);
}
.offer-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 2px;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.offer-tab {
  position: absolute; top: -1px; right: 1.7rem;
  transform: translateY(-100%);
  background: var(--signal); color: #1A1204;
  font-family: var(--mono); font-size: .66rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .38rem .75rem; border-radius: var(--r) var(--r) 0 0;
}
.price-row { display: flex; align-items: baseline; gap: .8rem; margin: .2rem 0 .3rem; }
.price {
  font-family: var(--mono); font-size: 3.3rem; font-weight: 500;
  color: #FFF; letter-spacing: -.045em; line-height: 1;
}
.price-note { font-size: .85rem; color: var(--mute); }
.anchor-line {
  font-size: .875rem; color: var(--mute);
  padding: .8rem 0 1.1rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--ink-line);
}
.anchor-line s { color: var(--faint); }
.anchor-line b { color: var(--signal); font-weight: 600; font-family: var(--mono); }

.incl { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.incl li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .5rem 0; font-size: .93rem; color: var(--text);
  border-bottom: 1px solid rgba(38,48,63,.5);
}
.incl li:last-child { border-bottom: 0; }
.incl svg { flex: none; margin-top: .28rem; color: var(--signal); }

.guarantee {
  display: flex; gap: .8rem; align-items: flex-start;
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid var(--ink-line);
  font-size: .83rem; color: var(--mute); line-height: 1.5;
}
.guarantee svg { flex: none; margin-top: .15rem; color: var(--good); }

/* --- Answer block (AEO: the directly-quotable passage) ------------------- */

.answer {
  border-left: 3px solid var(--signal);
  background: var(--signal-wash);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--r) var(--r) 0;
  margin: 0 0 2rem;
}
.answer p { margin: 0; font-size: 1.06rem; line-height: 1.6; }
.paper .answer { background: rgba(184,122,25,.09); }

/* --- Data table ---------------------------------------------------------- */

.table-wrap { overflow-x: auto; margin: 0 0 1.6rem; -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; min-width: 480px; font-size: .9rem; }
th, td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--ink-line); vertical-align: top; }
th {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mute); font-weight: 500;
  border-bottom-color: var(--signal-deep);
}
td.num { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
.paper th, .paper td { border-bottom-color: var(--paper-line); }
.paper th { color: var(--paper-mute); border-bottom-color: var(--signal-deep); }

/* --- Cards / grids ------------------------------------------------------- */

.grid { display: grid; gap: 1.5rem; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .g3 { grid-template-columns: 1fr; } .g2 { grid-template-columns: 1fr; } }

.card {
  background: var(--ink-2); border: 1px solid var(--ink-line);
  border-radius: var(--r-lg); padding: 1.6rem;
}
.paper .card { background: #FFF; border-color: var(--paper-line); }
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }
.card .num-tag {
  font-family: var(--mono); font-size: .72rem; color: var(--signal);
  letter-spacing: .1em; display: block; margin-bottom: .7rem;
}

/* Module list (the product contents) */
.modules { counter-reset: m; display: grid; gap: 0; }
.module {
  display: grid; grid-template-columns: 3.6rem 1fr; gap: 1.4rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--paper-line);
  align-items: start;
}
.module:last-child { border-bottom: 0; }
.module::before {
  counter-increment: m; content: counter(m, decimal-leading-zero);
  font-family: var(--mono); font-size: .95rem; color: var(--signal-deep);
  padding-top: .15rem;
}
.module h3 { margin-bottom: .35rem; font-size: 1.2rem; }
.module p { margin: 0; font-size: .95rem; }
@media (max-width: 620px) { .module { grid-template-columns: 2.6rem 1fr; gap: 1rem; } }

/* --- FAQ ----------------------------------------------------------------- */

details {
  border-bottom: 1px solid var(--paper-line);
  padding: 1.15rem 0;
}
.paper details summary { color: #12151B; }
details summary {
  cursor: pointer; font-weight: 600; font-size: 1.02rem;
  list-style: none; display: flex; justify-content: space-between;
  gap: 1.5rem; align-items: center; color: #FFF;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+"; font-family: var(--mono); font-size: 1.3rem;
  color: var(--signal-deep); flex: none; line-height: 1;
}
details[open] summary::after { content: "\2212"; }
details > *:not(summary) { margin-top: .9rem; }
details p:last-child { margin-bottom: 0; }

/* --- Callouts ------------------------------------------------------------ */

.note {
  border: 1px solid var(--paper-line); border-left: 3px solid var(--cold);
  background: rgba(127,178,206,.09);
  padding: 1.1rem 1.3rem; border-radius: 0 var(--r) var(--r) 0; margin: 0 0 1.5rem;
}
.note p:last-child { margin-bottom: 0; }
.note .note-h {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .11em;
  text-transform: uppercase; color: #3A6E8C; margin-bottom: .5rem; display: block;
}

.warn { border-left-color: var(--alert); background: rgba(217,112,90,.09); }
.warn .note-h { color: #B4503A; }

/* --- Footer -------------------------------------------------------------- */

footer {
  background: #06090F; border-top: 1px solid var(--ink-line);
  padding: 3.5rem 0 2.5rem; font-size: .875rem; color: var(--mute);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; gap: 1.8rem; } }
footer h4 {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--faint); margin-bottom: .9rem; font-weight: 500;
}
footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin-bottom: .5rem; }
footer a { color: var(--mute); text-decoration: none; }
footer a:hover { color: var(--text); }
.disclaimer {
  border-top: 1px solid var(--ink-line); padding-top: 1.8rem;
  font-size: .8rem; color: var(--faint); line-height: 1.6;
}
.disclaimer p { max-width: 90ch; }

/* --- Utilities ----------------------------------------------------------- */

.center { text-align: center; }
.center p { margin-inline: auto; }
.mt0 { margin-top: 0; } .mb0 { margin-bottom: 0; }
.stack-sm > * + * { margin-top: .8rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 2rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip:focus {
  position: fixed; top: .5rem; left: .5rem; width: auto; height: auto;
  clip: auto; z-index: 200; background: var(--signal); color: #000;
  padding: .7rem 1.1rem; border-radius: var(--r); font-weight: 600;
}
:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }

/* Breadcrumb */
.crumb { font-size: .8rem; color: var(--paper-mute); margin-bottom: 1.5rem; }
.crumb a { color: var(--paper-mute); text-decoration: none; }
.crumb a:hover { color: var(--signal-deep); text-decoration: underline; }

/* ===========================================================================
   Landing page components.
   The v1 page was a wall of text with no imagery, which is the wrong thing to
   hand someone whose roof just came off. These give the page rhythm: full-bleed
   image bands, stat tiles, alternating splits, and short measured text blocks.
   =========================================================================== */

/* --- Full-bleed cinematic hero ------------------------------------------- */
.hero-full {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-full .bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero-full .bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 58% 42%;
}
/* Two scrims, both deliberately light. The first version buried the subject:
   the whole point of the photograph is that a real person is standing in a
   driveway looking at her own roof, so the gradient has to protect the text
   without erasing her. */
.hero-full::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, var(--ink) 1%, rgba(10,14,22,.82) 26%, rgba(10,14,22,.22) 58%, rgba(10,14,22,.32) 100%),
    linear-gradient(to right, rgba(10,14,22,.62) 0%, rgba(10,14,22,.18) 52%, transparent 82%);
}
.hero-full h1 { max-width: 17ch; }
.hero-copy { max-width: 46rem; }

/* --- Full-width image band ----------------------------------------------- */
.band-img {
  position: relative; overflow: hidden;
  height: clamp(240px, 34vw, 420px);
}
.band-img img { width: 100%; height: 100%; object-fit: cover; }
.band-img .cap {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(10,14,22,.95), transparent);
  padding: clamp(2rem,5vw,3.5rem) 0 1.4rem;
}
.band-img .cap p {
  margin: 0; color: var(--text);
  font-family: var(--display); font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  line-height: 1.25; max-width: 34ch; text-wrap: balance;
}

/* --- Alternating image/text split ---------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split.flip > .split-media { order: 2; }
.split-media img {
  width: 100%; border-radius: var(--r-lg);
  aspect-ratio: 4/3; object-fit: cover;
  border: 1px solid var(--ink-line);
}
.paper .split-media img { border-color: var(--paper-line); }
.split-text > *:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 1.8rem; }
  .split.flip > .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/9; }
}

/* --- Stat tiles ----------------------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--ink-line); border: 1px solid var(--ink-line);
  border-radius: var(--r-lg); overflow: hidden;
}
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--ink-2); padding: 1.5rem 1.3rem; }
.stat .n {
  display: block; font-family: var(--mono); font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: #FFF; letter-spacing: -.045em; line-height: 1; margin-bottom: .5rem;
}
.stat .n.amber { color: var(--signal); }
.stat .l { display: block; font-size: .8rem; color: var(--mute); line-height: 1.4; }
.stat .src {
  display: block; font-family: var(--mono); font-size: .62rem;
  color: var(--faint); margin-top: .6rem; letter-spacing: .04em;
}

/* --- Pull quote ----------------------------------------------------------- */
.pull {
  font-family: var(--display); font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  line-height: 1.3; color: #FFF; max-width: 24ch;
  border-left: 3px solid var(--signal); padding-left: clamp(1.2rem, 3vw, 2rem);
  margin: 0; text-wrap: balance;
}
.paper .pull { color: #12151B; }

/* --- Module cards --------------------------------------------------------- */
.mod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--paper-line); border: 1px solid var(--paper-line);
  border-radius: var(--r-lg); overflow: hidden; }
@media (max-width: 1000px) { .mod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mod-grid { grid-template-columns: 1fr; } }
.mod-card { background: #FFF; padding: 1.5rem 1.3rem; }
.mod-card .n {
  font-family: var(--mono); font-size: .7rem; color: var(--signal-deep);
  letter-spacing: .12em; display: block; margin-bottom: .7rem;
}
.mod-card h3 { font-size: 1.05rem; margin-bottom: .4rem; line-height: 1.25; }
.mod-card p { font-size: .87rem; margin: 0; color: #4A5060; }

/* --- Document chips ------------------------------------------------------- */
.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
@media (max-width: 800px) { .docs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .docs-grid { grid-template-columns: 1fr; } }
.doc-chip {
  background: #FFF; border: 1px solid var(--paper-line);
  border-left: 3px solid var(--signal-deep);
  border-radius: 0 var(--r) var(--r) 0; padding: .95rem 1.1rem;
  display: flex; gap: .8rem; align-items: flex-start;
}
.doc-chip .num {
  font-family: var(--mono); font-size: .68rem; color: var(--signal-deep);
  padding-top: .15rem; flex: none;
}
.doc-chip span.t { font-size: .9rem; font-weight: 600; color: #1A1D24; line-height: 1.3; }
.doc-chip span.f {
  display: block; font-family: var(--mono); font-size: .62rem;
  color: var(--paper-mute); margin-top: .25rem; letter-spacing: .06em;
}

/* --- Sticky buy bar ------------------------------------------------------- */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(10,14,22,.94); backdrop-filter: saturate(140%) blur(12px);
  border-top: 1px solid var(--ink-line);
  transform: translateY(110%); transition: transform .3s ease;
  padding: .8rem 0;
}
.buybar.on { transform: translateY(0); }
.buybar-in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.buybar .t { font-size: .9rem; color: var(--text); }
.buybar .t b { color: #FFF; }
.buybar .t span { color: var(--mute); }
@media (max-width: 640px) {
  .buybar .t span { display: none; }
  .buybar-in { gap: .8rem; }
  .buybar .btn { padding: .8rem 1.1rem; font-size: .88rem; }
}

/* --- Price block ---------------------------------------------------------- */
.price-hero {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,4vw,3.5rem);
  align-items: center;
}
@media (max-width: 860px) { .price-hero { grid-template-columns: 1fr; } }
.vs-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.vs-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--ink-line); }
.vs-table tr:last-child td { border-bottom: 0; }
.vs-table .who { color: var(--mute); }
.vs-table .amt { font-family: var(--mono); text-align: right; white-space: nowrap; color: var(--text); }
.vs-table tr.us { background: var(--signal-wash); }
.vs-table tr.us td { color: #FFF; font-weight: 600; }
.vs-table tr.us .amt { color: var(--signal); }
