/* CatchMissed — site styles. Mobile-first; breakpoints at 768px and 1024px. */

:root {
  --ink: #0F1A2A;
  --paper: #F4F1EA;
  --sand: #E9E4D8;
  --white: #FFFFFF;
  --blue: #1D4ED8;
  --navy: #0B1F4B;
  --orange: #FF6B1A;
  --muted: #3B4556;
  --muted-2: #5A6270;
  --line: #CFC8B8;
  --on-dark: #C9D3E8;
  --on-dark-2: #BFC7D6;

  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-body: "Atkinson Hyperlegible", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 16px;
  --shadow: 6px 6px 0 var(--ink);
  --gutter: 16px;
}

@media (min-width: 768px) { :root { --gutter: 32px; } }

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
.on-dark :focus-visible, .band-blue :focus-visible { outline-color: var(--orange); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  padding: 10px 16px; background: var(--ink); color: var(--white); border-radius: 8px;
}
.skip-link:focus { top: 12px; color: var(--white); }

.i {
  width: 20px; height: 20px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.container { width: 100%; max-width: 1264px; margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Type ---------- */

.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-stretch: 80%;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
h1 { font-size: clamp(44px, 7.4vw, 84px); line-height: 0.97; font-stretch: 78%; letter-spacing: -0.025em; }
h2 { font-size: clamp(34px, 5vw, 60px); line-height: 1.02; }
h3 { font-size: clamp(21px, 2.2vw, 28px); line-height: 1.12; font-stretch: 85%; }
p { margin: 0; }

.mark { box-shadow: inset 0 -0.2em 0 var(--orange); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.on-dark .eyebrow { color: var(--orange); }

.lede { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.45; color: var(--muted); max-width: 36em; }
.on-dark .lede { color: var(--on-dark); }

.section-head { display: flex; flex-direction: column; gap: 14px; max-width: 840px; }
.section-head--split { max-width: none; }
@media (min-width: 1024px) {
  .section-head--split { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 48px; }
  .section-head--split .lede { max-width: 380px; font-size: 18px; }
}

/* ---------- Sections ---------- */

.section { padding: 64px 0; }
@media (min-width: 1024px) { .section { padding: 112px 0; } }
.section > .container { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 1024px) { .section > .container { gap: 52px; } }

.bg-sand { background: var(--sand); }
.bg-ink { background: var(--ink); color: var(--paper); }
.bg-navy { background: var(--navy); color: var(--white); }
.band-blue { background: var(--blue); color: var(--white); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 26px;
  border: 2px solid var(--ink); border-radius: 12px;
  font-family: var(--font-display); font-stretch: 88%; font-weight: 800; font-size: 19px;
  text-decoration: none; line-height: 1.1; text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translate(-1px, -1px); }
.btn:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.btn--lg { min-height: 62px; font-size: 21px; padding: 0 30px; }
.btn--sm { min-height: 46px; padding: 0 16px; font-size: 16px; border-radius: 10px; box-shadow: 3px 3px 0 var(--ink); }
.btn--block { display: flex; width: 100%; }

.btn--primary { background: var(--orange); color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.btn--primary:hover { color: var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.btn--blue { background: var(--blue); color: var(--white); box-shadow: 4px 4px 0 var(--ink); }
.btn--blue:hover { color: var(--white); }
.btn--outline { background: var(--white); color: var(--ink); }
.btn--outline:hover { color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn--ghost-light:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }

.text-link {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px;
  font-weight: 700; font-size: 17px;
}
.on-dark .text-link, .band-blue .text-link { color: var(--white); }

@media (max-width: 767px) {
  .btn--lg { width: 100%; }
}

/* ---------- Nav ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
@media (min-width: 1024px) { .site-header .container { height: 84px; } }

.logo { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.logo:hover { color: var(--ink); }
.logo__mark {
  position: relative; width: 36px; height: 36px; border-radius: 9px;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.logo__mark .i { width: 20px; height: 20px; }
.logo__mark::after {
  content: ""; position: absolute; top: -5px; right: -5px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--orange); border: 2px solid var(--paper);
}
.logo__word { font-family: var(--font-display); font-stretch: 85%; font-weight: 800; font-size: 24px; letter-spacing: -0.02em; }
.logo__word span { color: var(--blue); }
.site-footer .logo__word { color: var(--white); }
.site-footer .logo__word span { color: var(--orange); }
.site-footer .logo__mark::after { border-color: var(--ink); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__links { display: none; gap: 32px; }
.nav__links a { color: var(--ink); text-decoration: none; font-weight: 700; }
.nav__links a:hover, .nav__links a[aria-current="page"] { text-decoration: underline; text-decoration-thickness: 2px; color: var(--blue); }
@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .logo__word { font-size: 27px; }
  .logo__mark { width: 40px; height: 40px; }
}

/* ---------- Hero ---------- */

.hero { padding: 36px 0 56px; }
.hero .container { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) {
  .hero { padding: 80px 0 104px; }
  .hero .container { grid-template-columns: minmax(0, 1fr) 520px; gap: 64px; }
}
.hero__copy { display: flex; flex-direction: column; gap: 24px; }
.hero__ctas { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }

.chip {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; background: var(--white);
  border: 2px solid var(--ink); border-radius: 999px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.chip::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }

.ticks {
  display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 0; padding: 16px 0 0; list-style: none;
  border-top: 2px dashed var(--line);
  font-size: 15px; font-weight: 700; color: var(--muted);
}
.ticks li { display: flex; align-items: center; gap: 8px; }
.ticks .i { width: 18px; height: 18px; color: var(--blue); }

/* ---------- Phone mock ---------- */

.hero__art { position: relative; height: 580px; max-width: 520px; width: 100%; margin: 0 auto; }
@media (min-width: 1024px) { .hero__art { height: 640px; } }

.phone {
  background: var(--ink); padding: 11px; border-radius: 46px;
  box-shadow: 10px 10px 0 var(--blue);
}
.hero__art .phone { position: absolute; right: 8px; top: 0; width: min(300px, 78%); height: 540px; }
@media (min-width: 1024px) { .hero__art .phone { width: 340px; height: 620px; } }

.phone__screen {
  height: 100%; background: var(--white); color: var(--ink);
  border-radius: 36px; overflow: hidden; display: flex; flex-direction: column;
}
.phone__head {
  padding: 26px 18px 12px; border-bottom: 1px solid #E6E3DC;
  display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center;
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
}
.avatar--sand { background: var(--sand); color: var(--ink); }
.phone__name { font-weight: 700; font-size: 15px; }
.phone__meta { font-size: 12px; color: var(--muted-2); }
.phone__thread { flex-grow: 1; padding: 16px 13px; display: flex; flex-direction: column; gap: 8px; }
.bubble {
  align-self: flex-start; max-width: 92%; padding: 12px 14px;
  background: #E9E9EB; border-radius: 20px 20px 20px 6px;
  font-size: 15px; line-height: 1.42; display: flex; flex-direction: column; gap: 10px;
}
.bubble--me {
  align-self: flex-end; background: var(--blue); color: var(--white);
  border-radius: 20px 20px 6px 20px; font-weight: 700; padding: 9px 16px;
}
.bubble small { font-size: 13px; color: var(--muted-2); }
.bubble .fake-link { color: var(--blue); text-decoration: underline; word-break: break-all; }
.delivered { align-self: flex-end; font-size: 11px; color: var(--muted-2); }
.phone__input { padding: 10px 14px 20px; }
.phone__input div {
  height: 38px; border: 1px solid #D5D2CA; border-radius: 19px;
  display: flex; align-items: center; padding: 0 14px; font-size: 14px; color: #8A8F98;
}

.token {
  padding: 1px 6px; background: #FFF1E6; border: 1.5px dashed #C2410C; border-radius: 6px;
  font-family: var(--font-mono); font-size: 0.85em; color: #9A3412; white-space: nowrap;
}

/* Job-log ticket */
.ticket {
  background: var(--white); border: 2px solid var(--ink); border-radius: 14px;
  box-shadow: var(--shadow); padding: 16px; display: flex; flex-direction: column; gap: 12px;
}
.hero__art .ticket { position: absolute; left: 0; bottom: 20px; width: min(270px, 70%); transform: rotate(-2.5deg); }
@media (min-width: 1024px) { .hero__art .ticket { bottom: 52px; width: 290px; } }
.ticket__head {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--muted-2);
}
.ticket__row { display: flex; gap: 12px; align-items: center; }
.ticket__row time { display: block; font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--muted-2); }
.ticket__row b { display: block; font-size: 14px; line-height: 1.3; }

.ico {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ico .i { width: 18px; height: 18px; }
.ico--orange { background: var(--orange); color: var(--ink); }
.ico--blue { background: var(--blue); color: var(--white); }
.ico--ink { background: var(--ink); color: var(--white); }
.ico--white { background: var(--white); color: var(--ink); }
.ico--lg { width: 52px; height: 52px; border-radius: 12px; }
.ico--lg .i { width: 26px; height: 26px; }

/* ---------- Proof band ---------- */

.proof { padding: 28px 0; }
.proof .container { display: flex; flex-direction: column; gap: 12px; }
.proof blockquote {
  margin: 0; font-family: var(--font-display); font-stretch: 85%; font-weight: 700;
  font-size: clamp(21px, 2vw, 26px); line-height: 1.25;
}
.proof__note { font-size: 15px; color: var(--on-dark-2); }
@media (min-width: 1024px) {
  .proof { padding: 36px 0; }
  .proof .container { flex-direction: row; align-items: center; gap: 28px; }
  .proof__note { margin-left: auto; white-space: nowrap; }
}

/* ---------- Grids + cards ---------- */

.grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; } }

.card {
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card--flat { box-shadow: none; }
.card--dark { background: var(--ink); color: var(--paper); box-shadow: none; }
.card__body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 1024px) { .card__body { padding: 36px; gap: 20px; } }

.step { display: flex; flex-direction: column; overflow: hidden; }
.step .card__body { flex-grow: 1; }
.step__top { display: flex; justify-content: space-between; align-items: center; }
.step__num { font-family: var(--font-display); font-stretch: 75%; font-weight: 900; font-size: clamp(44px, 5vw, 64px); line-height: 1; color: var(--blue); }
.step p, .muted { color: var(--muted); }
.step__foot {
  padding: 12px 24px; border-top: 2px dashed var(--line);
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--muted-2);
}
@media (min-width: 1024px) { .step__foot { padding: 14px 36px; } }

.promise { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); max-width: 52em; }
.promise strong { color: var(--ink); }

