/* Starline Solutions — site.css v1.0.0 (2026-08-15)
 * One landing page. Large type, minimal chrome, motion carries the interest.
 * Near-black page, opaque cool silver ink ramp, ONE blue accent, sharp edges.
 * No glow: zero box-shadow, zero radial-gradient, zero text-shadow, zero blur filter.
 * Depth is 1px hairlines — every surface change carries one.
 * Every animation initial state is set in site.js at RUNTIME, never here, so a no-JS
 * render shows the finished page.
 */

/* ─────────────────────────────────────────────────────────── TOKENS ───────── */
:root {
  color-scheme: dark;

  --black-deep:    #000000;   /* loader stage only */
  --black:         #07080A;   /* page */
  --black-well:    #0B0D10;   /* apply + footer */
  --black-raise:   #101216;   /* nav fill, canvas field */
  --black-raise-2: #171A1F;   /* hover — this replaces every glow */

  /* INK — opaque, cool. Ratios vs --black: 17.40 / 14.43 / 9.70 / 6.46 / 4.12 / 2.50 */
  --ink:   #EDEFF3;
  --ink-1: #D7DBE2;
  --ink-2: #AEB5C0;
  --ink-3: #8B939F;   /* body copy — the floor for anything under 24px */
  --ink-4: #6A727E;   /* LARGE TEXT ONLY (>=24px) */
  --ink-5: #4A515B;   /* decorative only */
  --ink-6: #31363E;

  --rule-hi:   rgba(215,219,226,0.24);
  --rule:      rgba(215,219,226,0.13);
  --rule-soft: rgba(215,219,226,0.07);

  /* the one accent — hsl(209,61%,51%), deliberately outside the SaaS-blue band */
  --blue:       #3583CE;
  --blue-hover: #5FA0DE;
  --blue-press: #2A6BAB;
  --blue-fill:  #1B4A80;   /* the filled buttons; label in --ink = 7.80:1 */
  --focus:      #5FA0DE;

  --display: 'DM Display', 'DM Display Fallback', Archivo, Helvetica, Arial, sans-serif;
  --sans:    'Helvetica Neue', Helvetica, Arial, 'Liberation Sans', sans-serif;
  --mono:    'DM Mono', 'DM Mono Fallback', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* SCALE — bigger than v1 across the board. 11px is the floor. */
  --fs-meta:    11px;
  --fs-small:   14px;
  --fs-body:    18px;
  --fs-lead:    clamp(20px, 1.7vw, 26px);
  --fs-h3:      clamp(30px, 4.4vw, 68px);
  --fs-h2:      clamp(38px, 6.2vw, 104px);
  --fs-h1:      clamp(36px, 8.4vw, 132px);
  /* sized so all three metrics sit inside one sticky viewport together — the whole
     point is seeing the three numbers land at once, not one at a time */
  --fs-metric:  clamp(44px, 7.4vw, 118px);

  /* TRACKING — tightens as size grows. Never positive. */
  --ls-h1: -0.052em; --ls-h2: -0.046em; --ls-h3: -0.038em;
  --ls-lead: -0.024em; --ls-body: -0.008em; --ls-small: -0.012em; --ls-meta: -0.01em;

  --lh-h1: 0.90; --lh-h2: 0.94; --lh-h3: 1.02;
  --lh-lead: 1.42; --lh-body: 1.52; --lh-meta: 1.14;

  --w-body: 400; --w-mid: 500;

  --sp-2: 8px; --sp-3: 16px; --sp-4: 26px; --sp-5: 44px; --sp-6: 72px;
  --sp-7: clamp(84px, 10.4vw, 150px);
  --sp-8: clamp(120px, 14vw, 220px);

  --safe:      clamp(22px, 4.2vw, 68px);
  --frame-max: 1560px;
  --measure:   38rem;
  --nav-h:     62px;

  /* EASING — four curves, defined once, var()-referenced from CSS and from the
     loader's inline styles so a curve can never drift between the two layers. */
  --ease-out:       cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);

  --t-press: 120ms; --t-state: 180ms;
}

