/* Breakbench — marketing site
   Working name; trademark clearance pending (see docs/product-plan.md §12) */

:root {
  --ground: #E7EAE6;
  --surface: #F4F6F3;
  --surface-2: #DBE0DA;
  --ink: #171B18;
  --ink-2: #414942;
  --muted: #6C756E;
  --rule: #C4CBC3;
  --rule-soft: #D6DBD5;
  --accent: #B8430F;
  --accent-ink: #8F3309;
  --accent-soft: #F2DACE;
  --steel: #2C4A5A;

  --f-display: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-body: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --f-mono: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;

  --measure: 66ch;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #121513;
    --surface: #1A1E1B;
    --surface-2: #252A26;
    --ink: #E7EAE6;
    --ink-2: #B6BDB7;
    --muted: #859089;
    --rule: #333A35;
    --rule-soft: #2A302B;
    --accent: #E8703A;
    --accent-ink: #F09062;
    --accent-soft: #372014;
    --steel: #86AEC3;
  }
}

*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, ol, figure { margin: 0; padding: 0; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .kicker, .stat__n, .lede, .logo, .btn, .price__n {
  font-family: var(--f-display);
  text-wrap: balance;
}

a { color: var(--accent-ink); }
strong { font-weight: 700; }

/* ---------- layout ---------- */
.band { padding: clamp(2.75rem, 7vw, 5rem) var(--pad); }
.band--surface { background: var(--surface); }
.band--deep { background: var(--surface-2); }
/* Both containers share one left edge so the page has a single spine.
   .inner constrains only its text children to a readable measure — wide
   children (timeline, grids) still run the full width. */
.inner, .inner--wide { max-width: 104ch; margin-inline: auto; }
.inner > h1,
.inner > h2,
.inner > h3,
.inner > p,
.inner > .lede,
.inner > .checks,
.inner > .callout,
.inner > .form { max-width: var(--measure); }

/* ---------- nav ---------- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem var(--pad);
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}

.logo {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--ink);
}
.logo::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--accent);
  margin-right: 0.5rem;
}

.nav__links { display: flex; gap: 1.4rem; align-items: center; font-size: 0.92rem; }
.nav__links a { color: var(--ink-2); text-decoration: none; }
.nav__links a:hover { color: var(--accent-ink); text-decoration: underline; }

/* ---------- type ---------- */
.kicker {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 0.9rem;
}

h1 {
  font-size: clamp(2.1rem, 6.4vw, 3.6rem);
  line-height: 1.01;
  letter-spacing: -0.028em;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.45rem, 3.6vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

h3 { font-size: 1.05rem; letter-spacing: -0.005em; margin-bottom: 0.35rem; }

p { margin-bottom: 1.05rem; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  line-height: 1.38;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  margin-bottom: 1.9rem;
}

.section-intro { color: var(--ink-2); margin-bottom: 2rem; }
.small { font-size: 0.9rem; color: var(--ink-2); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #FFF;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 0.75rem 1.4rem;
  border: 2px solid var(--accent);
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--accent-ink); }
.btn--ghost { background: transparent; color: var(--accent-ink); }
.btn--ghost:hover { background: var(--accent); color: #FFF; }

.cta-row { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; }

/* ---------- timeline ---------- */
.timeline { display: grid; grid-template-columns: 1fr; margin-bottom: 1.9rem; }
@media (min-width: 820px) { .timeline { grid-template-columns: repeat(5, 1fr); } }

.stage { border-top: 3px solid var(--rule); padding: 1rem 1.15rem 1.35rem 0; position: relative; }
.stage::before {
  content: "";
  position: absolute; top: -8px; left: 0;
  width: 13px; height: 13px;
  background: var(--ground);
  border: 3px solid var(--muted);
  border-radius: 50%;
}
.stage--key { border-top-color: var(--accent); }
.stage--key::before { border-color: var(--accent); background: var(--accent); }

.stage__day {
  font-family: var(--f-mono);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 0.4rem;
}
.stage--key .stage__day { color: var(--accent-ink); }
.stage__what { font-family: var(--f-display); font-size: 0.95rem; line-height: 1.2; display: block; margin-bottom: 0.45rem; }
.stage__note { font-size: 0.89rem; line-height: 1.45; color: var(--ink-2); }

/* ---------- feature grid ---------- */
.grid { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
@media (min-width: 760px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--2 { grid-template-columns: repeat(2, 1fr); } }

.cell { background: var(--surface); padding: 1.5rem 1.35rem; }
.band--surface .cell { background: var(--ground); }
.cell p { font-size: 0.93rem; line-height: 1.5; color: var(--ink-2); }
.cell__n {
  font-family: var(--f-mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; color: var(--accent-ink);
  display: block; margin-bottom: 0.7rem;
}

/* ---------- checklist ---------- */
.checks { display: grid; gap: 0.6rem; margin-bottom: 1.5rem; }
.checks li { position: relative; padding-left: 1.7rem; font-size: 0.97rem; line-height: 1.5; color: var(--ink-2); }
.checks li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 0.7rem; height: 2px; background: var(--accent);
}
.checks b { font-family: var(--f-display); font-weight: 400; color: var(--ink); }

/* ---------- pricing ---------- */
.prices { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-bottom: 1.4rem; }
@media (min-width: 780px) { .prices { grid-template-columns: repeat(3, 1fr); } }

.price { background: var(--surface); padding: 1.6rem 1.4rem; }
.band--surface .price { background: var(--ground); }
.price--mid { background: var(--accent-soft); }
.band--surface .price--mid { background: var(--accent-soft); }

.price__band {
  font-family: var(--f-mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: 0.8rem;
}
.price__n {
  font-size: 2.1rem; line-height: 1; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums; display: block; margin-bottom: 0.25rem;
}
.price__per { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; display: block; margin-bottom: 0.9rem; }
.price__who { font-size: 0.92rem; color: var(--ink-2); }

/* ---------- form ---------- */
.form { display: grid; gap: 0.8rem; max-width: 30rem; margin-bottom: 1rem; }
.form label {
  font-family: var(--f-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: 0.3rem;
}
.form input, .form textarea {
  width: 100%;
  font-family: var(--f-body); font-size: 1rem;
  padding: 0.65rem 0.8rem;
  background: var(--ground);
  color: var(--ink);
  border: 1px solid var(--rule);
}
.band--surface .form input, .band--surface .form textarea { background: var(--surface); }
.form input:focus, .form textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form textarea { min-height: 5.5rem; resize: vertical; }
.form__note { font-size: 0.85rem; color: var(--muted); }

/* Honeypot — off-screen rather than display:none, which some bots skip. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- callout ---------- */
.callout {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.35rem;
  margin-bottom: 1.5rem;
}
.callout p { font-size: 0.96rem; line-height: 1.55; }

/* ---------- footer ---------- */
footer {
  font-family: var(--f-mono); font-size: 0.78rem; line-height: 1.65; color: var(--muted);
  border-top: 1px solid var(--rule);
}
footer a { color: var(--muted); }
.foot-row { display: flex; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