/* Lists */
.list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; font-size: 17px; line-height: 1.4; }
@media (min-width: 1024px) { .list--lg { font-size: 19px; gap: 18px; } }
.list li { display: flex; gap: 12px; align-items: flex-start; }
.list .i { color: var(--blue); stroke-width: 2.5; margin-top: 1px; }
.dot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue); color: var(--white);
}
.dot .i { width: 15px; height: 15px; color: currentColor; stroke-width: 3; margin: 0; }
.dot--no { background: transparent; border: 2px solid #8C97AB; color: #C9D1DE; }
.card--dark .list .i { color: #9AA6BC; }
.card--dark .dot .i { color: currentColor; }
.fine-dark { padding-top: 18px; border-top: 1px solid #33415A; color: var(--on-dark-2); font-size: 16px; }

/* ---------- Sample SMS ---------- */

.sms .container { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .sms .container { grid-template-columns: minmax(0, 1fr) 400px; gap: 96px; } }
.sms__copy { display: flex; flex-direction: column; gap: 22px; }
.numbered { margin: 8px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 18px; }
.numbered li { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; line-height: 1.45; }
@media (min-width: 1024px) { .numbered li { font-size: 19px; } }
.numbered li span { color: var(--on-dark); }
.numbered li strong { color: var(--white); }
.num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px; margin-top: -2px;
}
.sms .phone { width: 100%; max-width: 380px; height: 560px; margin: 0 auto; box-shadow: 10px 10px 0 var(--orange); border: 2px solid #3A4F7F; }
@media (min-width: 1024px) { .sms .phone { height: 620px; } }
.sms .bubble { font-size: 16px; line-height: 1.5; }

/* ---------- Pricing ---------- */

.price-grid { display: grid; gap: 28px; padding-top: 12px; }
@media (min-width: 1024px) { .price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; } }
.price { position: relative; display: flex; flex-direction: column; gap: 20px; padding: 32px 24px 24px; }
@media (min-width: 1024px) { .price { padding: 40px 36px 36px; } }
.price--featured { border-width: 3px; box-shadow: 8px 8px 0 var(--orange); }
.price--rush { background: transparent; border: 2px dashed #8A8272; box-shadow: none; }
.price__tag {
  position: absolute; top: -16px; left: 24px; padding: 5px 11px;
  background: var(--orange); border: 2px solid var(--ink); border-radius: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
}
.price__name { font-size: 24px; display: flex; align-items: center; gap: 10px; }
.price__name small { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--muted-2); }
.price__amount { display: flex; align-items: baseline; gap: 12px; }
.price__num { font-family: var(--font-display); font-stretch: 75%; font-weight: 900; font-size: clamp(60px, 6vw, 80px); line-height: 1; letter-spacing: -0.02em; }
.price__unit { display: flex; flex-direction: column; font-size: 15px; color: var(--muted); }
.price__unit s { color: var(--muted-2); }
.price .list { flex-grow: 1; }
.price__note { font-size: 14px; line-height: 1.45; color: var(--muted); }

.guarantee { display: flex; gap: 18px; align-items: flex-start; padding: 22px; }
@media (min-width: 1024px) { .guarantee { align-items: center; padding: 28px 32px; } }
.guarantee p { color: var(--muted); font-size: 16px; }
@media (min-width: 1024px) { .guarantee p { font-size: 18px; } }
.guarantee strong { color: var(--ink); }
.ico--soft { background: #E8EEFD; color: var(--blue); width: 52px; height: 52px; border-radius: 14px; }
.ico--soft .i { width: 26px; height: 26px; }

/* ---------- FAQ ---------- */

.faq-item { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
@media (min-width: 1024px) { .faq-item { padding: 32px; gap: 12px; } }
.faq-item h3 { font-size: clamp(20px, 1.8vw, 24px); }
.faq-item p { color: var(--muted); }
.faq-item p span { color: var(--muted-2); }

/* ---------- Final CTA ---------- */

.final { padding: 72px 0; text-align: left; }
.final .container { display: flex; flex-direction: column; gap: 24px; }
.final h2 { font-size: clamp(42px, 6vw, 78px); line-height: 0.98; font-stretch: 78%; max-width: 15em; }
.final p { color: #DCE5FF; font-size: clamp(17px, 1.6vw, 21px); }
.final__ctas { display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 768px) { .final__ctas { flex-direction: row; } .final__ctas .btn { width: auto; } }
@media (min-width: 1024px) {
  .final { padding: 112px 0; text-align: center; }
  .final .container { align-items: center; }
}

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: var(--on-dark-2); padding: 32px 0 40px; font-size: 15px; }
.site-footer .container { display: flex; flex-direction: column; gap: 14px; }
.site-footer a { color: var(--white); }
.footer__meta { display: flex; flex-direction: column; gap: 8px; }
@media (min-width: 1024px) {
  .site-footer .container { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer__meta { flex-direction: row; gap: 28px; }
}

/* ---------- Marketing page ---------- */

.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 560px); gap: 72px; }
  .split--rev { grid-template-columns: minmax(0, 560px) minmax(0, 1fr); gap: 88px; }
}

.flow { padding: 22px; display: flex; flex-direction: column; gap: 14px; border-radius: var(--radius); }
@media (min-width: 1024px) { .flow { padding: 28px; } }
.flow--before { background: var(--sand); border: 2px solid #8A8272; }
.flow--after { background: var(--white); border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--blue); }
.flow__label { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--muted-2); }
.flow--after .flow__label { color: var(--blue); }
.flow__steps { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; }
.flow__steps .i { width: 18px; height: 18px; }
.pill { padding: 9px 13px; border-radius: 10px; border: 2px solid var(--ink); }
.pill--muted { background: var(--white); border: 1.5px solid #B9B1A0; color: var(--muted); }
.pill--struck { background: var(--white); border: 1.5px dashed #B9B1A0; color: var(--muted); text-decoration: line-through; }
.pill--orange { background: var(--orange); }
.pill--blue { background: var(--blue); color: var(--white); }
.pill--ink { background: var(--ink); color: var(--white); }

.note .container { display: grid; gap: 28px; }
@media (min-width: 1024px) { .note .container { grid-template-columns: 320px minmax(0, 1fr); gap: 80px; } }
.note__big { font-family: var(--font-display); font-stretch: 85%; font-weight: 700; font-size: clamp(26px, 3vw, 38px); line-height: 1.2; }
.note__body { display: flex; flex-direction: column; gap: 22px; max-width: 820px; }
.note__body p { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.6; color: #C9D1DE; }
.note__sig { font-family: var(--font-display); font-stretch: 85%; font-weight: 800; font-size: 22px; color: var(--white); }

.timeline { display: grid; background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
@media (min-width: 1024px) { .timeline { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.timeline__step { padding: 24px; display: flex; flex-direction: column; gap: 12px; border-bottom: 2px dashed var(--line); }
.timeline__step:last-child { border: 0; background: var(--ink); color: var(--white); }
@media (min-width: 1024px) {
  .timeline__step { border-bottom: 0; border-right: 2px dashed var(--line); padding: 28px 24px; }
}
.timeline__when { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: var(--muted-2); }
.timeline__step:last-child .timeline__when { color: var(--orange); }
.timeline__step h3 { font-size: 22px; }
.timeline__step p { font-size: 16px; color: var(--muted); }
.timeline__step:last-child p { color: #C9D1DE; }
.rush-pill {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border: 2px dashed #8A8272; border-radius: 12px; font-weight: 700;
}

/* Calculator */
.calc { padding: 24px; border-width: 3px; box-shadow: 8px 8px 0 var(--ink); display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 1024px) { .calc { padding: 36px; } }
.calc__row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px 20px; }
.calc__row + .calc__row { padding-top: 22px; border-top: 2px dashed var(--line); }
.calc__label { display: flex; flex-direction: column; gap: 2px; }
.calc__label b { font-size: 18px; }
.calc__label span { font-size: 14px; color: var(--muted-2); }
.stepper { display: flex; align-items: center; gap: 10px; }
.stepper button {
  width: 48px; height: 48px; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper); color: var(--ink); border: 2px solid var(--ink); border-radius: 10px;
}
.stepper button:hover { background: var(--sand); }
.stepper button .i { stroke-width: 2.5; }
.stepper output { min-width: 80px; text-align: center; font-family: var(--font-display); font-stretch: 75%; font-weight: 900; font-size: 42px; line-height: 1; }
.calc__result { padding: 22px; background: var(--navy); color: var(--white); border-radius: 14px; display: flex; flex-direction: column; gap: 10px; }
.calc__result p:first-child { color: var(--on-dark); }
.calc__result strong { color: var(--white); }
.calc__big { font-family: var(--font-display); font-stretch: 85%; font-weight: 800; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; }
.calc__big span { color: var(--orange); }
.calc__fine { font-size: 13px; color: var(--muted-2); }

/* Weekly email mock */
.email { overflow: hidden; box-shadow: 8px 8px 0 var(--blue); }
.email__head { padding: 16px 20px; border-bottom: 2px solid var(--ink); background: var(--paper); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.email__head span { display: flex; flex-direction: column; }
.email__head small { font-size: 13px; color: var(--muted-2); }
.email__head b { font-size: 16px; }
.tag { padding: 4px 9px; border: 2px solid var(--ink); border-radius: 6px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; }
.email__body { padding: 20px; display: flex; flex-direction: column; gap: 18px; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.stat { padding: 14px; border: 2px solid var(--ink); border-radius: 12px; display: flex; flex-direction: column; gap: 4px; }
.stat span { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--muted-2); }
.stat b { font-family: var(--font-display); font-stretch: 75%; font-weight: 900; font-size: 36px; line-height: 1; }
.stat--blue { background: var(--blue); color: var(--white); }
.stat--blue span { color: #DCE5FF; }
.log { font-size: 14px; }
.log div { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid #E6E3DC; }
.log div:last-child { border: 0; }
.log .log__head { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--muted-2); }
.log .ph { color: var(--muted-2); }

.list-2 { display: grid; gap: 14px 28px; }
@media (min-width: 768px) { .list-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.pricing-sum { display: grid; gap: 28px; }
@media (min-width: 1024px) { .pricing-sum { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.pricing-sum .card__body { height: 100%; }
.price-row { display: flex; flex-wrap: wrap; gap: 20px 44px; align-items: flex-end; }
.price-row > span { display: flex; flex-direction: column; gap: 4px; }
.price-row .lbl { font-size: 15px; font-weight: 700; color: var(--muted); }
.btn-row { display: flex; flex-direction: column; gap: 14px; margin-top: auto; }
@media (min-width: 768px) { .btn-row { flex-direction: row; } .btn-row .btn { flex: 1; } }
.guarantee-card { background: var(--blue); color: var(--white); border-width: 3px; box-shadow: none; }
.guarantee-card p { color: #DCE5FF; font-size: 18px; line-height: 1.55; }
.guarantee-card h3 { font-size: clamp(30px, 3vw, 40px); line-height: 1.05; }

.faq-list .container { display: grid; gap: 32px; }
@media (min-width: 1024px) { .faq-list .container { grid-template-columns: 340px minmax(0, 1fr); gap: 80px; } }
.faq-rows { border-top: 2px solid var(--ink); }
.faq-row { padding: 22px 0; border-bottom: 2px solid var(--ink); display: grid; gap: 8px; }
@media (min-width: 768px) { .faq-row { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); gap: 32px; } }
.faq-row h3 { font-size: 21px; line-height: 1.2; }
.faq-row p { color: var(--muted); }
.faq-row p span { color: var(--muted-2); }

.closing { padding: 72px 0; }
.closing .container { display: flex; flex-direction: column; gap: 28px; }
.closing h2 { font-size: clamp(40px, 5vw, 64px); line-height: 0.98; font-stretch: 78%; max-width: 12em; }
.closing__ctas { display: flex; flex-direction: column; gap: 10px; align-items: stretch; width: 100%; max-width: 420px; }
.closing__ctas .text-link { justify-content: center; text-align: center; }
@media (min-width: 1024px) {
  .closing { padding: 96px 0; }
  .closing .container { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ---------- Simple pages (thanks, 404) ---------- */

.simple { min-height: calc(100vh - 200px); display: flex; align-items: center; padding: 64px 0; }
.simple .container { display: flex; flex-direction: column; gap: 22px; max-width: 760px; }
.simple .card__body { gap: 14px; }
.stepper button:disabled { opacity: 0.4; cursor: not-allowed; }
/* Grid layouts on a section's container must win over the default flex column. */
.section > .container.split,
.section > .container.pricing-sum { display: grid; }
.btn--sm { white-space: nowrap; }
.show-sm { display: inline; }
.hide-sm { display: none; }
@media (min-width: 480px) { .show-sm { display: none; } .hide-sm { display: inline; } }
