/* DT Marketing — monochrome. No colour anywhere: black, white, and the greys
   between. Depth comes from light falling from above, hairline borders, and
   generous space rather than from hue. */

:root {
  --black: #000;
  --ink-1: #ffffff;          /* headlines */
  --ink-2: #a3a3a3;          /* body */
  --ink-3: #6b6b6b;          /* labels, meta */
  --line: #1f1f1f;           /* hairlines */
  --line-2: #2e2e2e;         /* hover hairlines */
  --surface: #0a0a0a;        /* raised panels */

  --display: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1120px;
  --pad: 24px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--black);
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

h1, h2, h3 {
  font-family: var(--display);
  color: var(--ink-1);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
[id] { scroll-margin-top: 92px; }

/* Mono label above each section heading */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  margin: 0 0 20px;
}

.sub { color: var(--ink-2); font-size: 17px; margin: 18px 0 0; max-width: 46ch; text-wrap: balance; }
.sub.center { margin-left: auto; margin-right: auto; text-align: center; }
.micro {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--ink-3); margin: 0;
}
.micro.center { text-align: center; }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 26px;
  background: var(--ink-1); color: var(--black);
  border: 1px solid var(--ink-1); border-radius: 6px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em; cursor: pointer;
  transition: background-color .18s, border-color .18s, color .18s, transform .18s;
}
.btn:hover { background: #d4d4d4; border-color: #d4d4d4; transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--ink-1); outline-offset: 3px; }

.btn-ghost { background: transparent; color: var(--ink-1); border-color: var(--line-2); }
.btn-ghost:hover { background: transparent; border-color: var(--ink-1); }

.btn-sm { min-height: 38px; padding: 0 18px; font-size: 14px; }
.btn-block { width: 100%; }

.row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* ------------------------------------------------------------------- nav */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
/* Logo hard left, links truly centred on the viewport, actions hard right —
   absolute centring rather than flex spacing, so the links stay put no matter
   how wide the logo or the buttons get. */
.nav .wrap {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; position: relative;
}

.brand {
  font-family: var(--display); font-weight: 900; font-size: 17px;
  color: var(--ink-1); letter-spacing: -0.03em; white-space: nowrap;
}
.brand span { color: var(--ink-3); }

.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 28px; white-space: nowrap;
}
.nav-links a {
  font-size: 14px; color: var(--ink-2); transition: color .2s;
}
.nav-links a:hover { color: var(--ink-1); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-secondary {
  font-size: 14px; color: var(--ink-2); white-space: nowrap; transition: color .2s;
}
.nav-secondary:hover { color: var(--ink-1); }

@media (max-width: 1060px) { .nav-links { display: none; } }
@media (max-width: 560px) { .nav-secondary { display: none; } }

/* Touch targets: 44px is the accepted minimum, and the header button is the
   single most important tap on the site. */
@media (max-width: 700px) {
  .btn-sm { min-height: 44px; padding: 0 18px; }
  .direct a { padding: 9px 0; }
}

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

/* Light pooled over the sphere on the right, falling off to near-black behind
   the headline — so the copy sits in shadow and the object is what's lit. */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 46% at 80% 14%, rgba(255,255,255,.17) 0%, rgba(255,255,255,.05) 40%, transparent 70%),
    linear-gradient(90deg, #000 0%, rgba(0,0,0,.88) 36%, transparent 64%);
}
@media (max-width: 940px) {
  .hero::before {
    background: radial-gradient(60% 40% at 50% 26%, rgba(255,255,255,.09) 0%, transparent 70%);
  }
}

/* Copy left, sphere right — the sphere is allowed to bleed past the container
   on wide screens so it reads as an object in the space, not a boxed graphic. */
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center; width: 100%;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .hero-copy .row { justify-content: center; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
}

/* Big, but light — scale carries the impact instead of weight. */
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero .lede {
  color: var(--ink-2); font-size: clamp(16px, 1.8vw, 19px);
  max-width: 34ch; margin: 24px 0 0; text-wrap: balance;
}
.hero .micro { margin-top: 38px; }

.hero-globe { position: relative; display: flex; justify-content: center; }

/* Soft ambient light pooled above and behind the sphere — diffuse, no hard
   edge, so it lights the object rather than sitting on it as a shape. */
.hero-globe::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  inset: -30% -20% -10% -20%;
  background:
    radial-gradient(44% 40% at 62% 20%, rgba(255,255,255,.15) 0%, rgba(255,255,255,.045) 45%, transparent 72%),
    radial-gradient(70% 60% at 55% 40%, rgba(255,255,255,.05) 0%, transparent 70%);
}
#globe {
  display: block;
  width: min(680px, 118%);          /* allowed to bleed past the column on desktop */
  flex: none;                       /* flex would otherwise shrink it back to the column */
  aspect-ratio: 1;
  cursor: grab;
  touch-action: pan-y;              /* let vertical scrolling through, capture horizontal */
  -webkit-user-select: none; user-select: none;
}

