/* ============================================================
   ReviewBoost Kit — "Print Shop" design system
   Riso / letterpress: ink black, vermilion spot, paper stock.
   Type: Bricolage Grotesque (display) + Hanken Grotesk (text).
   ============================================================ */

:root {
  /* --- paper & ink --------------------------------------- */
  --paper: oklch(0.968 0.008 82);        /* bright warm paper stock */
  --paper-2: oklch(0.944 0.011 80);      /* deeper panel / cutting mat */
  --stock: oklch(0.995 0.002 90);        /* white card stock */
  --ink: oklch(0.205 0.012 60);          /* near-black ink */
  --ink-2: oklch(0.375 0.014 55);        /* secondary text (AA on paper) */
  --line: oklch(0.86 0.014 74);          /* hairline */
  --line-2: oklch(0.78 0.02 70);         /* stronger rule */

  /* --- spot colours -------------------------------------- */
  --brand: oklch(0.585 0.202 30);        /* vermilion — display / accents */
  --brand-press: oklch(0.505 0.183 30);  /* button bg, white text AA */
  --brand-deep: oklch(0.44 0.15 32);     /* vermilion text on paper */
  --brand-tint: oklch(0.93 0.045 42);    /* faint vermilion wash */
  --blue: oklch(0.46 0.12 250);          /* second ink — links/support */
  --star: oklch(0.72 0.15 72);           /* amber star glyphs */

  /* --- type ---------------------------------------------- */
  --display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --text: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* --- structure ----------------------------------------- */
  --edge: 16px;                          /* base radius (cards, inputs) */
  --shell: 1200px;

  /* --- z-scale ------------------------------------------- */
  --z-grain: 1;
  --z-top: 80;

  color-scheme: light;
}

/* ---------- reset-ish ------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: 1.02rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
img { max-width: 100%; display: block; }

button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- paper grain overlay --------------------------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
}

@media (max-width: 640px) {
  .grain { display: none; }
}

/* ---------- shared layout --------------------------------- */
.topbar,
.hero,
.workbench,
.scripts,
.steps,
.kit,
.honesty,
.faq,
.footer {
  width: min(var(--shell), calc(100% - clamp(1.6rem, 6vw, 5rem)));
  margin-inline: auto;
}

section { position: relative; z-index: 2; }

/* ---------- tag / kicker ---------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5ch;
  font-family: var(--text);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: var(--brand-deep);
  padding: 0.32rem 0.7rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.tag::before { content: "✦"; font-size: 0.7em; }
.tag--onink { color: oklch(0.86 0.09 55); }

/* ---------- buttons --------------------------------------- */
.btn {
  --_bg: var(--ink);
  --_fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5ch;
  font-family: var(--text);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.85rem 1.3rem;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--_bg);
  color: var(--_fg);
  cursor: pointer;
  transition:
    transform 140ms cubic-bezier(0.2, 0.9, 0.3, 1),
    box-shadow 140ms cubic-bezier(0.2, 0.9, 0.3, 1),
    background 120ms ease;
  box-shadow: 3px 3px 0 var(--ink);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }

