/* ═══════════════════════════════════════════════════
   TRAINING KATANA — SALES PAGE
   Centered single-column · paper / ink / blood
   Inspired by high-converting low-ticket layouts
   (Justin Welsh, Iman Gadzhi, Marc Lou, Dickie Bush)
   with Katana branding (palette + Anton + marquee)
   ═══════════════════════════════════════════════════ */

:root {
  --ink:        #0a0a0a;
  --ink-soft:   #1a1a1a;
  --paper:      #faf7f0;
  --paper-warm: #f1ece0;
  --paper-line: rgba(10, 10, 10, 0.10);
  --blood:      #d62828;
  --blood-deep: #a51d1d;
  --steel:      #6b6b6b;

  --font-display: 'Anton', 'Bebas Neue', Impact, sans-serif;
  --font-serif:   'Instrument Serif', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --max:          1180px;
  --max-content:  820px;
  --max-headline: 980px;
  --gutter:       clamp(20px, 5vw, 64px);
  --section-y:    clamp(80px, 11vw, 140px);

  --ease-cut:   cubic-bezier(0.86, 0, 0.07, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, object { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; font: inherit; color: inherit; cursor: pointer; }
::selection { background: var(--blood); color: var(--paper); }

/* ═══════════════════════════════════════════════════
   PAPER GRAIN
   ═══════════════════════════════════════════════════ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.035 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.55;
}

/* ═══════════════════════════════════════════════════
   GLOBAL HELPERS
   ═══════════════════════════════════════════════════ */
.pop {
  color: var(--blood);
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
/* brushstroke underline under .pop in big display contexts */
.section__title .pop::after,
.hero__title .pop::after,
.price__heading .pop::after,
.final-cta__title .pop::after,
.bisagra__line .pop::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 0.04em;
  height: 0.07em;
  background: var(--blood);
  transform: skewY(-0.6deg);
  border-radius: 4px;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════
   COUNTDOWN BANNER (sticky top)
   ═══════════════════════════════════════════════════ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(90deg, #b91c1c 0%, #d62828 50%, #b91c1c 100%);
  color: var(--paper);
  border-bottom: 2px solid var(--ink);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar__kanji {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  color: var(--paper);
  opacity: 0.9;
}
.topbar__text { font-weight: 600; }
.topbar__timer {
  display: inline-flex; align-items: center; gap: 3px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.topbar__timer > span:not(.topbar__sep):not(.topbar__days) {
  min-width: 28px;
  text-align: center;
  background: rgba(0,0,0,0.22);
  padding: 4px 8px;
  border-radius: 4px;
}
.topbar__days {
  display: none;
  margin-right: 4px;
  background: rgba(0,0,0,0.22);
  padding: 4px 8px;
  border-radius: 4px;
}
.topbar__days.is-active { display: inline-block; }
.topbar__sep {
  font-weight: 700;
  margin: 0 1px;
  animation: blink-sep 1s ease-in-out infinite;
}
@keyframes blink-sep { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.topbar__cta {
  background: var(--paper);
  color: var(--blood);
  padding: 7px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.topbar__cta:hover {
  transform: scale(1.04);
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.topbar.is-hidden { display: none; }

/* Pulse keyframe (kept for reuse elsewhere — eyebrow dots) */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(214, 40, 40, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(214, 40, 40, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 40, 40, 0); }
}

/* Mobile: stack tighter */
@media (max-width: 640px) {
  .topbar__inner { gap: 8px; padding: 8px 14px; font-size: 11px; }
  .topbar__kanji { font-size: 18px; }
  .topbar__timer > span:not(.topbar__sep):not(.topbar__days) { min-width: 22px; padding: 3px 6px; font-size: 11px; }
  .topbar__days { padding: 3px 6px; font-size: 11px; }
  .topbar__cta { font-size: 10px; padding: 5px 12px; letter-spacing: 0.05em; }
}
@media (max-width: 460px) {
  .topbar__kanji { display: none; }
}

/* ═══════════════════════════════════════════════════
   CONTAINERS / SECTIONS
   ═══════════════════════════════════════════════════ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.section {
  padding: var(--section-y) 0;
  position: relative;
  z-index: 2;
}
.section--ink {
  background: var(--ink);
  color: var(--paper);
}
.section--ink ::selection { background: var(--paper); color: var(--ink); }
.section--paper { background: var(--paper-warm); }

/* SECTION HEAD — centered (sales-page rhythm) */
.section__head {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  margin: 0 auto clamp(48px, 7vw, 80px);
  max-width: var(--max-headline);
  text-align: center;
}
.section__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--blood);
  text-transform: uppercase;
}
.section__num--inverse { color: var(--blood); }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: inherit;
}

.section__sub {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.4;
  color: var(--steel);
  margin-top: -4px;
  max-width: 60ch;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 clamp(60px, 9vw, 110px);
  background: var(--paper);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50vw; height: 50vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle at 60% 40%, rgba(214, 40, 40, 0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-headline);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; flex-direction: column; align-items: center;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(10,10,10,0.04);
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 36px;
  animation: fadeUp 0.8s var(--ease-out) both;
}
.hero__dot {
  width: 8px; height: 8px;
  background: var(--blood);
  border-radius: 50%;
  animation: pulse 1.6s ease-out infinite;
}

.hero__logo {
  width: clamp(220px, 30vw, 360px);
  margin-bottom: clamp(32px, 5vw, 48px);
  animation: fadeUp 0.9s var(--ease-out) 0.1s both;
}
.hero__logo object { width: 100%; height: auto; pointer-events: none; }

.hero__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(26px, 3.8vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  text-transform: none;
  max-width: 24ch;
  text-wrap: balance;
  margin: 0 auto clamp(24px, 3vw, 32px);
  color: var(--ink);
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}
.hero__title .pop { font-weight: 700; }

.hero__lede {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.5;
  max-width: 56ch;
  margin: 0 auto clamp(36px, 5vw, 48px);
  color: #2a2a2a;
  animation: fadeUp 1s var(--ease-out) 0.3s both;
}
.hero__lede strong {
  font-weight: 700;
  background: var(--ink);
  color: var(--paper);
  padding: 2px 10px;
  display: inline-block;
  margin-top: 4px;
}

.hero__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--steel);
  margin-top: 20px;
}

.hero__trust {
  margin-top: 28px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 22px;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  animation: fadeUp 1s var(--ease-out) 0.5s both;
}
.hero__stars {
  color: var(--blood);
  letter-spacing: 0.2em;
  font-size: 16px;
}
.hero__trust-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__trust-text strong { color: var(--blood); font-weight: 700; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   BUTTONS — always centered when standalone
   ═══════════════════════════════════════════════════ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 32px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  isolation: isolate;
  text-align: center;
  min-width: 280px;
}
.btn--primary {
  background: var(--blood);
  border-color: var(--blood);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn--lg {
  padding: 22px 38px;
  font-size: 22px;
}
.btn--xl {
  padding: 24px 42px;
  font-size: 26px;
  min-width: 320px;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}
.btn:active { transform: translate(0, 0); box-shadow: 3px 3px 0 var(--ink); }

.btn__label, .btn__icon { position: relative; z-index: 2; }
.btn__icon { font-size: 1.05em; }

.btn__slash {
  position: absolute;
  top: 50%; left: -120%;
  width: 250%; height: 200%;
  background: var(--ink);
  transform: translateY(-50%) rotate(-12deg);
  z-index: 1;
  transition: left 0.45s var(--ease-cut);
}
.btn:hover .btn__slash { left: 120%; }

/* ═══════════════════════════════════════════════════
   VSL
   ═══════════════════════════════════════════════════ */
.vsl {
  background: var(--paper);
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  position: relative; z-index: 2;
}
.vsl__inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  text-align: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blood);
}
.eyebrow__dot {
  width: 6px; height: 6px; background: var(--blood); border-radius: 50%;
  animation: pulse 1.6s ease-out infinite;
}
.eyebrow--inverse { color: var(--blood); }

.vsl__frame {
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  position: relative;
  border: 1px solid var(--ink);
  box-shadow: 12px 12px 0 var(--blood);
  overflow: hidden;
}
.vsl__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(255,255,255,0.02) 12px 13px),
    radial-gradient(ellipse at 30% 40%, #1a1a1a 0%, var(--ink) 70%);
}
.vsl__play {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--blood);
  color: var(--paper);
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  box-shadow: 0 0 0 0 rgba(214, 40, 40, 0.5);
}
.vsl__play:hover { transform: scale(1.08); box-shadow: 0 0 0 24px rgba(214, 40, 40, 0); }
.vsl__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(245, 243, 237, 0.5);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════ */
.marquee {
  background: var(--blood);
  color: var(--paper);
  overflow: hidden;
  padding: 18px 0;
  border-block: 2px solid var(--ink);
  position: relative; z-index: 3;
}
.marquee__track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.marquee__item { display: inline-block; }
.marquee__star { color: var(--ink); font-size: 0.7em; align-self: center; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   PAIN
   ═══════════════════════════════════════════════════ */
.pain__grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
  list-style: none;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .pain__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pain__quote--wide { grid-column: 1 / -1; }
}
.pain__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.45;
  padding: 24px 26px 24px 32px;
  border-left: 3px solid var(--blood);
  background: rgba(255,255,255,0.03);
  position: relative;
}