/* Desktop only: larger and pushed toward the right edge. The hero clips
   overflow, so the bleed reads as an object leaving frame rather than a
   graphic that doesn't fit. Held back at mid widths so it can't crowd the
   headline. */
@media (min-width: 941px) {
  #globe { width: min(600px, 108%); }
  .hero-globe { transform: translateX(5%); }
}
@media (min-width: 1200px) {
  #globe { width: min(700px, 126%); }
  .hero-globe { transform: translateX(8%); }
}
#globe.dragging { cursor: grabbing; }
@media (max-width: 940px) {
  #globe { width: min(400px, 78vw); }
  .hero-globe { order: -1; margin-bottom: 8px; }
}


.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 46px; background: linear-gradient(180deg, transparent, var(--line-2));
  z-index: 2;
}
.scroll-cue span {
  position: absolute; top: 0; left: 0; width: 1px; height: 14px;
  background: var(--ink-1); animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue { 0% { top: 0; opacity: 0; } 30% { opacity: 1; } 100% { top: 32px; opacity: 0; } }

/* --------------------------------------------------------------- sections */

.section { padding: 120px 0; border-bottom: 1px solid var(--line); position: relative; }
@media (min-width: 1024px) { .section { padding: 160px 0; } }

/* Light falling from the top edge — the single biggest contributor to depth.
   The position alternates section to section so the page feels lit from
   somewhere rather than uniformly grey. */
.lit::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 460px;
  background: radial-gradient(70% 100% at 50% 0, rgba(255,255,255,.085) 0%, rgba(255,255,255,.02) 55%, transparent 100%);
  pointer-events: none;
}
.lit-left::before  { background: radial-gradient(58% 100% at 18% 0, rgba(255,255,255,.10) 0%, rgba(255,255,255,.022) 52%, transparent 100%); }
.lit-right::before { background: radial-gradient(58% 100% at 82% 0, rgba(255,255,255,.10) 0%, rgba(255,255,255,.022) 52%, transparent 100%); }

/* A faint lift off pure black, so panels have something to sit against. */
.tint { background: linear-gradient(180deg, #090909 0%, #050505 45%, #000 100%); }

/* Hairline seam where sections meet, catching the light. */
.section::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.09) 22%, rgba(255,255,255,.09) 78%, transparent);
  pointer-events: none;
}

.section .wrap { position: relative; z-index: 1; }
.section h2 { font-size: clamp(34px, 5.6vw, 60px); }

/* ------------------------------------------------------------ build grid */

.grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  margin-top: 64px;
}
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

.cell { background: var(--black); padding: 38px 30px 42px; transition: background-color .25s; }
.cell:hover { background: var(--surface); }
.cell .num {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  color: var(--ink-3); display: block; margin-bottom: 26px;
}
.cell h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.02em; }
.cell p { font-size: 14.5px; margin: 0; color: var(--ink-2); }

/* ------------------------------------------------------------- work grid */

/* Three across. Going to two would strand the third on its own row, so it
   drops straight to a single centred column on narrow screens. */
.grid-work {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px;
}
@media (max-width: 860px) {
  .grid-work { grid-template-columns: 1fr; max-width: 440px; }
}

.work {
  margin: 0; border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; background: var(--surface);
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.work:hover { border-color: var(--line-2); transform: translateY(-3px); }

/* height:auto is load-bearing. The <img> carries width/height attributes to
   reserve space and prevent layout shift, but that height also *wins* over
   aspect-ratio — without this the images render at their full 525px and the
   section is twice the height it should be. */
.work img {
  width: 100%; height: auto; aspect-ratio: 1; object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(.8);
  transition: filter .5s, transform .6s;
}
.work:hover img { filter: grayscale(1) contrast(1.05) brightness(1); transform: scale(1.03); }

.work figcaption {
  display: flex; flex-direction: column;
  padding: 18px 18px 20px; border-top: 1px solid var(--line); flex: 1;
}
.work-name { font-family: var(--display); font-weight: 700; color: var(--ink-1); font-size: 15px; }
.work-metric {
  font-family: var(--mono); font-style: normal; font-size: 11px;
  text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); margin-top: 5px;
}
.work blockquote {
  margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 13.5px; line-height: 1.6; color: var(--ink-2); flex: 1;
}
.work .who {
  display: block; margin-top: 12px;
  font-family: var(--mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: .14em; color: var(--ink-3);
}

/* ----------------------------------------------------------------- quote */

.quote { margin: 88px auto 0; max-width: 780px; text-align: center; }
.quote p {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 3.4vw, 34px); line-height: 1.3;
  letter-spacing: -0.03em; color: var(--ink-1); margin: 0 0 24px; text-wrap: balance;
}
.quote cite {
  font-style: normal; font-family: var(--mono); font-size: 11.5px;
  text-transform: uppercase; letter-spacing: .16em; color: var(--ink-1);
}
.quote cite span { color: var(--ink-3); margin-left: 8px; }