.btn--brand { --_bg: var(--brand-press); --_fg: #fff; border-color: var(--ink); }
.btn--ink { --_bg: var(--ink); --_fg: var(--paper); }
.btn--quiet {
  --_bg: transparent; --_fg: var(--ink);
  box-shadow: 3px 3px 0 var(--line-2);
}
.btn--quiet:hover { box-shadow: 5px 5px 0 var(--line-2); background: var(--stock); }
.btn--quiet:active { box-shadow: 1px 1px 0 var(--line-2); }
.btn--lg { padding: 1.05rem 1.7rem; font-size: 1.06rem; border-radius: 14px; }
.btn--block { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn:hover, .btn:active { transform: none; transition: background 120ms ease; }
}

/* ---------- topbar ---------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: var(--z-top);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.85rem 0;
  margin-top: 0.4rem;
}
.topbar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: color-mix(in oklab, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1.5px solid var(--line);
  z-index: -1;
}
.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6ch;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
  margin-right: auto;
}
.brandmark__lockup {
  display: grid;
  gap: 0.02rem;
  line-height: 1;
}
.brandmark__stamp {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  background: var(--brand);
  border: 2px solid var(--ink);
  border-radius: 9px;
  transform: rotate(-6deg);
  box-shadow: 2px 2px 0 var(--ink);
}
.brandmark__stamp svg { fill: #fff; }
.brandmark__kit { color: var(--brand-deep); }
.brandmark__by {
  font-family: var(--text);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.topnav { display: flex; gap: 1.5rem; }
.topnav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-2);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 120ms ease, border-color 120ms ease;
}
.topnav a:hover { color: var(--ink); border-color: var(--brand); }
.topbar__cta { padding: 0.6rem 1.05rem; font-size: 0.9rem; box-shadow: 2px 2px 0 var(--ink); }

@media (max-width: 760px) {
  .topnav { display: none; }
}

/* ---------- hero ------------------------------------------ */
.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 7vw, 5.5rem) 0 clamp(2rem, 5vw, 3.5rem);
}
.hero__title {
  font-size: clamp(2.9rem, 7.4vw, 5.4rem);
  margin: 0.4rem 0 1.3rem;
}
.mark-under {
  position: relative;
  color: var(--brand-deep);
  white-space: nowrap;
}
.mark-under::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: 0.06em;
  height: 0.16em;
  background: var(--brand);
  border-radius: 2px;
  transform: rotate(-1deg);
  z-index: -1;
}
.hero__lede {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-2);
  line-height: 1.62;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.6rem;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
}
.hero__proof span { color: var(--brand); margin-right: 0.4ch; }

/* hero visual: stacked printed cards */
.hero__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}
.cardstack { position: relative; width: min(340px, 82%); }
.cardstack__back,
.cardstack__mid {
  position: absolute;
  inset: 0;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--stock);
}
.cardstack__back { transform: rotate(6deg) translate(14px, 10px); background: var(--brand-tint); }
.cardstack__mid { transform: rotate(-4deg) translate(-8px, 4px); }

.reviewcard {
  position: relative;
  margin: 0;
  padding: 1.5rem 1.4rem 1.3rem;
  background: var(--stock);
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 8px 10px 0 var(--ink);
  transform: rotate(-2deg);
  text-align: center;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
}
.reviewcard__band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.reviewcard__stars { color: var(--star); font-size: 1.15rem; letter-spacing: 2px; }
.reviewcard__biz { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.reviewcard__ask {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.reviewcard__qr {
  padding: 8px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: #fff;
  line-height: 0;
}
.reviewcard__foot { font-size: 0.78rem; color: var(--ink-2); font-weight: 600; }
.reviewcard__crop {
  position: absolute;
  width: 12px; height: 12px;
  border: 2px solid var(--brand);
}
.reviewcard__crop--tl { top: 7px; left: 7px; border-right: 0; border-bottom: 0; }
.reviewcard__crop--tr { top: 7px; right: 7px; border-left: 0; border-bottom: 0; }
.reviewcard__crop--bl { bottom: 7px; left: 7px; border-right: 0; border-top: 0; }
.reviewcard__crop--br { bottom: 7px; right: 7px; border-left: 0; border-top: 0; }

.hero__pin {
  position: absolute;
  bottom: -0.5rem; right: 4%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand-deep);
  transform: rotate(-4deg);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: left; }
  .hero__stage { min-height: 320px; order: 2; }
  .hero__pin { right: 8%; }
}

/* ---------- marquee --------------------------------------- */
.marquee {
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  contain: paint;
  padding: 0.6rem 0;
  margin-block: clamp(1.5rem, 4vw, 3rem);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  animation: slide 32s linear infinite;
}
.marquee .dot { color: var(--brand); font-size: 0.6em; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

@media (max-width: 640px) {
  .marquee { display: none; }
}

/* ---------- block heads ----------------------------------- */
.block-head { margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem); max-width: 60ch; }
.block-head__title { font-size: clamp(1.9rem, 4vw, 3rem); }
.block-head__sub {
  margin-top: 0.9rem;
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 54ch;
}
.block-head__sub--onink { color: oklch(0.88 0.02 70); }

/* ---------- workbench ------------------------------------- */
.workbench { scroll-margin-top: 80px; }
.workbench__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.controls {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.3rem, 2.5vw, 1.9rem);
  background: var(--stock);
  border: 2px solid var(--ink);
  border-radius: var(--edge);
  box-shadow: 6px 6px 0 var(--ink);
}
.field { display: grid; gap: 0.45rem; }
.field label {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.005em;
}
.field__hint { font-size: 0.82rem; color: var(--ink-2); line-height: 1.45; }
.field__hint b { color: var(--ink); font-weight: 700; }