/* ───────────────────────────────────────────────────────────── FONTS ─────── */
@font-face {
  font-family: 'DM Display';
  src: url('/assets/fonts/Archivo-Variable.woff2?v=20260812b') format('woff2');
  font-weight: 400 600; font-stretch: 62% 125%; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Display Fallback';
  src: local('Helvetica Neue'), local('Helvetica'), local('Arial');
  ascent-override: 88%; descent-override: 22%; line-gap-override: 0%; size-adjust: 100%;
}
@font-face {
  font-family: 'DM Mono';
  src: url('/assets/fonts/MartianMono-Variable.woff2?v=20260812b') format('woff2');
  font-weight: 300 500; font-stretch: 75% 112%; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Mono Fallback';
  src: local('Menlo'), local('DejaVu Sans Mono'), local('Consolas');
  ascent-override: 78%; descent-override: 20%; line-gap-override: 0%; size-adjust: 112%;
}

/* ────────────────────────────────────────────────────────────── BASE ─────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
.nav *, .hero *, section *, .footer *, .btn, #loader * { border-radius: 0; }

html { scroll-behavior: auto; scrollbar-color: #31363E #07080A; }
body {
  background: var(--black);
  color: var(--ink-3);
  font: var(--w-body) var(--fs-body)/var(--lh-body) var(--sans);
  letter-spacing: var(--ls-body);
  overflow-x: clip;          /* clip, NOT hidden — hidden breaks position:sticky */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ol, ul { list-style: none; }
::selection { background: #EDEFF3; color: #07080A; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

h1, h2, h3 { font-family: var(--display); font-weight: var(--w-body); font-stretch: 112%; color: var(--ink); }
h1 { font-size: var(--fs-h1); line-height: var(--lh-h1); letter-spacing: var(--ls-h1); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); letter-spacing: var(--ls-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-h3); letter-spacing: var(--ls-h3); }

.wrap { max-width: var(--frame-max); margin: 0 auto; padding: 0 var(--safe); }

.label {
  display: inline-block;
  font: var(--w-body) var(--fs-meta)/var(--lh-meta) var(--mono);
  font-stretch: 100%;
  letter-spacing: var(--ls-meta);
  text-transform: uppercase;
  color: var(--ink-2);
  font-feature-settings: 'case';
  font-variant-numeric: tabular-nums;
}
.sect-label { display: block; margin-bottom: var(--sp-6); }
.accent { color: var(--blue); font-weight: inherit; font-style: normal; }
.arr { display: inline-block; transition: transform 350ms var(--ease-out); }
a:hover .arr, button:hover .arr { transform: translateX(5px); }

/* ─────────────────────────────────────── FIXED DECORATIVE LAYERS ─────────── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 2;
  opacity: 0.035;
  background-size: 180px 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}
.frame-lines { position: fixed; inset: 0; pointer-events: none; z-index: 1; }
.frame-lines span { position: absolute; top: 0; bottom: 0; width: 1px; background: var(--rule-soft); }
.frame-lines span:nth-child(1) { left: 33.333%; }
.frame-lines span:nth-child(2) { left: 66.666%; }

.progress-rule { position: fixed; top: 0; left: 0; right: 0; height: 1px; pointer-events: none; z-index: 45; }
.progress-rule i { display: block; height: 1px; width: 100%; background: var(--blue); transform: scaleX(0); transform-origin: left; }

/* ─────────────────────────────────────────────────────────────── NAV ─────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 40; }
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--frame-max); margin: 0 auto;
  padding: 0 var(--safe);
  background: rgba(7, 8, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-bottom-color var(--t-state) var(--ease-out);
}
.nav.is-scrolled .nav-bar { border-bottom-color: var(--rule); }
.nav-mark-name {
  font: var(--w-mid) 12px/1 var(--mono);
  letter-spacing: -0.01em; color: var(--ink);
  font-feature-settings: 'case';
}
.nav-mark-name span { color: var(--ink-3); font-weight: var(--w-body); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font: var(--w-body) var(--fs-meta)/1 var(--mono);
  letter-spacing: var(--ls-meta); text-transform: uppercase;
  color: var(--ink); padding: 10px 0;
  border-bottom: 1px solid var(--rule-hi);
  transition: border-bottom-color var(--t-state) var(--ease-out);
}
.nav-cta:hover { border-bottom-color: var(--blue); }

/* ───────────────────────────────────────────────────────────── BUTTONS ───── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 30px;
  border: 1px solid var(--rule-hi);
  font: var(--w-body) var(--fs-meta)/1 var(--mono);
  letter-spacing: var(--ls-meta); text-transform: uppercase;
  color: var(--ink-2);
  transition: border-color var(--t-state) var(--ease-out),
              color var(--t-state) var(--ease-out),
              background var(--t-state) var(--ease-out),
              transform var(--t-press) var(--ease-out);
}
.btn:hover { border-color: var(--ink-4); color: var(--ink); background: var(--black-raise-2); }
.btn:active { transform: scale(0.97); }
.btn--fill {
  background: var(--blue-fill); border-color: var(--blue-fill);
  color: var(--ink); font-weight: var(--w-mid);
}
.btn--fill:hover { background: var(--blue-press); border-color: var(--blue-press); color: var(--ink); }

/* ────────────────────────────────────────────────────────────── HERO ─────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  background: var(--black-raise);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(7,8,10,0.55) 0%, rgba(7,8,10,0.05) 26%,
    rgba(7,8,10,0.30) 58%, rgba(7,8,10,0.88) 100%);
}
.hero-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--frame-max); margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) var(--safe) clamp(72px, 11svh, 132px);
}
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: clamp(26px, 4svh, 48px); }
.hero-eyebrow .rule { display: block; width: 56px; height: 1px; background: var(--ink-4); transform-origin: left; }
.hero-line { display: block; overflow: hidden; }
.hero-line > span { display: inline-block; }
.hero-foot-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-5);
  margin-top: clamp(40px, 6svh, 72px);
}
.hero-sub { font-size: var(--fs-lead); line-height: var(--lh-lead); letter-spacing: var(--ls-lead); color: var(--ink-2); max-width: var(--measure); }
.hero-scroll {
  position: absolute; z-index: 3; right: var(--safe); bottom: 22px;
  /* --ink-4 is 4.12:1 and is legal only at >=24px; at 11px this must be --ink-3 */
  color: var(--ink-3); pointer-events: none;
}