/* ----------------------------------------------------------------- steps */

.steps { list-style: none; margin: 64px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.steps li { background: var(--black); padding: 38px 30px 42px; transition: background-color .25s; }
.steps li:hover { background: var(--surface); }
.steps .num { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--ink-3); display: block; margin-bottom: 26px; }
.steps h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.02em; }
.steps p { font-size: 14.5px; margin: 0; }

/* ------------------------------------------------------------------- faq */

.faq { max-width: 720px; margin: 88px auto 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 22px 40px 22px 0;
  font-family: var(--display); font-weight: 700; font-size: 17px;
  color: var(--ink-1); letter-spacing: -0.02em; transition: opacity .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { opacity: .7; }
.faq summary:focus-visible { outline: 2px solid var(--ink-1); outline-offset: 3px; }
/* A chevron drawn from two borders — rotates to point up when open, which
   animates cleanly where swapping a + for a − cannot. */
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1.6px solid var(--ink-3); border-bottom: 1.6px solid var(--ink-3);
  transform: translateY(-70%) rotate(-45deg);
  /* Matches the panel timing so the chevron and the slide move together. */
  transition: transform .56s cubic-bezier(.33, 0, .15, 1), border-color .2s;
}
.faq summary:hover::after { border-color: var(--ink-1); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--ink-1); }

/* Height is animated by site.js; overflow hidden is what makes it slide
   rather than jump. Closed state is set inline by the script. */
.faq-body { overflow: hidden; }
.faq p { font-size: 15.5px; margin: 0 0 24px; max-width: 62ch; }

/* --------------------------------------------------------------- pricing */

.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 64px; align-items: start;
}
@media (max-width: 980px) { .tiers { grid-template-columns: 1fr; max-width: 460px; } }

.tier {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 34px 30px 32px;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.tier:hover { border-color: var(--line-2); transform: translateY(-3px); }

/* The middle tier is the one to steer people toward, so it gets the light. */
.tier.featured {
  background: linear-gradient(180deg, #131313 0%, #0a0a0a 100%);
  border-color: rgba(255,255,255,.22);
}
.tier.featured::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
}
.tier-flag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--ink-1); color: var(--black);
  font-family: var(--mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: .14em; padding: 4px 12px; border-radius: 20px; white-space: nowrap;
}

.tier h3 { font-size: 20px; letter-spacing: -0.02em; }
.tier-for { color: var(--ink-3); font-size: 14px; margin: 8px 0 26px; min-height: 2.6em; }

.tier-price {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(38px, 4.4vw, 48px); line-height: 1;
  letter-spacing: -0.04em; color: var(--ink-1); margin: 0;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.tier-price span {
  font-family: var(--mono); font-size: 11px; font-weight: 400;
  text-transform: uppercase; letter-spacing: .14em; color: var(--ink-3);
}
.tier-then { color: var(--ink-2); font-size: 15px; margin: 10px 0 0; }
/* Stated on every card rather than sprung at signing — a deposit that arrives
   as a surprise reads as a hidden fee, which is the opposite of the point. */
.tier-dep { color: var(--ink-3); font-size: 13px; margin: 6px 0 0; }

.tier ul {
  list-style: none; margin: 28px 0 30px; padding: 26px 0 0;
  border-top: 1px solid var(--line);
  display: grid; gap: 12px; flex: 1;
}
.tier li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--ink-2); }
.tier li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 9px; height: 5px;
  border-left: 1.5px solid var(--ink-1); border-bottom: 1.5px solid var(--ink-1);
  transform: rotate(-45deg);
}
.tier .btn { margin-top: auto; }

.price-foot { margin-top: 30px; text-align: center; }

/* --------------------------------------------------------------- contact */

.contact { border-bottom: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.direct { display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }
.direct a {
  font-family: var(--display); font-weight: 700; font-size: clamp(18px, 2.4vw, 24px);
  color: var(--ink-1); letter-spacing: -0.025em; transition: opacity .2s;
  width: fit-content;
}
.direct a:hover { opacity: .6; }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 30px;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
}
.card h3 { font-size: 21px; text-align: center; margin-bottom: 4px; }

.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
@media (max-width: 520px) { .pair { grid-template-columns: 1fr; } }

