:root {
  --bg: #1a1817;
  --ink: #f3f2f2;
  --body: #d7d3d3;
  --faint: #9b9797;
  --dim: #7d7979;
  --accent: #ff563c;
  --accent-hover: #ff9783;
  --rule: rgba(243, 242, 242, 0.25);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }
::selection { background: rgba(255, 86, 60, 0.35); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 20;
  background: var(--bg); border-bottom: 2px solid var(--rule);
}
header.site .wrap {
  display: flex; align-items: stretch; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.wordmark {
  padding: 20px 0; color: var(--ink); text-decoration: none;
  font-weight: 800; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
}
.wordmark:hover { color: var(--accent); }
nav.site { display: flex; }
nav.site a {
  display: block; padding: 20px 16px; color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
nav.site a:hover { color: var(--accent); }
nav.site a[aria-current="page"] { border-bottom-color: var(--accent); }

/* Type */
.eyebrow {
  font-family: "Archivo Narrow", system-ui, sans-serif;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 40px;
}
h1 {
  margin: 0; font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(44px, 7vw, 96px); line-height: 0.98; max-width: 15ch; text-wrap: pretty;
}
h1.medium { font-size: clamp(40px, 6vw, 80px); line-height: 1; max-width: 16ch; }
.lede { margin: 40px 0 0; max-width: 56ch; font-size: 19px; line-height: 1.5; color: var(--body); }

/* Sections */
.rule { border-top: 2px solid var(--rule); }
section.hero { padding: 96px 0 72px; }
section.block { padding: 80px 0; }
.two-col { display: grid; grid-template-columns: minmax(160px, 1fr) minmax(320px, 2.4fr); gap: 48px; }
@media (max-width: 640px) { .two-col { grid-template-columns: 1fr; gap: 20px; } }
h2.label {
  margin: 0; font-size: 13px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.two-col p { margin: 0 0 20px; color: var(--body); max-width: 64ch; font-size: 16px; }
.two-col p:last-child { margin-bottom: 0; }
.two-col p.big { font-size: 21px; line-height: 1.5; max-width: 60ch; color: var(--ink); }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.stats > div { padding: 32px 24px; border-right: 2px solid var(--rule); }
.stats > div:first-child { padding-left: 0; }
.stats > div:last-child { padding-right: 0; border-right: 0; }
.stats .k {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 12px;
}
.stats .v { font-size: 20px; font-weight: 600; }

/* Product card bits */
.badges { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.badge {
  display: inline-block; padding: 5px 10px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent); color: var(--bg);
}
.badge.outline {
  background: transparent; border: 1px solid rgba(243, 242, 242, 0.35);
  font-weight: 600; color: var(--body);
}
h3.product { margin: 0 0 16px; font-size: clamp(32px, 4.4vw, 52px); line-height: 1.02; letter-spacing: -0.02em; font-weight: 800; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg); border: 0; padding: 14px 20px;
  font-weight: 800; font-size: 14px; letter-spacing: 0.02em; text-decoration: none;
}
.btn:hover { background: var(--accent-hover); color: var(--bg); }
.btn.outline {
  background: transparent; color: var(--ink);
  border: 2px solid rgba(243, 242, 242, 0.35); padding: 13px 18px;
}
.btn.outline:hover { border-color: var(--accent); color: var(--accent); background: transparent; }

/* Poster band */
.poster { background: var(--accent); color: var(--bg); }
.poster .wrap { padding-top: 88px; padding-bottom: 88px; }
.poster p {
  margin: 0; font-weight: 800; letter-spacing: -0.025em;
  font-size: clamp(30px, 5vw, 62px); line-height: 1.02; max-width: 20ch;
}
.poster.narrow .wrap { padding-top: 72px; padding-bottom: 72px; }
.poster.narrow p { font-size: clamp(26px, 4.2vw, 50px); line-height: 1.05; letter-spacing: -0.02em; max-width: 24ch; }

/* Contact */
.contact-email {
  font-size: clamp(22px, 3vw, 34px); font-weight: 800; letter-spacing: -0.015em;
  color: var(--accent); text-decoration: none; border-bottom: 2px solid var(--accent);
}
.contact-email:hover { color: var(--accent-hover); border-bottom-color: var(--accent-hover); }

/* How it works */
.steps { margin: 0; padding: 0; list-style: none; display: grid; }
.steps li {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 24px 0; border-top: 2px solid var(--rule);
}
.steps li:last-child { border-bottom: 2px solid var(--rule); }
.steps .n { font-weight: 800; font-size: 28px; color: var(--accent); line-height: 1; }
.steps .t { font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.steps p { margin: 0; color: var(--faint); font-size: 15px; }

.shot { margin: 0; }
.shot .frame {
  aspect-ratio: 9 / 16; max-height: 620px;
  background: repeating-linear-gradient(135deg, #232120 0 12px, #1f1d1c 12px 24px);
  border: 2px solid var(--rule);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.shot .frame span {
  font-family: ui-monospace, Menlo, monospace; font-size: 12px;
  letter-spacing: 0.08em; color: var(--faint); text-align: center;
}
.shot figcaption { margin-top: 8px; font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: var(--dim); }

/* FAQ / policy rows */
.rows > div { padding: 24px 0; border-bottom: 2px solid var(--rule); }
.rows .q { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.rows p { margin: 0; color: var(--faint); max-width: 62ch; }
.policy-row { padding: 40px 0; border-bottom: 2px solid var(--rule); }
.policy-row:last-child { border-bottom: 0; }

/* Footer */
footer.site { border-top: 2px solid var(--rule); }
footer.site .wrap {
  padding-top: 40px; padding-bottom: 64px;
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-end;
}
footer.site .legal-name {
  font-weight: 800; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px;
}
footer.site p { margin: 0; color: var(--dim); font-size: 13px; max-width: 52ch; }
footer.site nav { display: flex; gap: 20px; }
footer.site nav a { color: var(--faint); font-size: 13px; text-decoration: none; }
footer.site nav a:hover { color: var(--accent); }