/* ═══════════════════════════════════════════════════
   BISAGRA
   ═══════════════════════════════════════════════════ */
.bisagra {
  padding: clamp(70px, 10vw, 120px) 0;
  position: relative;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(214, 40, 40, 0.06) 0%, transparent 60%),
    var(--paper);
}
.bisagra__inner { position: relative; max-width: var(--max-content); margin: 0 auto; }
.bisagra__line {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 24ch;
  margin: 0 auto 24px;
}
.bisagra__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  max-width: 50ch;
  margin: 0 auto;
  color: #2a2a2a;
}
.bisagra__shuriken {
  position: absolute;
  top: 0; right: 4%;
  width: 60px; height: 60px;
  animation: spin 12s linear infinite;
  opacity: 0.18;
}
@media (min-width: 900px) {
  .bisagra__shuriken { width: 90px; height: 90px; opacity: 0.22; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════
   VISION
   ═══════════════════════════════════════════════════ */
.vision__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--paper-line);
}
.vision__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--paper-line);
}
.vision__check {
  width: 36px; height: 36px;
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--blood);
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.vision__check svg { width: 22px; height: 22px; }
.vision__item:hover .vision__check { background: var(--blood); color: var(--paper); }
.vision__item p {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
  padding-top: 4px;
}

.vision__warning {
  margin: 56px auto 0;
  max-width: 760px;
  padding: 26px 30px;
  background: var(--ink);
  color: var(--paper);
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
}
.vision__warning-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--blood);
  text-transform: uppercase;
}
.vision__warning p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════════
   METHOD
   ═══════════════════════════════════════════════════ */