.controls input[type="text"],
.controls input[type="url"],
.controls textarea,
.select-wrap select {
  width: 100%;
  padding: 0.72rem 0.85rem;
  background: var(--paper);
  border: 2px solid var(--line-2);
  border-radius: 11px;
  font-size: 0.98rem;
  transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.controls input::placeholder { color: color-mix(in oklab, var(--ink-2) 85%, transparent); }
.controls input:hover,
.controls textarea:hover,
.select-wrap select:hover { border-color: var(--ink-2); }
.controls input:focus,
.controls textarea:focus,
.select-wrap select:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--stock);
  box-shadow: 3px 3px 0 var(--brand);
}
.controls textarea { resize: vertical; min-height: 3.4rem; line-height: 1.45; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 2.2rem; cursor: pointer; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 0.95rem; top: 50%;
  width: 0.5rem; height: 0.5rem;
  border-right: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.color-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.32rem 0.4rem;
  background: var(--paper);
  border: 2px solid var(--line-2);
  border-radius: 11px;
}
.color-wrap input[type="color"] {
  width: 44px; height: 38px;
  padding: 0; border: 0; background: none; cursor: pointer;
  border-radius: 8px;
}
.color-wrap input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
.color-wrap input[type="color"]::-webkit-color-swatch { border: 2px solid var(--ink); border-radius: 8px; }
.color-wrap__hex { font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em; }

.controls__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.2rem; }
.status {
  min-height: 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
  padding-left: 1.4rem;
  position: relative;
}
.status::before {
  content: "●";
  position: absolute; left: 0; top: 0;
  color: var(--brand);
  font-size: 0.8em;
}

/* preview panel */
.preview {
  border: 2px solid var(--ink);
  border-radius: var(--edge);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--stock);
}
.preview__mat {
  display: grid;
  place-items: center;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  min-height: 460px;
  background: color-mix(in oklab, var(--brand-tint) 48%, var(--paper) 52%);
}
.preview__card { width: min(400px, 100%); aspect-ratio: 4 / 5; }
.preview__card:empty {
  display: grid;
  place-items: center;
  padding: 2rem;
  border: 2.5px dashed var(--line-2);
  border-radius: 14px;
  background: color-mix(in oklab, var(--stock) 70%, transparent);
  text-align: center;
  color: var(--ink-2);
  font-weight: 600;
}
.preview__card:empty::before {
  content: "Paste your real Google review URL to see the printable card.";
  max-width: 24ch;
  line-height: 1.5;
}
.preview__card :where(svg) {
  width: 100%; height: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(28, 23, 18, 0.18);
}
.preview__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-top: 2px solid var(--ink);
  background: var(--stock);
}
.preview__bar-label { font-weight: 700; font-size: 0.9rem; }
.segmented {
  display: inline-flex;
  border: 2px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
}
.segmented__btn {
  padding: 0.5rem 0.95rem;
  background: var(--stock);
  border: 0;
  border-left: 2px solid var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 110ms ease, color 110ms ease;
}
.segmented__btn:first-child { border-left: 0; }
.segmented__btn:hover { background: var(--brand); color: #fff; }
.segmented__btn:active { background: var(--brand-press); color: #fff; }

@media (max-width: 900px) {
  .workbench__grid { grid-template-columns: 1fr; }
  .preview__mat { min-height: 400px; }
}

/* ---------- section rhythm -------------------------------- */
.scripts, .steps, .honesty, .faq { padding-block: clamp(3rem, 8vw, 5.5rem); }
.workbench { padding-block: clamp(3rem, 8vw, 5rem); }

/* ---------- scripts / templates --------------------------- */
.scripts__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
}
.template-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.3rem 1.3rem 1.15rem;
  background: var(--stock);
  border: 2px solid var(--ink);
  border-radius: var(--edge);
  box-shadow: 5px 5px 0 var(--ink);
}
.template-card h3 {
  font-family: var(--text);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}
.template-card p {
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.5;
  flex: 1;
}
.copy-button {
  align-self: flex-start;
  margin-top: 0.3rem;
  padding: 0.5rem 0.95rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}
.copy-button:hover { background: var(--ink); color: var(--paper); }
.copy-button:active { transform: translateY(1px); }

