:root {
  --ink: #1d2b33;
  --slate: #0e202e;
  --slate-2: #173246;
  --paper: #f4eee3;
  --paper-deep: #e8dfcf;
  --cream: #fffaf0;
  --amber: #c88622;
  --amber-bright: #df9d31;
  --rust: #9d5d47;
  --muted: #68757b;
  --line: rgba(29, 43, 51, .18);
  --white-line: rgba(255, 250, 240, .18);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1180px;
  --shadow: 0 22px 60px rgba(14, 32, 46, .17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 134, 34, .08), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,.28), transparent 40%),
    var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(760px, calc(100% - 48px)); margin-inline: auto; }

.prototype-bar {
  background: var(--amber);
  color: var(--slate);
  text-align: center;
  padding: 8px 18px 7px;
  font: 700 11px/1.2 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 238, 227, .9);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.brand-text { line-height: 1.1; }
.brand-name { display: block; font: 700 15px/1.15 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.brand-sub { display: block; color: var(--muted); font: 600 11px/1.3 var(--sans); letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 600; }
.nav-links a { text-decoration: none; color: var(--ink); }
.nav-links a:hover { color: var(--rust); }
.nav-toggle { display: none; border: 1px solid var(--line); background: transparent; color: var(--ink); border-radius: 5px; padding: 7px 10px; font: 700 12px var(--sans); letter-spacing: .08em; text-transform: uppercase; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font: 800 14px/1.1 var(--sans);
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(14, 32, 46, .18); }
.button-primary { background: var(--amber); color: var(--slate); }
.button-secondary { border-color: var(--ink); color: var(--ink); background: transparent; }
.button-cream { background: var(--cream); color: var(--slate); }
.button-disabled { opacity: .48; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

.eyebrow { margin: 0 0 14px; color: var(--amber); font: 800 12px/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; }
.eyebrow-dark { color: var(--amber-bright); }
h1, h2, h3, h4 { margin: 0; color: var(--slate); font-family: var(--display); font-weight: 500; letter-spacing: -.03em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); line-height: .96; }
h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: 1.05; }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); line-height: 1.14; }
p { max-width: 66ch; margin: 0; }
.lede { color: #4d5a60; font-size: 1.15rem; line-height: 1.75; }
.small { color: var(--muted); font-size: .88rem; line-height: 1.55; }

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--slate);
  color: var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--slate) 0%, rgba(14,32,46,.94) 35%, rgba(14,32,46,.38) 65%, rgba(14,32,46,.1) 100%);
  z-index: 1;
}
.hero-media { position: absolute; inset: 0 0 0 34%; width: 66%; height: 100%; object-fit: cover; object-position: 65% center; opacity: .92; }
.hero-content { position: relative; z-index: 2; display: grid; align-content: center; min-height: 700px; width: min(var(--max), calc(100% - 48px)); margin-inline: auto; padding: 80px 0; }
.hero-copy { width: min(620px, 58%); }
.hero h1 { max-width: 13ch; color: var(--cream); font-size: clamp(3rem, 5.6vw, 4.8rem); }
.hero .lede { margin-top: 24px; color: rgba(255,250,240,.78); max-width: 53ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-disclosure { max-width: 520px; margin-top: 44px; padding: 15px 18px; border-left: 3px solid var(--amber); background: rgba(14,32,46,.62); color: rgba(255,250,240,.85); font-size: .9rem; line-height: 1.55; }
.hero-disclosure strong { color: var(--amber-bright); }
.hero-note { position: absolute; right: 6%; bottom: 54px; z-index: 2; width: 210px; padding: 22px; transform: rotate(4deg); background: var(--cream); color: var(--slate); box-shadow: 12px 18px 32px rgba(0,0,0,.28); }
.hero-note::before { content: ""; position: absolute; right: -1px; top: -1px; width: 38px; height: 38px; background: linear-gradient(135deg, transparent 49%, var(--amber) 50%); }
.hero-note-label { font: 800 10px/1.25 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--rust); }
.hero-note p { margin-top: 18px; font: 500 1.2rem/1.18 var(--display); }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.trust-item { min-height: 108px; padding: 25px 26px; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item strong { display: block; margin-bottom: 4px; font: 800 11px/1.2 var(--sans); letter-spacing: .15em; text-transform: uppercase; }
.trust-item span { color: #5f6869; font-size: .9rem; line-height: 1.35; }

.section { padding: 120px 0; }
.section-tight { padding: 78px 0; }
.section-dark { background: var(--slate); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .lede { color: rgba(255,250,240,.75); }
.section-kicker { display: flex; align-items: center; gap: 15px; margin-bottom: 24px; color: var(--amber); font: 800 11px/1.2 var(--sans); letter-spacing: .18em; text-transform: uppercase; }
.section-kicker::after { content: ""; width: 48px; height: 1px; background: currentColor; }

.recognition { display: grid; grid-template-columns: .85fr 1.15fr; align-items: end; gap: 90px; }
.recognition h2 { max-width: 9ch; }
.question-list { display: grid; gap: 1px; border-top: 1px solid var(--white-line); }
.question { display: flex; align-items: baseline; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--white-line); }
.question-no { color: var(--amber-bright); font: 800 12px var(--sans); letter-spacing: .14em; }
.question-text { font: 500 clamp(1.2rem, 2vw, 1.7rem)/1.2 var(--display); color: var(--cream); }

.proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.proof-image-wrap { position: relative; max-width: 430px; }
.proof-image-wrap img { width: 100%; border-radius: 4px; box-shadow: var(--shadow); }
.image-tag { position: absolute; right: -18px; bottom: 36px; padding: 10px 14px; background: var(--amber); color: var(--slate); font: 800 10px/1.2 var(--sans); letter-spacing: .12em; text-transform: uppercase; transform: rotate(-3deg); }
.proof-copy h2 { max-width: 11ch; }
.proof-copy .lede { margin-top: 22px; }
.worked-example { margin-top: 36px; padding: 24px; border: 1px solid var(--line); border-top: 4px solid var(--rust); background: rgba(255,250,240,.62); }
.worked-example-label { margin-bottom: 12px; color: var(--rust); font: 800 10px/1.2 var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.worked-example h3 { font-size: 1.6rem; }
.worked-example p { margin-top: 12px; font-size: .96rem; line-height: 1.6; }
.example-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.example-row div { padding-top: 12px; border-top: 1px solid var(--line); }
.example-row strong { display: block; margin-bottom: 4px; font: 800 10px var(--sans); letter-spacing: .1em; text-transform: uppercase; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 54px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { position: relative; padding: 30px 28px 34px; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step-no { display: block; margin-bottom: 36px; color: var(--amber); font: 800 13px var(--sans); letter-spacing: .18em; }
.step h3 { margin-bottom: 12px; }
.step p { color: #5f6869; font-size: .95rem; line-height: 1.65; }

.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.scope-card { min-height: 250px; padding: 26px; border: 1px solid rgba(255,250,240,.18); background: rgba(255,250,240,.05); }
.scope-card h3 { margin: 25px 0 12px; font-size: 1.8rem; }
.scope-card p { color: rgba(255,250,240,.68); font-size: .95rem; line-height: 1.65; }
.scope-mark { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--amber); border-radius: 50%; color: var(--amber-bright); font: 700 18px var(--sans); }

.lead-preview { display: grid; grid-template-columns: 1fr .85fr; gap: 90px; align-items: center; }
.lead-preview h2 { max-width: 10ch; }
.lead-preview .lede { margin-top: 20px; }
.card-preview { padding: 25px; background: var(--slate-2); color: var(--cream); box-shadow: var(--shadow); }
.card-preview-head { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--white-line); }
.card-preview-title { font: 800 13px/1.2 var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.card-preview-type { color: var(--amber-bright); font: 700 10px/1.2 var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.fake-field { margin-top: 18px; }
.fake-field label { display: block; margin-bottom: 6px; color: rgba(255,250,240,.6); font: 700 10px/1.2 var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.fake-line { min-height: 39px; border-bottom: 1px solid rgba(255,250,240,.48); }
.lead-preview-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.kit-tease { display: grid; grid-template-columns: 340px 1fr; gap: 100px; align-items: center; }
.kit-cover { width: 100%; max-width: 340px; transform: rotate(-2deg); box-shadow: 16px 20px 30px rgba(14,32,46,.2); }
.kit-tease h2 { max-width: 10ch; }
.kit-tease .lede { margin-top: 18px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; margin: 30px 0 34px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 22px; font-size: .95rem; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 2px; background: var(--amber); }

.contact-banner { padding: 36px; background: var(--rust); color: var(--cream); }
.contact-banner h3 { color: var(--cream); font-size: 2rem; }
.contact-banner p { margin-top: 10px; color: rgba(255,250,240,.78); font-size: .96rem; }
.contact-banner a { color: var(--cream); }

.page-hero { padding: 94px 0 74px; background: var(--slate); color: var(--cream); }
.page-hero h1 { color: var(--cream); max-width: 12ch; }
.page-hero .lede { margin-top: 22px; color: rgba(255,250,240,.75); max-width: 61ch; }
.page-hero .eyebrow { color: var(--amber-bright); }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.kit-hero { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 80px; }
.kit-hero-cover { width: min(380px, 100%); margin-inline: auto; transform: rotate(-2deg); box-shadow: var(--shadow); }
.price-lockup { display: flex; align-items: baseline; gap: 12px; margin-top: 28px; }
.price { font: 500 4rem/.9 var(--display); color: var(--amber); }
.price-note { color: var(--muted); font-size: .86rem; }
.disclosure-box { margin-top: 30px; padding: 18px 20px; border-left: 3px solid var(--amber); background: rgba(200,134,34,.09); color: #5b5a4f; font-size: .9rem; line-height: 1.6; }
.section-dark .disclosure-box { background: rgba(255,250,240,.06); color: rgba(255,250,240,.78); }

.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 50px; margin-top: 48px; border-top: 1px solid var(--line); }
.module { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.module-no { color: var(--amber); font: 800 12px var(--sans); letter-spacing: .1em; }
.module h3 { font-family: var(--sans); font-size: 1.08rem; font-weight: 700; letter-spacing: -.01em; }
.module p { margin-top: 6px; color: var(--muted); font-size: .92rem; line-height: 1.55; }

.gallery { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: center; }
.gallery-art { position: relative; }
.gallery-art img { width: min(360px, 100%); margin-inline: auto; border-radius: 4px; box-shadow: var(--shadow); }
.gallery-copy h2 { max-width: 10ch; }
.gallery-copy .lede { margin-top: 18px; }
.living-book { margin-top: 28px; border: 1px solid var(--line); background: var(--cream); }
.living-book-bar { display: flex; justify-content: space-between; padding: 11px 14px; border-bottom: 1px solid var(--line); color: var(--muted); font: 700 10px var(--sans); letter-spacing: .1em; text-transform: uppercase; }
.living-book-body { display: grid; grid-template-columns: 85px 1fr; min-height: 150px; }
.living-book-nav { padding: 16px 12px; border-right: 1px solid var(--line); background: var(--paper-deep); color: var(--muted); font-size: 10px; line-height: 1.7; }
.living-book-content { padding: 20px; }
.living-book-content strong { font: 700 1.1rem var(--display); }
.living-book-line { height: 8px; width: 84%; margin-top: 13px; background: var(--paper-deep); }
.living-book-line.short { width: 58%; }

.format-band { background: var(--paper-deep); }
.format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 42px; border: 1px solid var(--line); background: var(--line); }
.format-card { min-height: 180px; padding: 22px; background: var(--paper-deep); }
.format-card strong { display: block; margin-bottom: 10px; font: 800 11px var(--sans); letter-spacing: .13em; text-transform: uppercase; }
.format-card p { color: #5e6868; font-size: .88rem; line-height: 1.55; }

.pricing-panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: start; }
.order-card { padding: 30px; border: 1px solid var(--line); background: var(--cream); box-shadow: 0 14px 34px rgba(14,32,46,.08); }
.order-card h3 { font-family: var(--sans); font-size: 1.16rem; font-weight: 700; letter-spacing: -.01em; }
.order-line { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: .94rem; }
.order-line strong { font-weight: 800; }
.order-total { display: flex; justify-content: space-between; padding-top: 20px; font: 700 1.15rem var(--sans); }
.checkbox-line { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0; color: var(--muted); font-size: .88rem; line-height: 1.45; }
.checkbox-line input { margin-top: 4px; accent-color: var(--amber); }
.order-card .button { width: 100%; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 50px; margin-top: 38px; }
details { padding: 20px 0; border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding-right: 26px; font: 700 1rem/1.35 var(--sans); }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--amber); font-size: 1.3rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { margin-top: 12px; color: var(--muted); font-size: .92rem; line-height: 1.65; }

.sandbox-hero { background: var(--rust); }
.sandbox-hero .eyebrow { color: var(--cream); }
.sandbox-hero .lede { color: rgba(255,250,240,.84); }
.sandbox-pill { display: inline-flex; margin-top: 24px; padding: 8px 12px; border: 1px solid rgba(255,250,240,.45); color: var(--cream); font: 800 11px var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.checkout-layout { display: grid; grid-template-columns: 1fr 390px; gap: 90px; align-items: start; }
.checkout-intro h2 { max-width: 11ch; }
.checkout-intro .lede { margin-top: 18px; }
.preview-fields { display: grid; gap: 14px; margin-top: 30px; }
.preview-field { padding: 13px 15px; border: 1px solid var(--line); background: rgba(255,250,240,.44); color: #8a8e8a; }
.preview-field span { display: block; margin-bottom: 4px; font: 800 10px var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.checkout-note { margin-top: 24px; padding: 16px; background: var(--paper-deep); color: #5f6869; font-size: .9rem; line-height: 1.6; }
.checkout-note strong { color: var(--rust); }

.legal-page { padding: 80px 0 110px; }
.legal-page h1 { max-width: 12ch; }
.legal-meta { margin-top: 15px; color: var(--muted); font: 700 12px var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.legal-content { margin-top: 60px; }
.legal-content h2 { margin-top: 48px; font-size: 2rem; }
.legal-content h3 { margin-top: 28px; font-family: var(--sans); font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; }
.legal-content p, .legal-content ul { margin-top: 14px; color: #526065; font-size: 1rem; line-height: 1.8; }
.legal-content ul { padding-left: 22px; }
.legal-content li + li { margin-top: 8px; }
.legal-callout { margin: 28px 0; padding: 23px 25px; border-left: 3px solid var(--amber); background: var(--paper-deep); }
.legal-callout p { margin: 0; color: var(--ink); }

.site-footer { padding: 58px 0 32px; background: var(--slate); color: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.site-footer h3 { margin-bottom: 14px; color: var(--cream); font-size: 1.35rem; }
.site-footer p { color: rgba(255,250,240,.63); font-size: .88rem; line-height: 1.65; }
.site-footer a { color: rgba(255,250,240,.75); text-decoration: none; }
.site-footer a:hover { color: var(--amber-bright); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; font-size: .88rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 22px; border-top: 1px solid var(--white-line); color: rgba(255,250,240,.45); font-size: .78rem; }

@media (max-width: 920px) {
  .hero-media { left: 20%; width: 80%; opacity: .55; }
  .hero::before { background: linear-gradient(90deg, var(--slate) 0%, rgba(14,32,46,.84) 55%, rgba(14,32,46,.35) 100%); }
  .hero-copy { width: min(660px, 100%); }
  .hero-note { right: 6%; bottom: 34px; width: 180px; }
  .recognition, .proof-grid, .lead-preview, .gallery, .pricing-panel { grid-template-columns: 1fr; gap: 50px; }
  .recognition h2, .proof-copy h2, .lead-preview h2, .gallery-copy h2 { max-width: 15ch; }
  .proof-image-wrap { max-width: 390px; }
  .kit-tease { grid-template-columns: 240px 1fr; gap: 55px; }
  .kit-cover { max-width: 240px; }
  .checkout-layout { grid-template-columns: 1fr 420px; gap: 44px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(100% - 34px, var(--max)); }
  .nav { min-height: 70px; }
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 12px 17px 18px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 14px 24px rgba(14,32,46,.1); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 9px 0; }
  .nav-links .button { width: 100%; }
  h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .hero h1 { max-width: 10ch; font-size: clamp(2.8rem, 14vw, 4.1rem); }
  .hero, .hero-content { min-height: 670px; }
  .hero-media { left: 0; width: 100%; opacity: .38; object-position: 66% center; }
  .hero::before { background: linear-gradient(90deg, rgba(14,32,46,.98), rgba(14,32,46,.65)); }
  .hero-content { width: calc(100% - 34px); padding: 58px 0 130px; }
  .hero-note { right: 18px; bottom: 24px; width: 160px; padding: 15px; }
  .hero-note p { margin-top: 12px; font-size: 1rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child { min-height: auto; border-left: 0; border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .section-tight { padding: 56px 0; }
  .recognition, .proof-grid, .lead-preview, .kit-tease, .gallery, .pricing-panel, .checkout-layout, .kit-hero { gap: 34px; }
  .steps, .scope-grid, .module-grid, .format-grid, .faq-grid { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .scope-card { min-height: auto; }
  .feature-list { grid-template-columns: 1fr; }
  .kit-tease { grid-template-columns: 1fr; }
  .kit-cover { max-width: 260px; margin-inline: auto; }
  .kit-hero { grid-template-columns: 1fr; }
  .kit-hero-cover { width: min(270px, 85%); }
  .format-card { min-height: auto; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-layout .order-card { order: -1; }
  .page-hero { padding: 68px 0 58px; }
  .page-hero h1 { max-width: 11ch; }
  .legal-page { padding: 56px 0 80px; }
  .legal-content { margin-top: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 34px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
  body::before, .prototype-bar, .site-header, .site-footer, .button, .hero-note { display: none !important; }
  body { background: #fff; color: #111; }
  .section, .legal-page { padding: 28px 0; }
  a { text-decoration: none; }
}