.method__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; gap: 24px;
}
.method__lede {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.4;
}
.method__lede strong {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 0.9em;
}
.method__pull {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
  color: rgba(245, 243, 237, 0.85);
  margin-top: 6px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 243, 237, 0.15);
}
.method__pull-big {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--blood);
  letter-spacing: -0.005em;
}
.method__body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245, 243, 237, 0.8);
}
.method__body strong { color: var(--paper); }
.method__body em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--paper);
}

/* ═══════════════════════════════════════════════════
   7 DAYS
   ═══════════════════════════════════════════════════ */
.days__list {
  list-style: none;
  max-width: 880px;
  margin: 0 auto;
}
.day {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--paper-line);
  align-items: center;
  transition: background 0.3s var(--ease-out), padding 0.3s var(--ease-out);
}
@media (min-width: 720px) {
  .day { grid-template-columns: 160px 1fr; padding: 32px 0; }
}
.day:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, transparent, rgba(214, 40, 40, 0.04));
}
.day:first-child { border-top: 1px solid var(--paper-line); }

.day__index {
  display: flex; flex-direction: column; gap: 4px;
}
.day__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--steel);
  text-transform: uppercase;
}
.day__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
}
.day__num::after {
  content: "";
  position: absolute;
  left: 0; bottom: 12%;
  width: 0; height: 4px;
  background: var(--blood);
  transition: width 0.5s var(--ease-cut);
}
.day:hover .day__num::after { width: 70%; }