/* ---------- steps ----------------------------------------- */
.steps__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.2rem;
}
.step {
  position: relative;
  padding: 1.6rem 1.4rem 1.4rem;
  background: var(--stock);
  border: 2px solid var(--ink);
  border-radius: var(--edge);
}
.step__no {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 1rem;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  transform: rotate(-4deg);
  box-shadow: 2px 2px 0 var(--ink);
}
.step h3 { font-size: 1.28rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-2); font-size: 0.98rem; }

/* ---------- the kit (dark, drenched) ---------------------- */
.kit {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1.4rem, 4vw, 3.5rem);
  background: var(--ink);
  color: var(--paper);
  border-radius: 28px;
  border: 2px solid var(--ink);
  box-shadow: 10px 12px 0 var(--brand);
}
.kit .block-head__title { color: var(--paper); }
.kit__intro { max-width: 62ch; }
.kit__body {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: start;
}
.kit__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1.4rem 1.8rem;
}
.kit__list li {
  padding-left: 1.6rem;
  position: relative;
  border-top: 1.5px solid oklch(0.4 0.01 60);
  padding-top: 1rem;
}
.kit__list li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 0.95rem;
  color: var(--brand);
}
.kit__list h3 {
  font-family: var(--text);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
  color: var(--paper);
}
.kit__list p { color: oklch(0.82 0.015 70); font-size: 0.92rem; line-height: 1.5; }

.pricecard {
  position: sticky;
  top: 84px;
  padding: 1.6rem 1.5rem;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--brand);
}
.pricecard__eyebrow { font-weight: 700; font-size: 0.82rem; color: var(--brand-deep); letter-spacing: 0.01em; }
.pricecard__price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0.4rem 0 0.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.1ch;
}
.pricecard__cur { font-size: 2rem; margin-top: 0.35rem; color: var(--brand-deep); }
.pricecard__note { font-weight: 600; font-size: 0.92rem; color: var(--ink-2); margin-bottom: 1.2rem; }
.pricecard__checkout { width: 100%; }
.pricecard__fine { margin-top: 0.9rem; font-size: 0.8rem; color: var(--ink-2); line-height: 1.5; }

.launch-form {
  display: grid;
  gap: 0.55rem;
}
.launch-form__trap {
  display: none;
}
.launch-form__label {
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--ink);
}
.launch-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
}
.launch-form input[type="email"] {
  min-width: 0;
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--stock);
  padding: 0.78rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.launch-form input[type="email"]::placeholder {
  color: color-mix(in oklab, var(--ink-2) 72%, transparent);
}
.launch-form .btn {
  padding-inline: 1rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.kit__peek {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
  border-top: 1.5px solid oklch(0.4 0.01 60);
}
.kit__peek figure { margin: 0; min-width: 0; }
.kit-proof {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid oklch(0.55 0.015 70);
  border-radius: 12px;
  background: oklch(0.27 0.01 60);
  padding: 0.8rem;
}
.kit-proof img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 4px oklch(0.12 0.01 60 / 0.45));
}
.kit-proof--landscape img { transform: rotate(-1.25deg); }
.kit-proof--document img { object-position: top center; }
.kit-proof--document { padding-bottom: 0; }
.kit-proof--document img { height: 155%; }
.kit__peek figcaption {
  margin-top: 0.65rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  color: var(--paper);
}
.kit__peek figcaption strong { font-size: 0.88rem; }
.kit__peek figcaption span {
  font-size: 0.72rem;
  white-space: nowrap;
  color: oklch(0.82 0.015 70);
}