/* ───────────────────────────────────────────────── PROOF / THE NUMBERS ──── */
.proof { position: relative; background: var(--black); border-top: 1px solid var(--rule-hi); min-height: 100svh; }
.proof.on { min-height: 260svh; }          /* runway opened by JS only */
.proof-pin {
  position: sticky; top: 0;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  max-width: var(--frame-max); margin: 0 auto;
  padding: calc(var(--nav-h) + var(--sp-6)) var(--safe) var(--sp-6);
}
.proof-head { margin-bottom: clamp(26px, 3.4vw, 52px); }
.proof-head .label { display: block; margin-bottom: var(--sp-3); }
.proof-title { font-size: clamp(28px, 3.4vw, 52px); line-height: 1.04; letter-spacing: var(--ls-h3); }

.metrics { border-top: 1px solid var(--rule); }
.metric {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.35fr);
  align-items: baseline;
  gap: clamp(16px, 3vw, 52px);
  padding: clamp(12px, 1.8vw, 24px) 0;
  border-bottom: 1px solid var(--rule);
}
.metric-name { color: var(--ink-2); }
.metric-before {
  font: var(--w-body) var(--fs-small)/1 var(--mono);
  letter-spacing: var(--ls-small);
  /* still information, just superseded — the strike-through carries the de-emphasis,
     so the colour does not also have to drop below AA */
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  position: relative;
  white-space: nowrap;
}
.metric-before::after {
  content: ''; position: absolute; left: -2px; right: -2px; top: 50%;
  height: 1px; background: var(--ink-5);
}
.metric-val {
  justify-self: end;
  font-family: var(--display); font-stretch: 112%; font-weight: var(--w-body);
  font-size: var(--fs-metric);
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.proof-note {
  margin-top: var(--sp-5);
  font-size: var(--fs-small); line-height: 1.5; letter-spacing: var(--ls-small);
  color: var(--ink-3); max-width: var(--measure);
}

/* ────────────────────────────────────────────────────────── SERVICES ─────── */
.svc { background: var(--black); border-top: 1px solid var(--rule-hi); padding: var(--sp-8) 0; }
.svc-row {
  display: grid;
  grid-template-columns: 6ch minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(20px, 3.4vw, 64px);
  align-items: start;
  padding: clamp(34px, 4.6vw, 68px) 0;
  border-top: 1px solid var(--rule);
  transition: background var(--t-state) var(--ease-out);
}
.svc-row:first-child { border-top: 1px solid var(--rule-hi); }
.svc-row:last-child { border-bottom: 1px solid var(--rule); }
.svc-row:hover { background: var(--black-raise-2); }
.svc-n { color: var(--ink-3); padding-top: 0.9em; }
.svc-name { color: var(--ink); }
.svc-body { font-size: var(--fs-lead); line-height: var(--lh-lead); letter-spacing: var(--ls-lead); color: var(--ink-3); max-width: var(--measure); padding-top: 0.35em; }

/* ──────────────────────────────────────────────────────────── BUNDLE ─────── */
.bundle { background: var(--black); border-top: 1px solid var(--rule-hi); padding: var(--sp-8) 0; }
.bundle-title { max-width: 18ch; margin-bottom: var(--sp-5); }
.bundle-body { font-size: var(--fs-lead); line-height: var(--lh-lead); letter-spacing: var(--ls-lead); color: var(--ink-3); max-width: var(--measure); }

/* ───────────────────────────────────────────────────────────── APPLY ─────── */
.apply { background: var(--black-well); border-top: 1px solid var(--rule-hi); padding: var(--sp-8) 0; }
.apply-title { margin-bottom: clamp(48px, 6vw, 88px); }

.form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-5) var(--sp-5); }
.field { display: flex; flex-direction: column; gap: 12px; border: 0; }
.field--full { grid-column: 1 / -1; }
/* the free-text field spans two columns, not three — a 1300px-wide textarea is an
   uncomfortable measure to type into */