.day__body { padding-top: 4px; }
.day__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.day__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--steel);
  line-height: 1.4;
}

.day--final {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 28px;
  margin-top: 16px;
  border-bottom: none;
  border-top: none;
}
.day--final .day__label { color: var(--blood); }
.day--final .day__num { color: var(--paper); }
.day--final .day__num::after { background: var(--paper); }
.day--final .day__text { color: rgba(250, 247, 240, 0.7); }
.day--final:hover { background: var(--ink); padding-left: 28px; }

/* ═══════════════════════════════════════════════════
   INSIDE
   ═══════════════════════════════════════════════════ */
.inside__grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .inside__grid { grid-template-columns: repeat(3, 1fr); }
}
.inside__card {
  padding: 32px 28px;
  border: 1px solid var(--ink);
  background: var(--paper);
  position: relative;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.inside__card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--blood);
}
.inside__icon {
  display: inline-block;
  font-size: 36px;
  margin-bottom: 18px;
}
.inside__card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.inside__card p {
  font-size: 16px;
  line-height: 1.55;
  color: #333;
}

.inside__cta {
  margin-top: clamp(48px, 6vw, 64px);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   KUOKA
   ═══════════════════════════════════════════════════ */
.kuoka__inner {
  text-align: center;
}
.kuoka__body {
  max-width: var(--max-content);
  margin: 0 auto;
  text-align: left;
  display: flex; flex-direction: column; gap: 20px;
}
@media (min-width: 720px) {
  .kuoka__body { text-align: center; }
}
.kuoka__lede {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  margin-bottom: 12px;
}
.kuoka__lede .hl {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78em;
  background: var(--blood);
  color: var(--paper);
  padding: 2px 10px;
  white-space: nowrap;
  display: inline-block;
}
.kuoka__body p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(250, 247, 240, 0.85);
}
.kuoka__body strong { color: var(--paper); font-weight: 700; }
.kuoka__body em { font-family: var(--font-serif); font-style: italic; color: var(--paper); }
.kuoka__pull {
  font-family: var(--font-display) !important;
  font-size: clamp(28px, 3.6vw, 44px) !important;
  line-height: 1 !important;
  text-transform: uppercase;
  color: var(--blood) !important;
  margin: 12px 0 !important;
}

/* ═══════════════════════════════════════════════════
   FOR YOU / NOT FOR YOU
   ═══════════════════════════════════════════════════ */
.foryou__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .foryou__grid { grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--ink); }
  .foryou__col { border: none; }
  .foryou__col + .foryou__col { border-left: 1px solid var(--ink); }
}
.foryou__col {
  padding: 36px 30px;
  border: 1px solid var(--ink);
  text-align: left;
}
.foryou__col--yes { background: var(--paper); }
.foryou__col--no { background: var(--ink); color: var(--paper); }
.foryou__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: baseline; gap: 12px;
}
.foryou__col--yes .foryou__title { color: var(--blood); }
.foryou__col--no .foryou__title { color: var(--blood); }
.foryou__title span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--steel);
  font-weight: 400;
  text-transform: uppercase;
}
.foryou__col--no .foryou__title span { color: rgba(250, 247, 240, 0.6); }

.foryou__col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.foryou__col li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.55;
}
.foryou__col--yes li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--blood);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
.foryou__col--no li::before {
  content: "✗";
  position: absolute; left: 0; top: 0;
  color: var(--blood);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials__disclaimer {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 56px;
  padding: 18px 24px;
  border-left: 3px solid var(--blood);
  background: rgba(214, 40, 40, 0.05);
  text-align: left;
}
.testimonials__block { margin-bottom: 56px; }
.testimonials__block-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: baseline; justify-content: center; gap: 14px;
  text-align: center;
}
.testimonials__block-title span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--blood);
}