.export-upsell {
  width: min(760px, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--stock);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--brand);
}
.export-upsell::backdrop { background: oklch(0.12 0.01 60 / 0.76); }
.export-upsell__shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 420px;
}
.export-upsell__proof {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 310px;
}
.export-upsell__proof img {
  position: absolute;
  display: block;
  object-fit: contain;
  background: white;
  box-shadow: 4px 5px 0 oklch(0.1 0.01 60 / 0.45);
}
.export-upsell__proof img:first-child {
  width: 76%;
  left: 8%;
  top: 18%;
  transform: rotate(-5deg);
}
.export-upsell__proof img:last-child {
  width: 62%;
  right: -7%;
  bottom: -13%;
  transform: rotate(5deg);
}
.export-upsell__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2rem, 5vw, 3.2rem);
}
.export-upsell__copy h2 { font-size: clamp(2rem, 5vw, 3rem); margin: 0.9rem 0 0.8rem; }
.export-upsell__copy > p:not(.tag) { color: var(--ink-2); line-height: 1.65; margin-bottom: 1.35rem; }
.export-upsell__copy .btn { width: 100%; }
.export-upsell__close {
  position: absolute;
  z-index: 1;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--stock);
  color: var(--ink);
  font: inherit;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.export-upsell__skip {
  align-self: center;
  margin-top: 0.9rem;
  border: 0;
  background: transparent;
  color: var(--ink-2);
  font: inherit;
  font-size: 0.82rem;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 650px) {
  .export-upsell__shell { grid-template-columns: 1fr; }
  .export-upsell__proof { display: none; }
  .export-upsell__copy { padding: 1.6rem 1.25rem 1.35rem; }
}

@media (max-width: 820px) {
  .kit__body { grid-template-columns: 1fr; }
  .pricecard { position: static; }
}

@media (max-width: 460px) {
  .launch-form__row { grid-template-columns: 1fr; }
  .launch-form .btn { width: 100%; }
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 6vw, 4rem);
}
.thanks-card {
  width: min(680px, 100%);
  display: grid;
  gap: 1rem;
  background: var(--stock);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: clamp(1.5rem, 5vw, 3rem);
}
.thanks-card .brandmark {
  margin-bottom: 0.4rem;
}
.thanks-card h1 {
  font-size: clamp(2.2rem, 8vw, 4rem);
}
.thanks-card p:not(.tag) {
  color: var(--ink-2);
  max-width: 48ch;
  font-size: 1.05rem;
}
.thanks-card .btn {
  justify-self: start;
  margin-top: 0.5rem;
}

/* ---------- honesty --------------------------------------- */
.honesty__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.honesty__col {
  padding: 1.6rem 1.5rem;
  background: var(--stock);
  border: 2px solid var(--ink);
  border-radius: var(--edge);
}
.honesty__col h3 {
  font-family: var(--text);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--brand-deep);
}
.honesty__col--not h3 { color: var(--ink-2); }
.honesty__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.honesty__col li {
  padding-left: 1.7rem;
  position: relative;
  color: var(--ink);
  font-size: 0.98rem;
}
.honesty__col li::before {
  content: "✓";
  position: absolute; left: 0; top: -0.05rem;
  font-weight: 800;
  color: var(--brand);
}
.honesty__col--not li::before { content: "✕"; color: var(--ink-2); }

@media (max-width: 640px) {
  .honesty__grid { grid-template-columns: 1fr; }
}

/* ---------- faq ------------------------------------------- */
.faq__list {
  display: grid;
  gap: 0.8rem;
  max-width: 820px;
}
.qa {
  background: var(--stock);
  border: 2px solid var(--ink);
  border-radius: var(--edge);
  padding: 0.3rem 1.3rem;
  transition: box-shadow 140ms ease;
}
.qa[open] { box-shadow: 5px 5px 0 var(--ink); }
.qa summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  font-family: var(--text);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--brand);
  transition: transform 180ms ease;
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa p {
  padding: 0 0 1.1rem;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 64ch;
}

/* ---------- footer ---------------------------------------- */
.footer {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 5vw, 3rem);
  border-top: 2px solid var(--ink);
  display: grid;
  gap: 0.8rem;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6ch;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
}
.footer__brand .brandmark__stamp { width: 28px; height: 28px; }
.footer__line { max-width: 60ch; color: var(--ink-2); font-size: 0.95rem; }
.footer__fine { font-size: 0.85rem; color: var(--ink-2); font-weight: 600; }
.footer__link { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.footer__link:hover { color: var(--brand-deep); }

/* ---------- entrance motion (enhances visible default) ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); }
  .reveal.in-view {
    opacity: 1;
    transform: none;
    transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .hero__stage .reviewcard { animation: card-in 900ms cubic-bezier(0.16, 1, 0.3, 1) both; }
  @keyframes card-in {
    from { opacity: 0; transform: rotate(-8deg) translateY(30px) scale(0.96); }
    to   { opacity: 1; transform: rotate(-2deg) translateY(0) scale(1); }
  }
}

@media print {
  .grain, .topbar, .marquee, .hero__stage { display: none; }
}