.field--wide { grid-column: 1 / span 2; }
.field label, .field legend {
  font: var(--w-body) var(--fs-meta)/1 var(--mono);
  letter-spacing: var(--ls-meta); text-transform: uppercase; color: var(--ink-2);
  padding: 0;
}
.field input[type="text"], .field input[type="email"], .field textarea {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid var(--rule-hi);
  color: var(--ink);
  font: var(--w-body) var(--fs-lead)/1.5 var(--sans);
  letter-spacing: var(--ls-lead);
  padding: 8px 0 12px;
  outline: none;
  transition: border-bottom-color var(--t-state) var(--ease-out);
  resize: vertical;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--blue); }
.field input:focus-visible, .field textarea:focus-visible { outline: none; }
.field input.invalid, .field textarea.invalid { border-bottom-color: var(--ink); }

.checks { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.check { position: relative; display: inline-flex; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check span {
  display: inline-block;
  padding: 13px 22px;
  border: 1px solid var(--rule-hi);
  font: var(--w-body) var(--fs-meta)/1 var(--mono);
  letter-spacing: var(--ls-meta); text-transform: uppercase; color: var(--ink-2);
  transition: border-color var(--t-state) var(--ease-out),
              color var(--t-state) var(--ease-out),
              background var(--t-state) var(--ease-out);
}
.check:hover span { border-color: var(--ink-4); color: var(--ink); }
.check input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--black); }
.check input:focus-visible + span { outline: 2px solid var(--focus); outline-offset: 3px; }

.form-foot { grid-column: 1 / -1; display: flex; align-items: center; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-3); }
.form-note { font-size: var(--fs-small); letter-spacing: var(--ls-small); color: var(--ink-3); }
.form-note a { border-bottom: 1px solid var(--rule-hi); transition: border-bottom-color var(--t-state) var(--ease-out); }
.form-note a:hover { border-bottom-color: var(--blue); }

/* ──────────────────────────────────────────────────────────── FOOTER ─────── */
.footer { background: var(--black-well); border-top: 1px solid var(--rule); padding: var(--sp-6) 0 var(--sp-5); }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-3); }
.footer-inner > * { color: var(--ink-3); }
.footer-inner a { transition: color var(--t-state) var(--ease-out); }
.footer-inner a:hover { color: var(--ink); }

/* ────────────────────────────────────────────────────────── LOADER ─────── */
/* The overlay is display:none by DEFAULT. Only the inline head script opts in.
   No JS => no overlay, ever. Never invert this. */
