:root {
  --ink: #151515;
  --ink-soft: #292929;
  --paper: #f4f0e8;
  --white: #fff;
  --red: #ed3f2f;
  --red-dark: #c92e22;
  --blue: #326388;
  --blue-light: #d9edf8;
  --gold: #f2c45b;
  --line: #d8d1c4;
  --muted: #68645e;
  --shadow: 0 24px 70px rgba(0, 0, 0, .22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  transform: translateY(-150%);
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus { transform: translateY(0); }

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow { width: min(790px, calc(100% - 40px)); }

.announcement {
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
  letter-spacing: .025em;
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  text-align: center;
}

.announcement__badge {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 76px;
  background:
    radial-gradient(circle at 78% 25%, rgba(50, 99, 136, .17), transparent 24rem),
    linear-gradient(135deg, #fff 0%, #f8f4ec 72%, #efe8dc 100%);
}

.hero::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 420px;
  height: 210px;
  border: 44px solid var(--red);
  border-radius: 50%;
  content: "";
  opacity: .09;
  transform: rotate(-12deg);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light { color: #ff8f83; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 82px);
}

h1 span { color: var(--red); }

h2 {
  margin-bottom: 24px;
  font-size: clamp(35px, 4.7vw, 57px);
}

h3 { margin-bottom: 8px; font-size: 24px; }

.hero__lede {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 31px);
  font-weight: 700;
  line-height: 1.3;
}

.hero__body { max-width: 680px; font-size: 20px; }

.tick-list, .cross-list {
  margin: 27px 0 32px;
  padding: 0;
  list-style: none;
}

.tick-list li, .cross-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 34px;
}

.tick-list li::before, .cross-list li::before {
  position: absolute;
  left: 0;
  top: .05em;
  font-size: 21px;
  font-weight: 900;
}

.tick-list li::before { color: var(--blue); content: "✓"; }
.cross-list li::before { color: var(--red-dark); content: "×"; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 15px 25px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.button--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(201, 46, 34, .25);
}

.button--primary:hover { background: var(--red-dark); }

.button--secondary {
  color: var(--white);
  background: var(--blue);
}

.microcopy {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-price-line {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.hero-price-line strong { color: var(--red-dark); }

.hero__visual { text-align: center; }

.book {
  position: relative;
  width: min(340px, 92%);
  margin: 0 auto 34px;
  background: #eee;
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-6deg) rotateZ(1deg);
}

.book::before {
  position: absolute;
  top: 1%;
  right: 100%;
  width: 17px;
  height: 98%;
  background: linear-gradient(90deg, #aaa, #eee);
  content: "";
  transform: skewY(-42deg);
  transform-origin: right;
}

.book img { display: block; width: 100%; }

.cover-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.proof-strip { color: var(--white); background: var(--blue); }

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip__grid div {
  padding: 28px 24px 30px;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.proof-strip__grid div:first-child { border-left: 1px solid rgba(255, 255, 255, .22); }

.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { margin-bottom: 5px; font-size: 22px; }
.proof-strip span { color: #dce8ef; font-size: 14px; line-height: 1.45; }

.section { padding: 104px 0; }
.section--ink { color: var(--white); background: var(--ink); }
.section--paper { background: var(--paper); }

.pressure { text-align: center; }
.pressure h2 { margin-inline: auto; }
.pressure p:not(.eyebrow) {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 21px;
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}
.pressure p:last-child { margin-bottom: 0; }

.history { position: relative; overflow: hidden; }
.history::before {
  position: absolute;
  top: -120px;
  left: -80px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
}

.history__grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 80px;
  align-items: center;
}

.history p:not(.eyebrow) { color: #d5d5d5; }
.history .history__price { margin-top: 28px; padding-left: 18px; border-left: 4px solid var(--gold); color: var(--white); }

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link--light { color: #8ec5e8; }

.archive-card {
  margin: 0;
  border: 1px solid #4c4c4c;
  border-radius: 9px;
  overflow: hidden;
  color: var(--ink);
  background: #f4ead0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  transform: rotate(1.2deg);
}

.archive-card__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 7px 12px;
  background: #ddd5c5;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.archive-card__bar span { width: 10px; height: 10px; border-radius: 50%; background: #b0a999; }
.archive-card__bar strong { margin-left: 7px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.archive-card__body { padding: 38px 34px 28px; text-align: center; }
.archive-card__kicker { color: #6c2d27 !important; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.archive-card blockquote { margin: 0 0 26px; color: #941d16; font-family: Georgia, serif; font-size: 27px; font-weight: 800; line-height: 1.22; }
.archive-card ul { margin: 0; padding: 0; list-style: none; font-family: Georgia, serif; font-weight: 700; }
.archive-card .archive-card__price { margin: 26px 0 0; color: #6c2d27; font-size: 14px; }
.archive-card__price strong { font-size: 20px; }
.archive-card figcaption { padding: 12px 20px; color: #706b61; background: #e7dfcd; font-size: 11px; line-height: 1.45; text-align: left; }

.legacy-proof-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 22px;
  margin-top: 70px;
}

.legacy-proof {
  margin: 0;
  padding: 34px 40px;
  border-top: 1px solid #484848;
  border-bottom: 1px solid #484848;
  text-align: center;
}

.legacy-proof p { margin-bottom: 14px; color: #ff8f83 !important; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.legacy-proof blockquote { margin: 0 auto 15px; font-family: var(--serif); font-size: clamp(25px, 3vw, 34px); font-weight: 700; line-height: 1.35; }
.legacy-proof figcaption { color: #aaa; font-size: 12px; }
.legacy-proof figcaption strong { color: #ddd; }
.legacy-proof--joe { border-color: rgba(242, 196, 91, .65); background: rgba(242, 196, 91, .06); }
.legacy-proof--joe p { color: var(--gold) !important; }
.legacy-proof--joe blockquote { font-size: clamp(28px, 3.3vw, 39px); }

.section-heading { max-width: 810px; margin: 0 auto 54px; text-align: center; }
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}
.section-heading--left { margin-left: 0; text-align: left; }

.excuse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.excuse-grid article {
  position: relative;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(27, 23, 18, .05);
}

.excuse-grid__old { margin-bottom: 8px; color: var(--red-dark); font-weight: 900; }
.excuse-grid__new { margin: 0; color: var(--ink-soft); }

.punchline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
  padding: 31px 34px;
  border-left: 7px solid var(--red);
  background: var(--paper);
}

.punchline p { margin: 0; }

.sprint { background: #f9fbfc; }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 119px;
  width: 3px;
  background: #bdd3e0;
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 58px;
  padding-bottom: 42px;
}

.timeline li::before {
  position: absolute;
  top: 5px;
  left: 110px;
  width: 16px;
  height: 16px;
  border: 4px solid #f9fbfc;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 2px var(--red);
  content: "";
}

.timeline__time { padding-top: 2px; color: var(--blue); font-size: 13px; font-weight: 900; line-height: 1.35; }
.timeline h3 { margin-bottom: 8px; }
.timeline p { margin: 0; color: var(--muted); }

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 8px auto 24px;
}

.format-grid span { padding: 12px 15px; border-radius: 4px; color: var(--blue); background: var(--blue-light); font-size: 14px; font-weight: 800; text-align: center; }
.qualification { max-width: 900px; margin: 28px auto 0; padding: 20px 22px; border: 1px dashed #99adba; color: var(--muted); background: var(--white); font-size: 14px; line-height: 1.55; }

.contents__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 84px; align-items: start; }
.contents__intro { position: sticky; top: 30px; }
.contents__intro p:not(.eyebrow) { color: var(--muted); }
.contents__list article { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.contents__list article:last-child { margin-bottom: 0; border-bottom: 0; }
.contents__list article > span { color: var(--red); font-size: 13px; font-weight: 900; letter-spacing: .1em; }
.contents__list h3 { font-size: 28px; }
.contents__list p { margin: 0; color: var(--muted); }

.quotes { color: var(--white); background: var(--blue); }
.quotes .eyebrow { color: var(--gold); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.quote-grid figure { margin: 0; padding: 36px; border: 1px solid rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .07); }
.quote-grid blockquote { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(27px, 3.3vw, 39px); font-weight: 700; line-height: 1.23; }
.quote-grid figcaption { color: #d8e8f2; font-size: 14px; }
.quotes__bridge {
  max-width: 820px;
  margin: 34px auto 0;
  color: #e4f0f6;
  font-size: 21px;
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}

.for-you { background: var(--white); }
.for-you__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fit-card { padding: 42px; border-radius: 7px; }
.fit-card h2 { font-size: 37px; }
.fit-card--yes { border: 1px solid #bfd4e0; background: #eef7fb; }
.fit-card--no { border: 1px solid #e3cbc7; background: #fff5f2; }
.fit-card ul { margin-bottom: 0; }

.author { color: var(--white); background: var(--ink-soft); }
.author__grid { display: grid; grid-template-columns: 170px 1fr; gap: 55px; align-items: center; max-width: 900px; }
.author__mark { display: block; width: 170px; height: 170px; border: 7px solid var(--red); border-radius: 50%; background: var(--white); object-fit: cover; object-position: center; }
.author p:not(.eyebrow) { color: #d7d7d7; }

.value { background: #fff8e8; }
.value__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 75px; align-items: center; }
.value__copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 20px;
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}
.value-card { padding: 40px; border: 2px solid var(--ink); border-radius: 8px; background: var(--white); box-shadow: 13px 13px 0 var(--gold); }
.value-card__then { margin-bottom: 2px; color: var(--muted); font-size: 14px; text-align: center; }
.value-card__then strong { color: var(--ink); }
.value-card__inflation { margin: 2px 0 17px; color: var(--red-dark); font-size: 17px; font-weight: 850; text-align: center; }
.value-card__now { margin: 0; color: var(--red); font-size: clamp(74px, 9vw, 108px); font-weight: 950; letter-spacing: -.07em; line-height: 1; text-align: center; }
.value-card__now span { position: relative; top: -.72em; margin-right: 3px; font-size: .28em; letter-spacing: 0; }
.value-card__now small { font-size: .42em; letter-spacing: -.04em; }
.value-card__once { margin: 5px 0 25px; text-align: center; }
.value-card .tick-list { margin: 0 0 28px; font-size: 15px; line-height: 1.45; }
.value-card .button { width: 100%; }
.value-card__source { margin: 18px 0 0; color: var(--muted); font-size: 10px; line-height: 1.45; text-align: left; }
.value-card__source a { color: inherit; text-underline-offset: 2px; }
.value-punch { margin-top: 65px; padding: 30px 34px; border-left: 7px solid var(--red); background: var(--ink); color: var(--white); }
.value-punch p { margin: 0; font-family: var(--serif); font-size: 22px; text-align: center; }
.value-punch p + p { margin-top: 5px; color: var(--gold); font-family: var(--sans); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }

.guarantee { color: var(--white); background: var(--blue); }
.guarantee__panel { display: grid; grid-template-columns: 190px 1fr; gap: 55px; align-items: center; max-width: 980px; }
.guarantee__seal { display: grid; width: 190px; height: 190px; place-content: center; border: 8px double var(--gold); border-radius: 50%; background: var(--ink); box-shadow: 10px 10px 0 rgba(0, 0, 0, .25); text-align: center; transform: rotate(-4deg); }
.guarantee__seal strong { color: var(--gold); font-size: 79px; letter-spacing: -.07em; line-height: .8; }
.guarantee__seal span { margin-top: 12px; color: var(--white); font-size: 16px; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.guarantee__copy h2 { max-width: 760px; color: var(--white); }
.guarantee__copy p:not(.eyebrow) { color: #e1edf4; font-family: var(--serif); font-size: 19px; hyphens: auto; text-align: justify; text-justify: inter-word; }
.guarantee__copy .guarantee__potato { margin: 27px 0; padding: 23px 26px; border-left: 7px solid var(--gold); color: var(--white); background: rgba(0, 0, 0, .24); font-family: var(--sans); font-size: 18px; }
.guarantee__copy .guarantee__not-valid { margin: 0 0 22px; padding: 19px 22px; border: 1px solid rgba(255, 255, 255, .28); color: #f8e8e5; background: rgba(112, 20, 13, .32); font-family: var(--sans); font-size: 15px; }
.guarantee__copy .guarantee__terms { margin-bottom: 0; color: #b9ced9; font-family: var(--sans); font-size: 11px; line-height: 1.5; }

.faq { background: var(--paper); }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 22px 46px 22px 0; cursor: pointer; font-size: 20px; font-weight: 850; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; right: 8px; top: 19px; color: var(--red); content: "+"; font-size: 29px; font-weight: 500; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 35px 24px 0; color: var(--muted); }

.checkout { padding: 105px 0; text-align: center; }
.checkout__inner > p:not(.eyebrow, .checkout__note) {
  color: #d6d6d6;
  font-family: var(--serif);
  font-size: 22px;
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}
.checkout-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 28px; margin: 34px 0; padding: 0; color: #eee; font-size: 15px; line-height: 1.45; list-style: none; text-align: left; }
.checkout-list li { position: relative; padding-left: 27px; }
.checkout-list li::before { position: absolute; left: 0; color: var(--gold); content: "✓"; font-weight: 900; }
.checkout-price { display: flex; flex-direction: column; align-items: center; margin: 33px auto 24px; }
.checkout-price span { color: #a5a5a5; font-size: 14px; }
.checkout-price strong { color: var(--gold); font-size: clamp(60px, 9vw, 88px); letter-spacing: -.06em; line-height: 1.05; }
.checkout-price em { color: #ddd; font-size: 14px; font-style: normal; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.checkout-placeholder { display: flex; flex-direction: column; align-items: center; gap: 3px; margin: 36px auto 18px; padding: 24px 30px; border: 2px dashed #747474; border-radius: 7px; color: #d1d1d1; background: #222; }
.checkout-placeholder span { font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.checkout-placeholder strong { color: var(--gold); font-size: 25px; }
.warriorplus-buy { margin: 36px auto 18px; text-align: center; }
.warriorplus-buy img { display: inline-block; max-width: 100%; height: auto; }
.checkout__note {
  margin: 0;
  color: #8f8f8f;
  font-size: 13px;
  text-align: justify;
  text-justify: inter-word;
}

.related { padding: 34px 0; background: #eaf2f7; }
.related__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.related p { margin: 0; }
.related .text-link { flex: 0 0 auto; }

/* AI Five Percent optional upgrade */
html:not(.oto-intro) .oto-intro-only { display: none; }
html.oto-intro .oto-standard-only { display: none; }

.oto-page { background: #f8f5ed; }
.oto-warning { padding: 19px 0; color: var(--white); background: var(--red); font-size: clamp(20px, 2.5vw, 30px); font-weight: 950; letter-spacing: -.02em; line-height: 1.15; text-align: center; text-transform: none; }
.announcement--oto { background: #162b3a; }
.oto-hero { padding: 82px 0 88px; background: radial-gradient(circle at 76% 22%, rgba(237, 63, 47, .13), transparent 25rem), linear-gradient(140deg, #fff 0%, #f3eee3 100%); }
.oto-hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 75px; align-items: center; }
.oto-hero h1 { font-size: clamp(48px, 6.3vw, 76px); }
.oto-hero__lede { color: var(--blue); font-family: var(--serif); font-size: 25px; font-weight: 700; line-height: 1.35; }
.oto-proof-line { display: flex; flex-direction: column; margin-top: 30px; padding: 20px 24px; border-left: 6px solid var(--red); background: var(--white); }
.oto-proof-line strong { font-size: 19px; }
.oto-proof-line span { color: var(--muted); font-size: 14px; }

.oto-demo { padding-bottom: 86px; background: var(--white); }
.oto-demo__inner { max-width: 960px; }
.oto-demo .section-heading { margin-bottom: 38px; }
.video-frame { position: relative; width: 100%; max-width: 960px; margin-inline: auto; overflow: hidden; border: 8px solid var(--ink); border-radius: 8px; background: var(--ink); box-shadow: 14px 14px 0 var(--gold); aspect-ratio: 16 / 9; }
.video-frame iframe { position: absolute; inset: 0; display: block; width: 100%; height: 100%; border: 0; }

.oto-offer-card { padding: 42px 38px; border: 2px solid var(--ink); border-radius: 9px; background: var(--white); box-shadow: 14px 14px 0 var(--gold); text-align: center; }
.oto-offer-card__label { margin-bottom: 5px; color: var(--red-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.oto-offer-card__comparison { margin-bottom: 3px; color: var(--muted); font-size: 14px; }
.oto-offer-card__price { margin: 0; color: var(--ink); font-size: 105px; font-weight: 950; letter-spacing: -.08em; line-height: 1; }
.oto-offer-card__price span { position: relative; top: -.7em; margin-right: 4px; color: var(--red); font-size: .28em; letter-spacing: 0; }
.oto-offer-card__terms { margin: 8px 0 27px; color: var(--muted); font-size: 13px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.oto-countdown { margin: 0 0 25px; padding: 17px 18px; border: 2px solid var(--red); border-radius: 6px; color: var(--white); background: var(--ink); }
.oto-countdown span { display: block; color: #f2d8d3; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.oto-countdown time { display: block; margin: 4px 0; color: var(--gold); font-variant-numeric: tabular-nums; font-size: clamp(40px, 5vw, 57px); font-weight: 950; letter-spacing: .02em; line-height: 1; }
.oto-countdown small { display: block; color: #d7d7d7; font-size: 11px; line-height: 1.4; }
.oto-countdown--standard { border-color: var(--blue); }
.oto-card-summary { margin: 0 0 25px; padding: 17px 19px; color: var(--ink-soft); background: #fff8e8; font-size: 13px; line-height: 1.45; list-style: none; text-align: left; }
.oto-card-summary li { position: relative; margin: 6px 0; padding-left: 22px; }
.oto-card-summary li::before { position: absolute; left: 0; color: var(--red); content: "✓"; font-weight: 900; }
.warriorplus-placeholder { display: flex; flex-direction: column; gap: 4px; padding: 22px; border: 2px dashed #a9a294; border-radius: 6px; background: #f8f5ed; }
.warriorplus-placeholder span { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.warriorplus-placeholder strong { color: var(--red-dark); font-size: 18px; }
.oto-decline { display: inline-block; margin-top: 23px; color: var(--muted); font-size: 13px; text-underline-offset: 4px; }
.oto-status { margin: 16px 0 0; padding: 12px; color: #6c2d27; background: #fff0ed; font-size: 12px; line-height: 1.4; }

.oto-included { background: var(--white); }
.oto-session-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.oto-session { padding: 34px; border: 1px solid var(--line); background: #fbfaf7; }
.oto-session__meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.oto-session__meta span { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.oto-session__meta strong { padding: 5px 9px; border-radius: 4px; color: var(--white); background: var(--blue); font-size: 13px; }
.oto-session h3 { font-size: 29px; }
.oto-session p { color: var(--muted); font-size: 16px; }
.oto-session .oto-session__note { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink); font-weight: 800; }

.launch-proof { margin: 64px 0 0; padding: 38px; border: 2px solid var(--ink); background: #f8f5ed; box-shadow: 12px 12px 0 var(--gold); }
.launch-proof--supporting { margin-top: 42px; background: #fff; box-shadow: 12px 12px 0 var(--blue); }
.launch-proof--recent { margin-top: 42px; background: #f4f8fb; box-shadow: 12px 12px 0 var(--red); }
.launch-proof__copy { max-width: 820px; margin: 0 auto 30px; text-align: center; }
.launch-proof__copy h3 { font-size: clamp(30px, 4vw, 44px); }
.launch-proof__copy p:not(.eyebrow) { color: var(--ink-soft); }
.launch-proof a { display: block; overflow-x: auto; border: 1px solid #bbb4a8; background: var(--white); }
.launch-proof img { display: block; width: 100%; min-width: 900px; }
.launch-proof figcaption { margin-top: 14px; color: var(--muted); font-size: 11px; line-height: 1.45; text-align: center; }

.oto-bridge { text-align: center; }
.oto-bridge p:not(.eyebrow) { color: #d5d5d5; font-family: var(--serif); font-size: 21px; hyphens: auto; text-align: justify; text-justify: inter-word; }
.oto-final { padding: 92px 0; background: var(--gold); text-align: center; }
.oto-final__inner p:not(.eyebrow, .oto-final__small) { font-family: var(--serif); font-size: 21px; }
.oto-final__small { margin: 15px 0 0; color: #5e4b1f; font-size: 12px; }

.footer { padding: 32px 0; color: #aaa; background: #0d0d0d; font-size: 12px; line-height: 1.5; }
.footer__grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 40px; }
.footer p { margin: 0; }
.footer p:last-child { text-align: right; }
.footer a, .access-footer a, .claim-footer a { color: var(--gold); }
.wplus-footer { margin-top: 22px; }

.legal-page { background: var(--paper); }
.legal-header { padding: 18px 0; color: var(--white); background: var(--ink); }
.legal-header a { color: var(--gold); font-weight: 800; text-decoration: none; }
.legal-main { padding: 72px 0 88px; }
.legal-card { width: min(840px, calc(100% - 40px)); margin: 0 auto; padding: clamp(30px, 6vw, 64px); border: 1px solid var(--line); background: var(--white); box-shadow: 12px 12px 0 var(--gold); }
.legal-card h1 { font-size: clamp(44px, 7vw, 72px); }
.legal-card h2 { margin-top: 42px; font-size: clamp(27px, 4vw, 36px); }
.legal-card p, .legal-card li { color: var(--ink-soft); font-family: var(--serif); font-size: 17px; }
.legal-card a { color: var(--blue); font-family: var(--sans); font-weight: 800; }
.legal-updated { color: var(--muted) !important; font-family: var(--sans) !important; font-size: 13px !important; }

@media (max-width: 900px) {
  body { font-size: 17px; }
  .hero__grid { grid-template-columns: 1fr; gap: 58px; }
  .book { width: min(310px, 80%); }
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-strip__grid div:first-child { border-left: 0; }
  .proof-strip__grid div:nth-child(2) { border-right: 0; }
  .proof-strip__grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .22); }
  .history__grid, .contents__grid, .value__grid, .oto-hero__grid { grid-template-columns: 1fr; gap: 55px; }
  .contents__intro { position: static; }
  .for-you__grid, .legacy-proof-grid { grid-template-columns: 1fr; }
  .related__inner { align-items: flex-start; flex-direction: column; gap: 12px; }
  .oto-session-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .wrap, .narrow { width: min(100% - 28px, 1160px); }
  .announcement__inner { flex-direction: column; gap: 3px; padding: 10px 0; }
  .hero { padding: 50px 0 58px; }
  .hero__visual { margin-top: 8px; }
  .hero__copy { text-align: left; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  h2 { font-size: clamp(33px, 10vw, 45px); }
  .button { width: 100%; }
  .section { padding: 76px 0; }
  .proof-strip__grid { grid-template-columns: 1fr; }
  .proof-strip__grid div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .22); }
  .proof-strip__grid div:last-child { border-bottom: 0; }
  .history__grid { gap: 45px; }
  .legacy-proof-grid { margin-top: 50px; }
  .legacy-proof { padding: 28px 15px; }
  .archive-card { transform: none; }
  .archive-card__body { padding: 32px 20px 24px; }
  .archive-card blockquote { font-size: 24px; }
  .pressure p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .quotes__bridge {
    font-size: 18px;
    hyphens: none;
  }
  .checkout__inner > p:not(.eyebrow, .checkout__note) {
    font-size: 19px;
    hyphens: none;
  }
  .value__copy p:not(.eyebrow) { font-size: 18px; hyphens: none; }
  .value-card { padding: 32px 24px; box-shadow: 8px 8px 0 var(--gold); }
  .value-punch { margin-top: 48px; padding: 26px 22px; }
  .value-punch p { font-size: 19px; }
  .guarantee__panel { grid-template-columns: 1fr; gap: 34px; }
  .guarantee__seal { width: 145px; height: 145px; }
  .guarantee__seal strong { font-size: 61px; }
  .guarantee__copy p:not(.eyebrow) { font-size: 17px; hyphens: none; }
  .checkout-list { grid-template-columns: 1fr; }
  .oto-hero { padding: 54px 0 62px; }
  .oto-hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .oto-hero__lede { font-size: 21px; }
  .oto-offer-card { padding: 34px 22px; box-shadow: 8px 8px 0 var(--gold); }
  .oto-offer-card__price { font-size: 86px; }
  .video-frame { border-width: 5px; box-shadow: 8px 8px 0 var(--gold); }
  .launch-proof { padding: 24px 18px; box-shadow: 8px 8px 0 var(--gold); }
  .launch-proof img { width: auto; max-width: none; }
  .oto-bridge p:not(.eyebrow) { font-size: 18px; hyphens: none; }
  .excuse-grid, .quote-grid, .punchline { grid-template-columns: 1fr; }
  .punchline { gap: 18px; padding: 26px 24px; }
  .timeline::before { left: 7px; }
  .timeline li { grid-template-columns: 1fr; gap: 8px; padding-left: 34px; }
  .timeline li::before { left: 0; }
  .timeline__time { padding-top: 0; }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .contents__list article { grid-template-columns: 40px 1fr; gap: 13px; }
  .quote-grid figure, .fit-card { padding: 30px 24px; }
  .author__grid { grid-template-columns: 1fr; gap: 30px; }
  .author__mark { width: 120px; height: 120px; }
  .footer__grid { grid-template-columns: 1fr; gap: 10px; }
  .footer p:last-child { text-align: left; }
}

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