.field {
  width: 100%; padding: 13px 15px;
  background: #000; border: 1px solid var(--line-2); border-radius: 6px;
  color: var(--ink-1); font-family: var(--body); font-size: 15px;
  transition: border-color .18s;
}
.field::placeholder { color: var(--ink-3); }
.field:focus { outline: none; border-color: var(--ink-1); }
select.field {
  appearance: none; cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b6b6b' stroke-width='2'><path d='M4 6l4 4 4-4'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
}
select.field option { background: #000; color: #fff; }
textarea.field { min-height: 104px; resize: vertical; margin-bottom: 12px; }

/* Chrome paints autofilled inputs pale blue, which looks broken on a dark
   card. There's no property to turn that off — an inset shadow the size of the
   field is the only way to cover it. */
.field:-webkit-autofill,
.field:-webkit-autofill:hover,
.field:-webkit-autofill:focus,
.field:-webkit-autofill:active {
  -webkit-text-fill-color: var(--ink-1);
  -webkit-box-shadow: 0 0 0 40px #000 inset;
  caret-color: var(--ink-1);
  /* An absurd transition delay stops the yellow flash before the shadow lands. */
  transition: background-color 9999s ease-in-out 0s;
}

/* ------------------------------------------------------- package selector */

.packs { border: 0; padding: 0; margin: 0 0 12px; min-width: 0; }
.packs legend {
  padding: 0; margin-bottom: 9px;
  font-family: var(--mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: .16em; color: var(--ink-3);
}

.packs-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.packs input { position: absolute; opacity: 0; width: 0; height: 0; }

.packs-row label {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 13px 6px 14px; border-radius: 8px; cursor: pointer;
  background: #000; border: 1px solid var(--line-2);
  transition: border-color .16s, background-color .16s, transform .16s;
  text-align: center;
}
.packs-row label:hover { border-color: var(--ink-3); transform: translateY(-1px); }

.pk-name {
  font-family: var(--mono); font-size: 9.5px; text-transform: uppercase;
  letter-spacing: .12em; color: var(--ink-3);
}
.pk-price {
  font-family: var(--display); font-weight: 800; font-size: 19px;
  color: var(--ink-1); letter-spacing: -0.02em; line-height: 1.1;
}
.pk-mo { font-size: 11px; color: var(--ink-3); }

.packs input:checked + label {
  background: var(--ink-1); border-color: var(--ink-1);
}
.packs input:checked + label .pk-name { color: rgba(0,0,0,.6); }
.packs input:checked + label .pk-price { color: #000; }
.packs input:checked + label .pk-mo { color: rgba(0,0,0,.65); }
.packs input:focus-visible + label { outline: 2px solid var(--ink-1); outline-offset: 2px; }

.pk-dep { margin: 10px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--ink-3); }

.pk-unsure {
  display: flex; align-items: center; gap: 9px; cursor: pointer;
  margin-top: 9px; font-size: 13.5px; color: var(--ink-3);
}
.pk-unsure span { position: relative; padding-left: 22px; transition: color .16s; }
.pk-unsure span::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid var(--line-2); transition: border-color .16s, background .16s;
}
.pk-unsure:hover span { color: var(--ink-1); }
.pk-unsure input:checked + span { color: var(--ink-1); }
.pk-unsure input:checked + span::before {
  border-color: var(--ink-1);
  background: radial-gradient(circle, var(--ink-1) 0 40%, transparent 45%);
}

@media (max-width: 400px) {
  .pk-price { font-size: 17px; }
  .packs-row label { padding: 11px 4px 12px; }
}

.lbl {
  display: block; font-family: var(--mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: .16em; color: var(--ink-3);
  margin: 18px 0 8px;
}
.card form > .lbl:first-child { margin-top: 0; }

.err { color: #ff8a8a; font-size: 14px; margin: 0 0 12px; }
.card .btn { margin-top: 6px; }
.card .micro { margin-top: 14px; }

/* Yes / No segmented control */
.choice { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice label {
  display: flex; align-items: center; justify-content: center;
  min-height: 44px; border-radius: 6px; cursor: pointer;
  background: #000; border: 1px solid var(--line-2);
  color: var(--ink-2); font-size: 15px;
  transition: border-color .16s, color .16s;
}
.choice label:hover { border-color: var(--ink-3); color: var(--ink-1); }
.choice input:checked + label { border-color: var(--ink-1); color: var(--ink-1); }
.choice input:focus-visible + label { outline: 2px solid var(--ink-1); outline-offset: 2px; }

.fit-actions { display: grid; gap: 10px; margin-top: 22px; }
#details-fit .sub strong { color: var(--ink-1); }

/* ---------------------------------------------------------------- footer */

.foot { padding: 56px 0 64px; border-top: 1px solid var(--line); }
.foot .wrap { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.foot p { margin: 0; font-size: 14px; color: var(--ink-3); }
.foot .legal { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

/* -------------------------------------------------------- scroll reveals */

/* Scoped to .js, which an inline script in <head> sets. Without that guard a
   JavaScript failure would leave every revealed element stuck at opacity 0 —
   i.e. the entire page below the hero silently blank. */
.js .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