#loader { display: none; }
.is-loading #loader {
  display: grid; place-items: center;
  position: fixed; inset: 0; z-index: 90;
  background: var(--black-deep);
  clip-path: inset(0);
}
.is-loading, .is-loading body { overflow: hidden; height: 100%; }
.loader-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.loader-stage { position: absolute; left: 30%; top: 58%; transform: translate(-50%, -50%); width: min(600px, 74vw); }
.loader-mark { position: relative; }
.loader-word {
  display: block;
  font-family: var(--display); font-stretch: 112%; font-weight: var(--w-body);
  font-size: clamp(22px, 3.4vw, 44px);
  line-height: 1; letter-spacing: -0.045em; color: var(--ink);
  margin-bottom: 14px; white-space: nowrap;
}
.loader-word i { display: inline-block; font-style: normal; }
.loader-rule { width: 100%; height: 2px; overflow: visible; }
.loader-rule line { stroke: #6E7683; stroke-width: 1; vector-effect: non-scaling-stroke; }

/* ────────────────────────────────────────────────────────── RESPONSIVE ──── */
@media (max-width: 1060px) {
  .svc-row { grid-template-columns: 5ch minmax(0, 1fr); }
  .svc-body { grid-column: 2; padding-top: 0; margin-top: var(--sp-3); }
  .form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field--wide { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  /* the copy fills most of the viewport on a phone instead of the bottom third, so
     the signal trails run through it — same scrim, re-weighted */
  .hero-scrim {
    background: linear-gradient(180deg,
      rgba(7,8,10,0.60) 0%, rgba(7,8,10,0.18) 20%,
      rgba(7,8,10,0.66) 44%, rgba(7,8,10,0.92) 100%);
  }
  .hero-foot-row { align-items: flex-start; flex-direction: column; }
  .hero-scroll { display: none; }

  .metric {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px var(--sp-3);
  }
  .metric-name { grid-column: 1; }
  .metric-before { grid-column: 2; justify-self: end; }
  .metric-val { grid-column: 1 / -1; justify-self: start; }

  .svc-row { grid-template-columns: 1fr; gap: var(--sp-3); }
  .svc-n { padding-top: 0; }
  .svc-body { grid-column: 1; margin-top: 0; }

  .form { grid-template-columns: 1fr; }
  .loader-stage { left: 50%; top: 56%; width: 80vw; }
}

/* ───────────────────────────────────────────────── REDUCED MOTION ─────── */
@media (prefers-reduced-motion: reduce) {
  .arr { transition: none; }
  * { transition-duration: 0.01ms !important; }
}

/* Starline quote builder and privacy controls. */
.nav-mark { display: inline-flex; align-items: center; gap: 9px; }
.quote { position: relative; padding: var(--sp-8) 0; background: var(--black-raise); border-top: 1px solid var(--rule-hi); }
.quote-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(330px, .7fr); gap: clamp(48px, 10vw, 160px); align-items: start; }
.quote-copy { max-width: 35rem; margin-top: 24px; color: var(--ink-2); font-size: var(--fs-lead); line-height: var(--lh-lead); }
.quote-card { border: 1px solid var(--rule-hi); padding: clamp(22px, 3vw, 40px); background: var(--black-well); }.quote-card fieldset { border: 0; }.quote-card legend { color: var(--ink); font-size: var(--fs-small); margin-bottom: 14px; }
.quote-option { display: grid; grid-template-columns: 18px 1fr auto; gap: 12px; align-items: center; padding: 16px 0; border-top: 1px solid var(--rule); color: var(--ink-2); cursor: pointer; }.quote-option:last-child { border-bottom: 1px solid var(--rule); }.quote-option input { accent-color: var(--blue); width: 16px; height: 16px; }.quote-option b { font: var(--w-body) var(--fs-meta)/1 var(--mono); color: var(--ink); white-space: nowrap; }
.quote-total { padding: 28px 0; }.quote-total .label { display: block; margin-bottom: 8px; }.quote-total strong { display: block; color: var(--ink); font: var(--w-body) clamp(42px,5vw,68px)/.9 var(--display); letter-spacing: var(--ls-h2); }.quote-total p { margin-top: 12px; color: var(--ink-3); font-size: var(--fs-small); }
.cookie { position: fixed; z-index: 60; right: 20px; bottom: 20px; width: min(440px, calc(100vw - 40px)); border: 1px solid var(--rule-hi); background: #0B0D10; padding: 20px; color: var(--ink-2); font-size: var(--fs-small); }.cookie div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }.cookie .btn { padding: 12px 16px; }.cookie-dialog { width: min(520px, calc(100vw - 40px)); color: var(--ink-2); background: var(--black-well); border: 1px solid var(--rule-hi); padding: 32px; }.cookie-dialog::backdrop { background: rgba(0,0,0,.75); }.cookie-dialog h2 { font-size: var(--fs-h3); margin-bottom: 18px; }.cookie-dialog p { margin-bottom: 22px; }.privacy-button { border: 0; background: transparent; cursor: pointer; }
@media (max-width: 700px) { .quote-grid { grid-template-columns: 1fr; gap: 42px; }.quote-option { grid-template-columns: 18px 1fr; }.quote-option b { grid-column: 2; } }
