/* ============================================================
   ZeroToDev static landing. Print artifact design system.
   Ink for night. Paper for daylight truth. Cream for artifacts.
   Orange marks action, money and the emotional peak. Nothing else.
   Rules: zero em dashes, zero double hyphens, anywhere in this file.
   ============================================================ */

@font-face {
  font-family: "Archivo Black";
  src: url("/assets/fonts/archivo-black.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-var.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-italic-var.woff2") format("woff2");
  font-weight: 400 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("/assets/fonts/space-mono.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("/assets/fonts/space-mono-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: "Archivo", system-ui, sans-serif;
  background: #FAF7F0;
  color: #1A1F36;
  line-height: 1.6;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { background: #E8500A; color: #1A1F36; }

img { max-width: 100%; display: block; }

a { color: inherit; }

button { font-family: inherit; cursor: pointer; }

:focus-visible { outline: 3px solid #E8500A; outline-offset: 2px; }

/* print grain over everything, like real stock paper */
.grain {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.wrap { max-width: 1152px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }

/* type roles */
.display { font-family: "Archivo Black", "Archivo", sans-serif; font-weight: 400; letter-spacing: -0.01em; }
.serif   { font-family: "Fraunces", Georgia, serif; }
.mono    { font-family: "Space Mono", ui-monospace, monospace; }

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 40px; height: 3px; background: #E8500A; display: inline-block; }
.kicker.bare::before { display: none; }

.h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.orange { color: #E8500A; }
.orange-deep { color: #BC4406; }
.on-dark-muted { color: rgba(250,247,240,0.72); }

/* hard offset shadows, the print look */
.sh-lg { box-shadow: 6px 6px 0 0 #1A1F36; }
.sh-sm { box-shadow: 4px 4px 0 0 #1A1F36; }
.sh-art { box-shadow: 10px 12px 0 0 rgba(26,31,54,0.9); }

/* buttons */
.btn {
  display: inline-block;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.05rem;
  padding: 16px 32px;
  border: 2px solid #1A1F36;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }
.btn-orange { background: #E8500A; color: #1A1F36; }
.btn-ink { background: #1A1F36; color: #FAF7F0; }
.btn-lg { font-size: 1.2rem; padding: 20px 40px; }

/* ============================================================
   HEADER
   ============================================================ */
header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(18,22,42,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid #1A1F36;
}
header.site .wrap {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { font-family: "Archivo Black", sans-serif; font-size: 20px; letter-spacing: -0.02em; color: #FAF7F0; text-decoration: none; white-space: nowrap; }
.tagline { font-family: "Fraunces", serif; font-style: italic; font-size: 15px; color: rgba(250,247,240,0.7); }
.header-cta {
  font-family: "Archivo Black", sans-serif;
  background: #E8500A;
  color: #1A1F36;
  font-size: 14px;
  padding: 10px 16px;
  border: 2px solid #1A1F36;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 4px 4px 0 0 #1A1F36;
  transition: background 0.18s ease;
}
.header-cta:hover { background: #FAF7F0; }

/* ============================================================
   ACT 1 · HERO
   ============================================================ */
.hero { background: #1A1F36; color: #FAF7F0; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 72px;
}
.hero .kicker { color: #FAF7F0; }
.hero h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 5.2vw, 3.55rem);
  line-height: 1.07;
  letter-spacing: -0.02em;
  max-width: 640px;
}
.hero .sub {
  margin-top: 24px;
  font-size: clamp(1.06rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  color: rgba(250,247,240,0.85);
  max-width: 560px;
}
.hero-cta { margin-top: 34px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.hero-cta .fine { font-size: 13px; line-height: 1.5; color: rgba(250,247,240,0.7); }

.honest-note {
  margin-top: 36px;
  max-width: 560px;
  border: 2px solid rgba(250,247,240,0.35);
  background: rgba(250,247,240,0.06);
  padding: 16px 18px;
}
.honest-note .label {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(250,247,240,0.68);
  margin-bottom: 6px;
}
.honest-note p.quote { font-family: "Fraunces", serif; font-size: 15.5px; line-height: 1.6; color: rgba(250,247,240,0.92); }
.honest-note p.tail { margin-top: 8px; font-size: 12.5px; color: rgba(250,247,240,0.6); }

.trust-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(250,247,240,0.62);
}
.trust-row .dot { color: #E8500A; }

/* hero artifact: real cover + real worksheet, stacked and tilted */
.artifact { position: relative; margin: 0 auto; width: 100%; max-width: 380px; padding: 0 24px; }
.artifact .tag {
  position: absolute;
  top: -14px;
  left: 0;
  z-index: 10;
  transform: rotate(-6deg);
  background: #E8500A;
  color: #1A1F36;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 7px 12px;
  border: 2px solid #1A1F36;
  box-shadow: 4px 4px 0 0 #1A1F36;
}
.artifact .under { position: absolute; left: 14px; right: 6px; top: 32px; transform: rotate(4deg); }
.artifact .over { position: relative; z-index: 1; }

/* a printed page figure */
.pagefig {
  background: #fff;
  padding: 8px;
  border: 1px solid rgba(26,31,54,0.28);
  box-shadow: 10px 12px 0 0 rgba(26,31,54,0.9);
}
.pagefig img { width: 100%; height: auto; }

/* muted ink kickers on light surfaces: orange stays reserved for action */
.villain .kicker, .mechanism .kicker, .math .kicker, .fit .kicker,
.sample .kicker, .faq .kicker, .founder .kicker { color: rgba(26,31,54,0.7); }
.fit .kicker { margin-bottom: 24px; }
.founder .kicker { margin-bottom: 26px; }
.villain .kicker::before, .mechanism .kicker::before, .math .kicker::before, .fit .kicker::before,
.sample .kicker::before, .faq .kicker::before, .founder .kicker::before { background: rgba(26,31,54,0.5); }
.mirror .kicker { color: #FF7A38; }
.stakes .kicker { color: #FF7A38; }
.checkout .kicker { color: #FF7A38; }

/* ============================================================
   ACT 2 · THE MIRROR
   ============================================================ */
.mirror { background: #12162A; color: #FAF7F0; border-top: 2px solid #1A1F36; border-bottom: 2px solid #1A1F36; }
.mirror .inner { max-width: 768px; margin: 0 auto; padding: 88px 20px; }
.mirror .h2 { color: #FAF7F0; }
.mirror .lines { margin-top: 44px; }
.mirror .lines p {
  font-family: "Fraunces", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.6;
  color: rgba(250,247,240,0.86);
  border-left: 2px solid rgba(232,80,10,0.7);
  padding-left: 20px;
}
.mirror .lines p + p { margin-top: 28px; }
.mirror .outro { margin-top: 52px; font-size: 17px; line-height: 1.65; color: rgba(250,247,240,0.6); max-width: 560px; }

/* ============================================================
   ACT 3 · THE VILLAIN
   ============================================================ */
.villain { background: #FAF7F0; }
.villain .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-top: 88px; padding-bottom: 88px; }
.villain p.body { margin-top: 26px; font-size: 17.5px; line-height: 1.7; color: rgba(26,31,54,0.85); }
.villain p.body + p.body { margin-top: 18px; }
.compare { display: flex; flex-direction: column; gap: 16px; }
.compare .row { border: 2px solid #1A1F36; padding: 20px; background: #fff; box-shadow: 4px 4px 0 0 #1A1F36; }
.compare .row.hot { border-color: #E8500A; background: rgba(232,80,10,0.1); }
.compare .top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.compare .name { font-family: "Space Mono", monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; }
.compare .row.hot .name { color: #BC4406; }
.compare .stat { font-family: "Space Mono", monospace; font-size: 12px; color: rgba(26,31,54,0.72); }
.compare .row.hot .stat { color: #BC4406; }
.compare .bar { margin-top: 12px; height: 16px; border: 2px solid rgba(26,31,54,0.3); }
.compare .bar > div { height: 100%; background: rgba(26,31,54,0.45); }
.compare .row.hot .bar { border-color: rgba(232,80,10,0.5); }
.compare .row.hot .bar > div { width: 100% !important; background: #E8500A; }
.compare .cite { font-family: "Fraunces", serif; font-style: italic; font-size: 15px; line-height: 1.6; color: rgba(26,31,54,0.7); }

/* ============================================================
   ACT 4 · MECHANISM + REAL PAGES
   ============================================================ */
.mechanism { background: #F1EBDD; border-top: 2px solid #1A1F36; border-bottom: 2px solid #1A1F36; }
.mechanism .wrap { padding-top: 88px; padding-bottom: 96px; }
.mechanism p.lede { margin-top: 24px; max-width: 640px; font-size: 17.5px; line-height: 1.7; color: rgba(26,31,54,0.85); }
.lookinside { margin-top: 64px; }
.lookinside h3 { font-family: "Archivo Black", sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.15; letter-spacing: -0.01em; }
.lookinside .note { margin-top: 16px; max-width: 640px; font-family: "Fraunces", serif; font-style: italic; font-size: 17.5px; line-height: 1.65; color: rgba(26,31,54,0.75); }
.pages { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.pages figure { display: flex; flex-direction: column; }
.pages figcaption { margin-top: 20px; font-size: 14px; line-height: 1.6; color: rgba(26,31,54,0.8); }
.pages .num { font-family: "Space Mono", monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: #BC4406; display: block; margin-bottom: 5px; }
.mechanism .midcta { margin-top: 52px; }

/* ============================================================
   ACT 5 · THE PROPHECY (emotional peak, full orange)
   ============================================================ */
.prophecy { background: #E8500A; color: #12162A; border-bottom: 2px solid #1A1F36; }
.prophecy .inner { max-width: 768px; margin: 0 auto; padding: 88px 20px 104px; }
.prophecy .label { font-family: "Space Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 44px; }
.prophecy .boom { font-family: "Archivo Black", sans-serif; font-size: clamp(2.4rem, 6vw, 3.8rem); line-height: 1.04; letter-spacing: -0.02em; }
.prophecy .talk { font-family: "Fraunces", serif; font-size: clamp(1.4rem, 2.6vw, 1.8rem); line-height: 1.55; }
.prophecy .ask { font-family: "Archivo Black", sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.15; margin-top: 44px; }
.prophecy .talk.mt { margin-top: 20px; }
.prophecy .close-note { margin-top: 44px; font-size: 17px; line-height: 1.65; color: rgba(18,22,42,0.85); max-width: 560px; }
.prophecy .btn { margin-top: 40px; box-shadow: 8px 8px 0 0 rgba(18,22,42,0.35); }

/* ============================================================
   ACT 6 · THE STAKES
   ============================================================ */
.stakes { background: #1A1F36; color: #FAF7F0; }
.stakes .wrap { padding-top: 88px; padding-bottom: 88px; }
.stakes p.lede { margin-top: 24px; max-width: 640px; font-size: 17.5px; line-height: 1.7; color: rgba(250,247,240,0.85); }
.statgrid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.statgrid .card { border: 2px solid rgba(250,247,240,0.25); background: rgba(250,247,240,0.05); padding: 24px; display: flex; flex-direction: column; }
.statgrid .big { font-family: "Archivo Black", sans-serif; font-size: clamp(2rem, 3.4vw, 2.9rem); color: #E8500A; line-height: 1; }
.statgrid .small { margin-top: 16px; font-size: 15px; line-height: 1.6; color: rgba(250,247,240,0.85); flex: 1; }
.statgrid .src { margin-top: 20px; font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: 0.14em; color: rgba(250,247,240,0.62); }
.stakes .outro { margin-top: 52px; max-width: 640px; font-size: 17.5px; line-height: 1.65; color: rgba(250,247,240,0.75); }

/* ============================================================
   ACT 7 · THE OFFER · receipt + math
   ============================================================ */
.offer { background: #FAF7F0; }
.offer .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding-top: 88px; padding-bottom: 88px; }
.receipt {
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
  transform: rotate(-1deg);
  background: #fff;
  border: 2px solid #1A1F36;
  padding: 24px 24px 32px;
  box-shadow: 10px 12px 0 0 rgba(26,31,54,0.9);
}
.receipt .head {
  text-align: center;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-bottom: 2px dashed rgba(26,31,54,0.5);
  padding-bottom: 16px;
}
.receipt .items { padding: 20px 0; display: flex; flex-direction: column; gap: 12px; font-family: "Space Mono", monospace; font-size: 13px; }
.receipt .item { display: flex; align-items: baseline; gap: 8px; }
.receipt .item .lead-dots { flex: 1; border-bottom: 2px dotted rgba(26,31,54,0.4); }
.receipt .item .tag { font-size: 10px; font-weight: 700; color: #BC4406; letter-spacing: 0.06em; }
.receipt .foot { border-top: 2px dashed rgba(26,31,54,0.5); padding-top: 20px; text-align: center; }
.receipt .oneworkbook { font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: 0.2em; color: rgba(26,31,54,0.6); }
.receipt .price { font-family: "Archivo Black", sans-serif; font-size: 34px; margin-top: 4px; }
.receipt .subline { font-family: "Fraunces", serif; font-style: italic; font-size: 14px; color: rgba(26,31,54,0.7); margin-top: 4px; }
.receipt .barcode { margin: 20px auto 0; height: 44px; width: 192px; background: repeating-linear-gradient(90deg,#1A1F36 0 2px,transparent 2px 5px,#1A1F36 5px 9px,transparent 9px 11px,#1A1F36 11px 12px,transparent 12px 16px); }
.receipt .sku { font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: 0.3em; color: rgba(26,31,54,0.6); margin-top: 4px; }

.math table { margin-top: 34px; width: 100%; border-collapse: collapse; border: 2px solid #1A1F36; background: #fff; box-shadow: 6px 6px 0 0 #1A1F36; }
.math tr + tr td { border-top: 2px solid rgba(26,31,54,0.15); }
.math td { padding: 16px 20px; vertical-align: baseline; }
.math tr.hot td { background: rgba(232,80,10,0.1); }
.math .k { font-family: "Space Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; }
.math .p { font-family: "Archivo Black", sans-serif; font-size: 20px; white-space: nowrap; text-align: right; }
.math .d { display: block; margin-top: 4px; font-size: 14px; line-height: 1.55; color: rgba(26,31,54,0.6); }
.math tr.hot .d { color: rgba(26,31,54,0.85); }

.founding {
  margin-top: 26px;
  border: 2px solid #E8500A;
  background: rgba(232,80,10,0.1);
  padding: 20px;
  box-shadow: 4px 4px 0 0 #1A1F36;
}
.founding .label { font-family: "Space Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: #BC4406; margin-bottom: 8px; }
.founding p { font-size: 15px; line-height: 1.65; color: rgba(26,31,54,0.85); }

/* ============================================================
   ACT 8 · FOR YOU / NOT FOR YOU
   ============================================================ */
.fit { background: #F1EBDD; border-top: 2px solid #1A1F36; border-bottom: 2px solid #1A1F36; }
.fit .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding-top: 80px; padding-bottom: 80px; }
.fit ul { list-style: none; }
.fit li { display: flex; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid rgba(26,31,54,0.1); font-size: 17px; line-height: 1.6; }
.fit li + li { padding-top: 20px; }
.fit .yes .mark { color: #E8500A; font-family: "Archivo Black", sans-serif; }
.fit .no li { color: rgba(26,31,54,0.8); }
.fit .no .mark { font-family: "Archivo Black", sans-serif; }
.fit .disqualify {
  margin-top: 32px;
  border-left: 4px solid #E8500A;
  padding-left: 20px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(26,31,54,0.85);
}

/* ============================================================
   ACT 9 · CHECKOUT
   ============================================================ */
.checkout { background: #12162A; color: #FAF7F0; scroll-margin-top: 64px; }
.checkout .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding-top: 88px; padding-bottom: 88px; }
.steps { margin-top: 34px; list-style: none; display: flex; flex-direction: column; gap: 18px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.steps .n {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 2px solid #E8500A;
  color: #E8500A;
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps .t { font-size: 17px; line-height: 1.6; color: rgba(250,247,240,0.9); padding-top: 3px; }
.why-dm { margin-top: 26px; font-family: "Fraunces", serif; font-style: italic; font-size: 15.5px; line-height: 1.65; color: rgba(250,247,240,0.65); }

.paycard { background: #FAF7F0; color: #1A1F36; padding: 30px; border: 2px solid #FAF7F0; box-shadow: 8px 8px 0 0 #E8500A; }
.paycard .pricerow { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-bottom: 2px solid #1A1F36; padding-bottom: 16px; }
.paycard .price { font-family: "Archivo Black", sans-serif; font-size: 30px; }
.paycard .perday { font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: 0.14em; color: rgba(26,31,54,0.6); }
.paycard .foundingline { margin-top: 12px; font-family: "Space Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: #BC4406; }
.paycard .actions { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.paycard .btn { width: 100%; }
.chipcopy {
  margin-top: 10px;
  background: none;
  border: none;
  font-family: "Space Mono", monospace;
  font-size: 12.5px;
  color: rgba(26,31,54,0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 0;
}
.chipcopy:hover { color: #BC4406; }
.paycard .alt { margin-top: 18px; font-size: 13.5px; line-height: 1.6; color: rgba(26,31,54,0.65); }
.paycard .alt b { color: #1A1F36; }
.paycard .fine { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(26,31,54,0.15); font-size: 13px; line-height: 1.6; color: rgba(26,31,54,0.75); }

/* ============================================================
   FREE SAMPLE
   ============================================================ */
.sample { background: #FAF7F0; border-bottom: 2px solid #1A1F36; }
.sample .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding-top: 88px; padding-bottom: 88px; }
.sample p.lede { margin-top: 22px; font-size: 17.5px; line-height: 1.7; color: rgba(26,31,54,0.8); }
.copybox { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.copybtn {
  font-family: "Archivo Black", sans-serif;
  font-size: 15px;
  padding: 14px 26px;
  background: #1A1F36;
  color: #FAF7F0;
  border: 2px solid #1A1F36;
  box-shadow: 4px 4px 0 0 #E8500A;
  transition: transform 0.18s ease;
}
.copybtn:hover { transform: translateY(-2px); }
.copystate { font-family: "Space Mono", monospace; font-size: 13px; color: #BC4406; font-weight: 700; }
.sample .dm-note { margin-top: 20px; font-size: 15px; line-height: 1.6; color: rgba(26,31,54,0.75); }
.promptcard {
  background: #1A1F36;
  color: #FAF7F0;
  padding: 26px;
  transform: rotate(-1deg);
  border: 2px solid #1A1F36;
  box-shadow: 10px 12px 0 0 rgba(26,31,54,0.35);
}
.promptcard .plabel { font-family: "Space Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: #FF7A38; margin-bottom: 16px; }
.promptcard pre {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
  color: rgba(250,247,240,0.9);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #F1EBDD; border-bottom: 2px solid #1A1F36; }
.faq .inner { max-width: 768px; margin: 0 auto; padding: 88px 20px; }
.faq .h2 { margin-bottom: 40px; }
.faq details { background: transparent; border: none; border-bottom: 2px dashed rgba(26,31,54,0.35); }
.faq details:first-child { border-top: 2px dashed rgba(26,31,54,0.35); }
.faq details + details { margin-top: 0; }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 20px 4px;
  font-weight: 700;
  font-size: 16.5px;
  transition: background 0.15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: rgba(232,80,10,0.1); }
.faq summary .plus { color: #E8500A; font-family: "Archivo Black", sans-serif; font-size: 24px; line-height: 1; transition: transform 0.2s ease; flex-shrink: 0; }
.faq details[open] .plus { transform: rotate(45deg); }
.faq details p { padding: 0 4px 22px; color: rgba(26,31,54,0.8); line-height: 1.65; font-size: 15.5px; }

/* ============================================================
   FOUNDER LETTER
   ============================================================ */
.founder { background: #FAF7F0; border-bottom: 2px solid #1A1F36; }
.founder .inner { max-width: 640px; margin: 0 auto; padding: 88px 20px; }
.founder .letter { font-family: "Fraunces", serif; font-size: 19px; line-height: 1.78; color: rgba(26,31,54,0.9); }
.founder .letter p + p { margin-top: 24px; }
.founder .dropcap { float: left; font-family: "Archivo Black", sans-serif; font-size: 58px; line-height: 0.85; padding-right: 12px; padding-top: 4px; color: #E8500A; }
.founder .sig { margin-top: 28px; text-align: right; font-family: "Archivo", sans-serif; font-style: normal; font-size: 16px; color: rgba(26,31,54,0.7); }
.founder .sig b { color: #1A1F36; }
.founder .sig .roast { font-family: "Fraunces", serif; font-style: italic; font-size: 14px; }

/* ============================================================
   THE CLOSE
   ============================================================ */
.close { background: #1A1F36; color: #FAF7F0; }
.close .inner { max-width: 768px; margin: 0 auto; padding: 88px 20px; text-align: center; }
.close .h2 { color: #FAF7F0; }
.close p.body { margin-top: 32px; font-size: clamp(1.06rem, 1.4vw, 1.22rem); line-height: 1.7; color: rgba(250,247,240,0.85); max-width: 640px; margin-left: auto; margin-right: auto; }
.close .btn { margin-top: 40px; }
.close .fineline { margin-top: 20px; font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: 0.14em; color: rgba(250,247,240,0.6); }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site { background: #12162A; color: #FAF7F0; }
footer.site .wrap { padding-top: 56px; padding-bottom: 56px; display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
footer.site .logo { font-size: 20px; }
footer.site .brandline { margin-top: 8px; font-family: "Fraunces", serif; font-style: italic; color: rgba(250,247,240,0.6); }
footer.site .meta { font-size: 14px; color: rgba(250,247,240,0.7); display: flex; flex-direction: column; gap: 6px; }
footer.site .meta a { color: #FAF7F0; font-weight: 700; text-decoration: none; }
footer.site .meta a:hover { color: #E8500A; }
footer.site .meta .dim { color: rgba(250,247,240,0.5); }

/* ============================================================
   STICKY MOBILE BUY BAR
   ============================================================ */
.buybar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(18,22,42,0.97);
  backdrop-filter: blur(8px);
  border-top: 2px solid #E8500A;
  padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.buybar.show { transform: translateY(0); }
.buybar .price { font-family: "Archivo Black", sans-serif; font-size: 20px; color: #FAF7F0; line-height: 1; }
.buybar .perday { font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: 0.08em; color: rgba(250,247,240,0.65); margin-top: 4px; }
.buybar .btn { font-size: 14px; padding: 12px 22px; background: #E8500A; color: #1A1F36; border: 2px solid #FAF7F0; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.rv { opacity: 0; transform: translateY(16px); will-change: opacity, transform; }
.rv.on {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 64px; }
  .artifact { max-width: 400px; }
  .pages { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .villain .wrap, .offer .wrap, .checkout .wrap, .sample .wrap { grid-template-columns: 1fr; gap: 52px; }
  .fit .wrap { grid-template-columns: 1fr; gap: 48px; }
  .tagline { display: none; }
  .statgrid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .mirror .inner, .prophecy .inner, .faq .inner, .founder .inner, .close .inner { padding-top: 64px; padding-bottom: 72px; }
  .villain .wrap, .mechanism .wrap, .checkout .wrap, .sample .wrap, .offer .wrap, .fit .wrap { padding-top: 64px; padding-bottom: 64px; }
  .hero .wrap { padding-top: 40px; padding-bottom: 48px; gap: 44px; }
  .hero .sub { margin-top: 18px; }
  .hero-cta { margin-top: 26px; }
  .honest-note { margin-top: 28px; }
  .trust-row { margin-top: 24px; }
  .hero-cta .btn { width: 100%; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .pages { gap: 20px; }
  .buybar { display: flex; }
  body { padding-bottom: 84px; }
  .receipt { transform: none; }
  .promptcard { transform: none; }
  .paycard { padding: 24px 20px; }
  .math .p { font-size: 17px; }
  .header-cta { font-size: 12.5px; padding: 9px 12px; }
}
@media (max-width: 380px) {
  .wrap { padding-left: 16px; padding-right: 16px; }
  .mirror .inner, .faq .inner { padding-left: 16px; padding-right: 16px; }
}

/* ============================================================
   CHECKOUT ACKNOWLEDGMENT (no-refund disclosure)
   ============================================================ */
.ackrow {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 18px 0 4px; padding: 13px 14px;
  background: rgba(26,31,54,0.05);
  border: 1px solid rgba(26,31,54,0.18);
  cursor: pointer;
}
.ackrow input[type="checkbox"] {
  appearance: none; flex: 0 0 auto; width: 20px; height: 20px; margin: 1px 0 0;
  border: 2px solid #1A1F36; background: #FAF7F0; cursor: pointer; position: relative;
}
.ackrow input[type="checkbox"]:checked { background: #E8500A; }
.ackrow input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px;
  border: solid #FAF7F0; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.ackrow .acktext { font-family: "Archivo", sans-serif; font-size: 13px; line-height: 1.5; color: #1A1F36; }
.ackrow .acktext a { color: #E8500A; text-decoration: underline; font-weight: 600; }
.buybtn { width: 100%; margin-top: 14px; font-size: 17px; padding: 17px 24px; }
.buybtn[aria-disabled="true"] { opacity: 0.999; }
.buynote { font-family: "Space Mono", monospace; font-size: 12px; line-height: 1.6; color: #B23A08; margin-top: 12px; display: none; }
.buynote.show { display: block; }
.dmfallback { display: none; margin-top: 18px; padding-top: 16px; border-top: 1px dashed rgba(26,31,54,0.3); }
.dmfallback.show { display: block; }
.dmfallback .dmline { font-family: "Archivo", sans-serif; font-size: 14px; line-height: 1.6; color: rgba(26,31,54,0.85); }

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-wrap { max-width: 680px; margin: 0 auto; padding: 72px 24px 96px; }
.success-card {
  background: #FAF7F0; border: 2px solid #1A1F36; box-shadow: 10px 10px 0 rgba(26,31,54,1);
  padding: 40px 34px;
}
.success-card .ok-kicker { font-family: "Space Mono", monospace; font-size: 12px; letter-spacing: 0.14em; color: #E8500A; margin-bottom: 14px; }
.success-card h1 { font-family: "Archivo Black", sans-serif; font-size: clamp(1.9rem, 5vw, 2.7rem); line-height: 1.08; color: #1A1F36; margin: 0 0 18px; }
.success-card .lead { font-family: "Archivo", sans-serif; font-size: 16.5px; line-height: 1.65; color: rgba(26,31,54,0.9); }
.dlbtn {
  display: block; text-align: center; margin: 28px 0 10px; padding: 18px 24px;
  background: #E8500A; color: #1A1F36; border: 2px solid #1A1F36;
  box-shadow: 6px 6px 0 rgba(26,31,54,1);
  font-family: "Archivo Black", sans-serif; font-size: 17px; text-decoration: none;
  letter-spacing: 0.01em;
}
.dlbtn:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 rgba(26,31,54,1); }
.orderbox {
  margin-top: 26px; padding: 16px 18px; border: 1px dashed rgba(26,31,54,0.35);
  font-family: "Space Mono", monospace; font-size: 12.5px; line-height: 1.8; color: rgba(26,31,54,0.75);
  word-break: break-all;
}
.nextsteps { margin: 26px 0 0; padding: 0; list-style: none; }
.nextsteps li { display: flex; gap: 12px; margin-bottom: 14px; font-family: "Archivo", sans-serif; font-size: 14.5px; line-height: 1.55; color: rgba(26,31,54,0.9); }
.nextsteps .n {
  flex: 0 0 auto; width: 24px; height: 24px; background: #1A1F36; color: #FAF7F0;
  font-family: "Space Mono", monospace; font-size: 12px; display: flex; align-items: center; justify-content: center;
}
.legalpage .body li { margin-bottom: 10px; }
.legalpage h2.h2 { margin-top: 40px !important; }
@media (max-width: 640px) {
  .success-card { padding: 28px 20px; }
  .success-wrap { padding: 40px 16px 80px; }
}