/* MASONRY (CSS columns) */
.testimonials__masonry {
  column-count: 1;
  column-gap: 14px;
}
@media (min-width: 600px)  { .testimonials__masonry { column-count: 2; column-gap: 16px; } }
@media (min-width: 900px)  { .testimonials__masonry { column-count: 3; column-gap: 18px; } }
@media (min-width: 1200px) { .testimonials__masonry { column-count: 4; column-gap: 20px; } }

.t-card {
  position: relative;
  break-inside: avoid;
  margin-bottom: 14px;
  display: block;
}
@media (min-width: 600px) { .t-card { margin-bottom: 18px; } }

.t-card__link {
  position: relative;
  display: block;
  border: 1px solid var(--ink);
  background: var(--ink);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  cursor: zoom-in;
}
.t-card__link img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
  filter: saturate(0.95);
}
.t-card__link::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.t-card__link:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--blood);
}
.t-card__link:hover img { transform: scale(1.04); filter: saturate(1.05); }
.t-card__link:hover::after { opacity: 1; }

.t-card__link[data-tag]::before {
  content: attr(data-tag);
  position: absolute;
  top: 10px; left: 10px;
  background: var(--blood);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 9px;
  z-index: 3;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 var(--ink);
}
.t-card--feature .t-card__link {
  border-width: 2px;
  border-color: var(--blood);
}
.t-card--feature .t-card__link::before { font-size: 12px; padding: 7px 12px; }

.t-card--audio .t-card__link[data-tag]::before {
  background: var(--ink);
  color: var(--blood);
  border: 1px solid var(--blood);
}

.t-card figcaption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  margin-top: 10px;
  color: var(--steel);
  line-height: 1.4;
  text-align: center;
}

.testimonials__caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.7vw, 19px);
  margin-top: 28px;
  color: var(--ink);
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   OFFER
   ═══════════════════════════════════════════════════ */
.offer__list {
  list-style: none;
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid rgba(250, 247, 240, 0.15);
}
.offer__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(250, 247, 240, 0.15);
  align-items: start;
  text-align: left;
}
.offer__bullet {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--blood);
  line-height: 1;
  padding-top: 4px;
}
.offer__item h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.offer__item p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(250, 247, 240, 0.78);
}

.offer__bonus {
  margin: 56px auto 0;
  max-width: 820px;
  padding: 36px 32px;
  background: var(--blood);
  color: var(--paper);
  position: relative;
  border: 2px solid var(--paper);
  box-shadow: 10px 10px 0 var(--paper);
  text-align: center;
}
.offer__bonus-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 16px;
}
.offer__bonus-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.offer__bonus-desc {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.4;
  margin: 0 auto 14px;
  max-width: 56ch;
}
.offer__bonus-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.offer__bonus-meta strong {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 400;
  display: inline-block;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════
   PRICE
   ═══════════════════════════════════════════════════ */
.price {
  background: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price::after {
  content: "";
  position: absolute;
  top: -30%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(214, 40, 40, 0.07) 0%, transparent 60%);
  pointer-events: none;
}
.price__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.price__phase {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.price__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 28px;
  max-width: 18ch;
}
.price__strike {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--steel);
  margin-bottom: 4px;
}
.price__strike s {
  text-decoration: line-through;
  text-decoration-color: var(--blood);
  text-decoration-thickness: 2px;
}
.price__amount {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(140px, 22vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 8px 0 6px;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}
.price__currency {
  font-size: 0.5em;
  margin-top: 0.18em;
  margin-right: 0.05em;
  color: var(--blood);
}
.price__digits {
  position: relative;
}
.price__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--steel);
  margin-bottom: 32px;
}

.countdown {
  margin-bottom: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.countdown__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
}
.countdown__digits {
  display: inline-flex;
  gap: 4px;
  padding: 16px 18px;
  background: var(--ink);
  color: var(--paper);
}
.countdown__unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 60px;
  padding: 0 6px;
  border-right: 1px solid rgba(250, 247, 240, 0.15);
}
.countdown__unit:last-child { border-right: none; }
.countdown__unit span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__unit em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.5);
  margin-top: 4px;
}

.price__finetext {
  margin-top: 22px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--steel);
  line-height: 1.5;
}
.price__finetext strong { color: var(--ink); font-weight: 700; }

.price__bonus-note {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--blood);
  font-weight: 700;
  text-transform: uppercase;
}
.price__bonus-note strong { font-family: var(--font-body); font-weight: 700; }
.price__bonus-note.is-hidden,
.is-hidden { display: none !important; }

.floating-cta--closed {
  background: var(--ink) !important;
  border-color: var(--blood) !important;
}
.floating-cta--closed .floating-cta__price {
  background: var(--blood) !important;
  color: var(--paper) !important;
}

.price__trust {
  list-style: none;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 12px;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.faq__list {
  list-style: none;
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--paper-line);
}
.faq__item {
  border-bottom: 1px solid var(--paper-line);
}
.faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr 30px;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  cursor: pointer;
  transition: padding 0.3s var(--ease-out);
}
.faq__q:hover { padding-left: 12px; }
.faq__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--blood);
}
.faq__q-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.2;
  text-transform: uppercase;
}
.faq__icon {
  position: relative;
  width: 18px; height: 18px;
  justify-self: end;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transition: transform 0.3s var(--ease-cut), background 0.3s, opacity 0.3s;
}
.faq__icon::before {
  width: 18px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px; height: 18px;
  transform: translate(-50%, -50%);
}
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__q[aria-expanded="true"] .faq__icon::before { background: var(--blood); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-cut);
}
.faq__a > p { overflow: hidden; min-height: 0; }
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a p {
  padding: 0 0 26px 64px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.6;
  max-width: 70ch;
  color: #2a2a2a;
}
.faq__a p strong { font-weight: 700; }

/* ═══════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════ */
.final-cta {
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(214, 40, 40, 0.08) 0%, transparent 60%),
    var(--ink);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "刀";
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(300px, 50vw, 700px);
  color: var(--blood);
  opacity: 0.04;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}
.final-cta__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center;
}
.final-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.98;
  text-transform: uppercase;
  margin: 22px 0 32px;
}
.final-cta__body { display: flex; flex-direction: column; gap: 18px; max-width: 56ch; margin: 0 auto 40px; }
.final-cta__body p {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.55;
  color: rgba(250, 247, 240, 0.85);
}
.final-cta__body strong { color: var(--paper); }
.final-cta__big {
  font-family: var(--font-display) !important;
  font-size: clamp(28px, 3.6vw, 44px) !important;
  line-height: 1.05 !important;
  text-transform: uppercase;
  color: var(--paper) !important;
  margin: 14px 0 !important;
  padding: 22px 0 !important;
  border-block: 1px solid rgba(250, 247, 240, 0.2);
}
.final-cta__sub {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.55);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0 36px;
  border-top: 1px solid rgba(250, 247, 240, 0.15);
}
.footer__grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr; }
}
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__kanji {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--blood);
  line-height: 1;
}
.footer__brand p { font-family: var(--font-serif); font-size: 17px; }
.footer__mail {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--blood);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--blood);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.footer__mail:hover { color: var(--paper); border-color: var(--paper); }

.footer__legal {
  display: flex; flex-direction: column; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.5);
}
.footer__legal ul { list-style: none; display: flex; flex-wrap: wrap; gap: 14px; }
.footer__legal a { transition: color 0.2s; }
.footer__legal a:hover { color: var(--blood); }

/* ═══════════════════════════════════════════════════
   FLOATING MOBILE CTA
   ═══════════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 80;
  background: var(--blood);
  color: var(--paper);
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex; justify-content: space-between; align-items: center;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translateY(140%);
  transition: transform 0.4s var(--ease-cut);
}
.floating-cta.is-visible { transform: translateY(0); }
.floating-cta__price {
  background: var(--ink);
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
}
@media (min-width: 720px) {
  .floating-cta { display: none; }
}

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════ */
:focus-visible {
  outline: 3px solid var(--blood);
  outline-offset: 4px;
}
.btn:focus-visible { outline-offset: 6px; }
