/* ============================================================
   ПЕРВЫЙ КРУГ — Partner Landing
   Mobile-first. Strict pixel-art / samurai brand system.
   Cardinal Red (#C41E3A) replaces Chi as the rare-accent token.
   ============================================================ */

:root {
  /* Cardinal red — replaces --chi for this product */
  --cardinal: #C41E3A;

  /* Page chrome heights */
  --header-h: 60px;
  --page-pad: 20px;
  --content-max: 1200px;

  /* Fluid type — mobile → desktop */
  --t-hero:    clamp(34px, 7.2vw, 72px);
  --t-h2-big:  clamp(28px, 5.2vw, 48px);
  --t-h2:      clamp(24px, 4.2vw, 40px);
  --t-h3:      clamp(20px, 2.6vw, 26px);
  --t-pricetag: clamp(36px, 4.6vw, 52px);
  --t-stepnum: clamp(40px, 6vw, 68px);
  --t-quote:   clamp(20px, 2.4vw, 26px);
}

@media (min-width: 768px) {
  :root {
    --header-h: 72px;
    --page-pad: 28px;
  }
}
@media (min-width: 1024px) {
  :root {
    --page-pad: 32px;
  }
}
@media (min-width: 1280px) {
  :root {
    --page-pad: 40px;
  }
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body {
  margin: 0; padding: 0;
  background: var(--kuro);
  color: var(--shiroi);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--lh-body);
  letter-spacing: var(--tr-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 16px 16px;
  background-attachment: fixed;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}
.section {
  position: relative;
  padding: 56px 0;
}
@media (min-width: 768px) { .section { padding: 80px 0; } }
@media (min-width: 1024px) { .section { padding: 104px 0; } }
@media (min-width: 1280px) { .section { padding: 120px 0; } }

/* Compress vertical gap between adjacent transparent sections — kills the empty-room feeling */
.section + .section:not(.section--elevated):not(.final) { padding-top: 24px; }
@media (min-width: 768px) { .section + .section:not(.section--elevated):not(.final) { padding-top: 32px; } }
@media (min-width: 1024px) { .section + .section:not(.section--elevated):not(.final) { padding-top: 56px; } }

.section--elevated { background: var(--sumi); border-top: 1px solid var(--hai); border-bottom: 1px solid var(--hai); }

.tag {
  font-family: var(--font-pixel);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--do);
  text-transform: uppercase;
  display: inline-block;
}
@media (min-width: 768px) { .tag { font-size: 10px; } }

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--kasumi);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-h2);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--shiroi);
  margin: 16px 0 0;
}

.section-eyebrow { display: flex; align-items: center; gap: 12px; }

.divider-thin { height: 1px; background: var(--hai); border: 0; margin: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(10,10,10,0.94);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease);
  display: flex; align-items: center;
}
.header.is-scrolled { border-bottom-color: var(--hai); }
.header__inner {
  width: 100%; max-width: var(--content-max);
  margin: 0 auto; padding: 0 var(--page-pad);
  display: flex; align-items: center; gap: 16px;
}
.header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; border: 0; }
.header__logo img { width: 28px; height: 28px; image-rendering: pixelated; }
.header__logo span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--kinzoku); letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .header__logo img { width: 32px; height: 32px; }
  .header__logo span { font-size: 16px; }
}
.header__crumb {
  font-family: var(--font-pixel); font-size: 8px;
  letter-spacing: 0.15em; color: var(--do);
  padding-left: 14px; margin-left: 4px;
  border-left: 1px solid var(--hai);
  display: none;
}
@media (min-width: 768px) { .header__crumb { display: inline-block; } }

.header__nav { margin-left: auto; display: none; gap: 28px; }
@media (min-width: 1024px) { .header__nav { display: flex; } }
.header__nav a {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--kasumi); text-transform: uppercase;
  letter-spacing: 0.05em; text-decoration: none; border: 0;
  transition: color var(--dur-fast) var(--ease);
}
.header__nav a:hover { color: var(--kinzoku); }

.header .header__cta { display: none; }
@media (min-width: 1024px) { .header .header__cta { display: inline-flex; margin-left: 32px; } }

.header__burger {
  margin-left: auto;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--hai);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--kinzoku);
  transition: border-color var(--dur-fast) var(--ease);
}
.header__burger:hover { border-color: var(--kinzoku); }
@media (min-width: 1024px) { .header__burger { display: none; } }
.header__burger svg { width: 18px; height: 18px; }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--kuro);
  z-index: 99;
  display: flex; flex-direction: column;
  padding: var(--header-h) var(--page-pad) 32px;
  transform: translateY(-8px);
  opacity: 0; pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav__inner { padding-top: 32px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px;
  color: var(--shiroi); text-decoration: none; border: 0;
  padding: 14px 0; border-bottom: 1px solid var(--hai);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a .ord {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--kasumi); letter-spacing: 0.1em;
}
.mobile-nav__cta { margin-top: 32px; }

/* ============================================================
   BUTTON
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 24px;
  min-height: 48px;
  border: 2px solid;
  background: transparent;
  cursor: pointer; text-decoration: none;
  transition: background-color 200ms, color 200ms, border-color 200ms;
  white-space: nowrap;
}
.btn--primary { border-color: var(--kinzoku); color: var(--kinzoku); }
.btn--primary:hover { background: var(--kinzoku); color: var(--kuro); }
.btn--primary:active { background: var(--do); border-color: var(--do); color: var(--kuro); }

.btn--secondary { border-width: 1px; border-color: var(--kasumi); color: var(--kasumi); }
.btn--secondary:hover { border-color: var(--shiroi); color: var(--shiroi); }

.btn--small { font-size: 11px; padding: 10px 16px; min-height: 40px; }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 20px 32px; font-size: 13px; min-height: 56px; }
@media (min-width: 768px) {
  .btn--lg { padding: 22px 40px; font-size: 14px; min-height: 60px; }
}

.link {
  color: var(--kinzoku); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.link:hover { border-bottom-color: var(--kinzoku); }

/* ============================================================
   BLOCK 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 64px;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: calc(var(--header-h) + 80px) 0 80px; } }
@media (min-width: 1024px) { .hero { padding: calc(var(--header-h) + 120px) 0 96px; } }
@media (min-width: 1280px) { .hero { padding: calc(var(--header-h) + 140px) 0 120px; } }

.hero__kanji {
  position: absolute;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(280px, 50vw, 640px);
  color: rgba(201,168,76,0.04);
  pointer-events: none;
  right: -8vw;
  top: 50%; transform: translateY(-50%);
  line-height: 1;
  user-select: none;
}
.hero__enso {
  position: absolute; right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  opacity: 0.06;
  pointer-events: none;
  image-rendering: pixelated;
  display: none;
}
@media (min-width: 768px) { .hero__enso { display: block; } }
@media (min-width: 1024px) { .hero__enso { width: 640px; height: 640px; right: -80px; } }

.hero__content { position: relative; z-index: 1; max-width: 880px; }
.hero__rule {
  width: 56px; height: 1px;
  background: var(--cardinal);
  margin: 14px 0 28px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-hero);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--kinzoku);
  margin: 0;
  text-wrap: balance;
}
.hero__sub {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--shiroi);
  line-height: 1.4;
  margin: 24px 0 0;
  max-width: 640px;
  text-wrap: pretty;
}
.hero__meta {
  font-family: var(--font-body); font-size: 15px;
  color: var(--kasumi); line-height: 1.5;
  margin: 24px 0 0;
  max-width: 560px;
}
.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 40px;
}
@media (min-width: 768px) { .hero__cta { margin-top: 56px; gap: 16px; } }

.hero__pills {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  margin-top: 32px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; color: var(--kasumi);
  text-transform: uppercase;
}
.hero__pills span { display: inline-flex; align-items: center; gap: 8px; }
.hero__pills span::before {
  content: ''; width: 6px; height: 6px;
  background: var(--do);
  display: inline-block;
}

/* ============================================================
   BLOCK 2 — PRIVILEGE
   ============================================================ */
.privilege__lead {
  font-family: var(--font-body); font-size: clamp(17px, 1.8vw, 20px);
  color: var(--shiroi); line-height: 1.55;
  margin: 0 0 40px; max-width: 680px;
}
.privilege__lead em { color: var(--kasumi); font-style: normal; }
.privilege__lead strong {
  color: var(--kinzoku); font-weight: 400;
  font-family: var(--font-display);
}

.compare {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .compare {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-left: 1px solid var(--hai);
  }
}
.compare__col {
  padding: 28px 0 4px;
  border-top: 1px solid var(--hai);
}
.compare__col + .compare__col { border-top: 1px solid var(--hai); }
@media (min-width: 768px) {
  .compare__col {
    padding: 28px 32px;
    border-top: 0;
    border-right: 1px solid var(--hai);
  }
  .compare__col + .compare__col { border-top: 0; }
}
.compare__label {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--kasumi); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.compare__col--accent .compare__label { color: var(--kinzoku); }

.compare__steps { display: flex; flex-direction: column; gap: 14px; }
.compare__step {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--kasumi); line-height: 1.5;
}
.compare__step::before {
  content: ''; flex: none;
  width: 8px; height: 8px;
  background: var(--hai);
  margin-top: 8px;
}
.compare__col--accent .compare__step { color: var(--shiroi); }
.compare__col--accent .compare__step::before { background: var(--kinzoku); }
.compare__col--accent .compare__step:last-child::before {
  background: var(--cardinal);
}
.compare__col--accent .compare__step:last-child {
  color: var(--shiroi); font-weight: 500;
}

.diamond {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--cardinal);
  transform: rotate(45deg) translateY(-2px);
  margin: 0 6px 0 2px;
}

/* ============================================================
   BLOCK 3 — WHAT IS THE CLUB
   ============================================================ */
.club__copy {
  font-family: var(--font-body); font-size: clamp(17px, 1.8vw, 20px);
  color: var(--shiroi); line-height: 1.6;
  max-width: 720px;
  margin: 0 0 48px;
}
.club__copy p { margin: 0 0 18px; }
.club__copy p:last-child { margin: 0; }
.club__copy strike, .club__copy s {
  color: var(--kasumi); text-decoration-color: var(--kasumi);
  text-decoration-thickness: 1px;
}

.anchors {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .anchors { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.anchor {
  background: var(--sumi);
  border: 1px solid var(--hai);
  padding: 28px 24px;
  transition: border-color var(--dur-base) var(--ease);
  position: relative;
}
.anchor:hover { border-color: var(--kinzoku); }
.anchor--first {
  border-left: 2px solid var(--cardinal);
}
.anchor__kanji {
  position: absolute; right: 18px; top: 14px;
  font-family: var(--font-display);
  font-size: 56px; line-height: 1;
  color: rgba(201,168,76,0.05);
  pointer-events: none;
}
.anchor__num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--kasumi); letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.anchor__word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3vw, 34px);
  color: var(--kinzoku); letter-spacing: 0.04em;
  line-height: 1.1;
}
.anchor__desc {
  font-family: var(--font-body); font-size: 15px;
  color: var(--kasumi); line-height: 1.55;
  margin: 12px 0 0;
}

.club__more {
  margin-top: 40px;
  display: inline-flex; align-items: center; gap: 10px;
}

/* ============================================================
   BLOCK 4 — THREE FACTS
   ============================================================ */
.facts {
  display: grid; grid-template-columns: 1fr;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--hai);
}
@media (min-width: 768px) {
  .facts { grid-template-columns: repeat(3, 1fr); border-top: 0; }
}
.fact {
  padding: 32px 0;
  border-bottom: 1px solid var(--hai);
}
@media (min-width: 768px) {
  .fact {
    padding: 0 32px 0 0;
    border-bottom: 0;
    border-right: 1px solid var(--hai);
  }
  .fact:first-child { padding-left: 0; }
  .fact:last-child { border-right: 0; padding-right: 0; }
  .fact + .fact { padding-left: 32px; }
}
.fact__num {
  font-family: var(--font-mono); font-weight: 700;
  font-size: var(--t-stepnum);
  color: var(--cardinal);
  line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 24px;
  display: block;
}
.fact__head {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--shiroi);
  line-height: 1.2;
  margin: 0 0 12px;
}
.fact__body {
  font-family: var(--font-body); font-size: 15px;
  color: var(--kasumi); line-height: 1.55;
  margin: 0;
}

/* ============================================================
   BLOCK 5 — PRICING
   ============================================================ */
.pricing {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) { .pricing { grid-template-columns: repeat(3, 1fr); gap: 0; } }

.tier {
  background: var(--sumi);
  border: 1px solid var(--hai);
  padding: 32px 24px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color var(--dur-base) var(--ease);
}
.tier:hover { border-color: var(--kinzoku); }
@media (min-width: 900px) {
  .tier { padding: 40px 32px; margin-right: -1px; }
  .tier:last-child { margin-right: 0; }
}
.tier--featured {
  border-color: var(--kinzoku);
  z-index: 2;
}
@media (min-width: 900px) {
  .tier--featured { transform: scale(1.02); }
}

.tier__badge {
  position: absolute; top: -1px; left: -1px;
  font-family: var(--font-pixel); font-size: 8px;
  letter-spacing: 0.15em;
  background: var(--kinzoku); color: var(--kuro);
  padding: 6px 10px;
}
.tier__name {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--kasumi); letter-spacing: 0.1em; text-transform: uppercase;
}
.tier__period {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3vw, 34px);
  color: var(--shiroi); margin: 8px 0 0;
  letter-spacing: 0.02em;
}
.tier__price {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-pricetag);
  color: var(--kinzoku);
  line-height: 1; letter-spacing: -0.01em;
  margin: 28px 0 4px;
}
.tier__price-meta {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--kasumi); letter-spacing: 0.05em;
  min-height: 18px;
}
.tier__price-meta strong { color: var(--shiroi); font-weight: 400; }

.tier__divider {
  height: 1px; background: var(--hai);
  margin: 28px 0 24px;
}
.tier__list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--shiroi); line-height: 1.4;
}
.tier__list li { display: flex; align-items: flex-start; gap: 12px; }
.tier__list li::before {
  content: ''; flex: none;
  width: 8px; height: 8px;
  background: var(--do);
  margin-top: 8px;
}
.tier--featured .tier__list li::before { background: var(--kinzoku); }

.tier__cta { margin-top: auto; }

.guarantee {
  margin-top: 32px;
  text-align: center;
  font-family: var(--font-body); font-size: 15px;
  color: var(--kasumi);
}
.guarantee strong {
  color: var(--shiroi); font-weight: 500;
  border-bottom: 1px solid var(--cardinal);
  padding-bottom: 2px;
}
@media (min-width: 768px) { .guarantee { margin-top: 56px; font-size: 17px; } }

/* ============================================================
   BLOCK 6 — STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
  }
}
.step {
  background: var(--sumi);
  border: 1px solid var(--hai);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
}
.step__ord {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--kasumi); letter-spacing: 0.12em;
}
.step__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--shiroi); margin: 0;
  line-height: 1.2;
}
.step__body {
  font-family: var(--font-body); font-size: 15px;
  color: var(--kasumi); line-height: 1.55;
  margin: 0;
}

.step-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  padding: 0;
  color: var(--do);
}
.step-arrow svg { width: 32px; height: 32px; image-rendering: pixelated; }
.step-arrow--cardinal { color: var(--cardinal); }
@media (max-width: 899px) {
  .step-arrow { transform: rotate(90deg); }
}
@media (min-width: 900px) {
  .step-arrow {
    padding-top: 64px;
    width: 60px;
  }
}

.steps__cta { margin-top: 40px; }

/* ============================================================
   BLOCK 7 — INVITER QUOTE
   ============================================================ */
.inviter-wrap { position: relative; }
.inviter-wrap::before {
  content: '人';
  position: absolute;
  right: -4vw; top: -40px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(220px, 28vw, 360px);
  color: rgba(201,168,76,0.04);
  line-height: 1; pointer-events: none; user-select: none;
}
.inviter {
  border-left: 2px solid var(--cardinal);
  padding: 8px 0 8px 24px;
  max-width: 760px;
  position: relative;
}
@media (min-width: 768px) { .inviter { padding-left: 32px; } }
.inviter__lead {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--shiroi); line-height: 1.35;
  margin: 0; letter-spacing: 0.01em;
  text-wrap: pretty;
}
.inviter__lead strong {
  font-weight: 700; color: var(--kinzoku);
}
.inviter__body {
  font-family: var(--font-body); font-size: clamp(15px, 1.6vw, 17px);
  color: var(--kasumi); line-height: 1.65;
  margin: 20px 0 0;
}

/* ============================================================
   BLOCK 8 — SOCIAL PROOF
   ============================================================ */
.testimonials {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.testimonial {
  background: var(--sumi);
  border: 1px solid var(--hai);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--shiroi); line-height: 1.45;
  margin: 0;
}
.testimonial__quote::before {
  content: '«';
  font-family: var(--font-display); font-weight: 700;
  font-size: 32px; line-height: 0;
  color: var(--kinzoku);
  margin-right: 4px;
  vertical-align: -10px;
}
.testimonial--first .testimonial__quote::before {
  color: var(--cardinal);
}
.testimonial__attr {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--kasumi); letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--hai);
}

.cases {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) { .cases { grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; } }

.case {
  background: var(--kuro);
  border: 1px dashed var(--do);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.case__hdr {
  font-family: var(--font-pixel); font-size: 9px;
  color: var(--do); letter-spacing: 0.15em;
}
.case__row { display: flex; align-items: baseline; gap: 12px; font-size: 15px; }
.case__lbl {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--kasumi); letter-spacing: 0.1em;
  text-transform: uppercase; flex: none;
  width: 80px;
}
.case__val {
  font-family: var(--font-body); color: var(--shiroi); line-height: 1.4;
  flex: 1;
}
.case__val--muted { color: var(--kasumi); font-style: italic; }

/* ============================================================
   BLOCK 9 — ABOUT NIKITA
   ============================================================ */
.author {
  display: grid; grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .author { grid-template-columns: 280px 1fr; gap: 56px; align-items: start; } }
@media (min-width: 1280px) { .author { grid-template-columns: 320px 1fr; gap: 72px; } }

.author__plate {
  background: var(--sumi);
  border: 1px solid var(--hai);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  max-width: 320px;
}
@media (max-width: 899px) {
  .author__plate { max-width: 280px; }
}
.author__plate-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.04) brightness(0.96);
  display: block;
}
/* subtle vignette to bond photo with the dark page */
.author__plate::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.0) 60%, rgba(10,10,10,0.55) 100%),
    linear-gradient(0deg, rgba(10,10,10,0.0) 80%, rgba(10,10,10,0.25) 100%);
}
.author__plate-tag {
  position: absolute; left: 14px; bottom: 12px;
  font-family: var(--font-pixel); font-size: 8px;
  color: var(--kinzoku); letter-spacing: 0.15em;
  z-index: 2;
}
.author__plate-mon {
  position: absolute; right: 12px; top: 12px;
  width: 26px; height: 26px; image-rendering: pixelated;
  opacity: 0.75; z-index: 2;
}

.author__copy { font-family: var(--font-body); font-size: clamp(16px, 1.7vw, 18px); line-height: 1.7; color: var(--shiroi); }
.author__copy p { margin: 0 0 18px; }
.author__copy p:last-child { margin: 0; }
.author__handle {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 14px;
  color: var(--kinzoku); letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  margin-top: 8px;
}
.author__handle:hover { border-bottom-color: var(--kinzoku); }

/* ============================================================
   BLOCK 10 — FAQ
   ============================================================ */
.faq { border-top: 1px solid var(--hai); }
.faq__item {
  border-bottom: 1px solid var(--hai);
}
.faq__head {
  width: 100%; text-align: left;
  background: transparent; border: 0;
  padding: 24px 0;
  display: flex; align-items: flex-start; gap: 16px;
  cursor: pointer;
  color: var(--shiroi);
  transition: color var(--dur-fast) var(--ease);
}
.faq__head:hover { color: var(--kinzoku); }
.faq__q {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.4; flex: 1;
  letter-spacing: 0;
}
.faq__icon {
  flex: none;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 22px; line-height: 1;
  color: var(--kinzoku);
  font-weight: 400;
  margin-top: 2px;
}
.faq__item.is-open .faq__icon {
  color: var(--cardinal);
}
.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms var(--ease);
}
.faq__item.is-open .faq__body { grid-template-rows: 1fr; }
.faq__body-inner {
  overflow: hidden;
  font-family: var(--font-body); font-size: 15px;
  color: var(--kasumi); line-height: 1.65;
  padding: 0 40px 0 0;
  max-width: 760px;
}
.faq__body-inner p { margin: 0 0 16px; }
.faq__body-inner p:last-child { padding-bottom: 24px; }

/* ============================================================
   BLOCK 11 — FINAL CTA
   ============================================================ */
.final {
  position: relative;
  text-align: center;
  padding: 80px 0 96px;
  overflow: hidden;
}
@media (min-width: 768px) { .final { padding: 120px 0 140px; } }
.final__kanji {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(280px, 50vw, 600px);
  color: rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.final__rule {
  width: 80px; height: 1px;
  background: var(--cardinal);
  margin: 0 auto 32px;
}
.final__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05; letter-spacing: 0.01em;
  color: var(--kinzoku);
  margin: 0;
  text-wrap: balance;
}
.final__body {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--shiroi); line-height: 1.4;
  margin: 28px auto 0;
  max-width: 580px;
  position: relative; z-index: 1;
  text-wrap: pretty;
}
.final__cta { margin-top: 40px; position: relative; z-index: 1; }
.final__note {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--kasumi); letter-spacing: 0.06em;
  margin-top: 20px;
  position: relative; z-index: 1;
}

/* ============================================================
   BLOCK 12 — FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--hai);
  background: var(--kuro);
  padding: 56px 0 40px;
}
.footer__grid {
  display: grid; grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; align-items: start; }
}

.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 36px; height: 36px; image-rendering: pixelated; }
.footer__brand-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; color: var(--kinzoku); letter-spacing: 0.04em;
}
.footer__brand-sub {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--kasumi); letter-spacing: 0.1em;
  margin-top: 4px;
}

.footer__col-title {
  font-family: var(--font-pixel); font-size: 8px;
  color: var(--do); letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.footer__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--font-mono); font-size: 13px;
  color: var(--kasumi); letter-spacing: 0.04em;
}
.footer__list a {
  color: var(--kasumi); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.footer__list a:hover { color: var(--kinzoku); border-bottom-color: var(--kinzoku); }

.footer__bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--hai);
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--kasumi); letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: baseline; }
}

/* ============================================================
   VIDEO BLOCK \u2014 reusable for VSL and roadmap explainer
   ============================================================ */
.video-block { max-width: 960px; margin: 0; }
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--sumi);
  border: 1px solid var(--hai);
  overflow: hidden;
}
/* gold corner brackets \u2014 quiet samurai frame */
.video-wrap::before,
.video-wrap::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid var(--kinzoku);
  z-index: 3; pointer-events: none;
}
.video-wrap::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.video-wrap::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.video-wrap video {
  width: 100%; height: 100%;
  display: block;
  background: var(--kuro);
}
.video-caption {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  justify-content: space-between; align-items: center;
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--kasumi); letter-spacing: 0.08em; text-transform: uppercase;
}
.video-caption__lhs { display: inline-flex; align-items: center; gap: 10px; }
.video-caption__dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--cardinal);
}
@media (max-width: 480px) {
  .video-caption { font-size: 10px; }
}

/* ============================================================
   ROADMAP \u2014 7 STAGES
   ============================================================ */
.roadmap__lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--shiroi); line-height: 1.55;
  max-width: 680px;
  margin: 16px 0 0;
  text-wrap: pretty;
}

.roadmap {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hai);
  margin-top: 8px;
}
.stage {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hai);
  align-items: start;
}
@media (min-width: 768px) {
  .stage {
    grid-template-columns: 88px 1fr;
    gap: 24px 36px;
    padding: 36px 0;
  }
}
.stage__num {
  font-family: var(--font-mono); font-weight: 700;
  font-size: clamp(42px, 5.5vw, 68px);
  color: var(--do);
  line-height: 0.95; letter-spacing: -0.02em;
}
.stage--accent .stage__num { color: var(--cardinal); }

.stage__body { min-width: 0; }
@media (min-width: 900px) {
  .stage__body {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: baseline;
  }
}
@media (min-width: 1280px) {
  .stage__body { grid-template-columns: 260px 1fr; gap: 48px; }
}
.stage__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--shiroi);
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0;
}
.stage__opt {
  display: block;
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 400;
  color: var(--kasumi); letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}
.stage__desc {
  font-family: var(--font-body); font-size: 15px;
  color: var(--kasumi); line-height: 1.65;
  margin: 12px 0 0;
  max-width: 560px;
}
@media (min-width: 900px) {
  .stage__desc { margin: 0; }
}

.stage__hl {
  background: linear-gradient(to right, rgba(196,30,58,0.22) 0%, rgba(196,30,58,0.04) 100%);
  color: var(--shiroi);
  padding: 2px 6px;
  white-space: nowrap;
}

.roadmap__divider {
  margin: 20px 0 8px;
  padding: 16px 0;
  border-top: 1px solid var(--hai);
  border-bottom: 1px solid var(--hai);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--kinzoku);
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

.roadmap__note {
  margin-top: 40px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(18px, 2.1vw, 22px);
  color: var(--shiroi);
  line-height: 1.4;
  max-width: 720px;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}
.roadmap__note strong {
  color: var(--kinzoku); font-weight: 700;
}
.roadmap__cta {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 10px;
}

/* ============================================================
   PAYMENT MODAL - standard GC widget script, self-sizing container
   ============================================================ */
.pay-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 24px 16px;
  opacity: 0; pointer-events: none;
  overflow-y: auto;
  transition: opacity 200ms var(--ease);
}
.pay-modal.is-open { opacity: 1; pointer-events: auto; }
@media (min-width: 768px) {
  .pay-modal { padding: 48px 24px; align-items: center; }
}

.pay-modal__backdrop {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.9);
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 16px 16px;
  border: 0; padding: 0; cursor: pointer;
  z-index: 0;
}

.pay-modal__shell {
  position: relative;
  width: 100%;
  max-width: 620px;
  background: var(--sumi);
  border: 1px solid var(--hai);
  z-index: 1;
  transform: translateY(8px);
  transition: transform 200ms var(--ease);
}
.pay-modal.is-open .pay-modal__shell { transform: translateY(0); }

/* Gold corner brackets */
.pay-modal__shell::before,
.pay-modal__shell::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid var(--kinzoku);
  pointer-events: none;
}
.pay-modal__shell::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.pay-modal__shell::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }

.pay-modal__close {
  position: absolute; top: -52px; right: 0;
  width: 40px; height: 40px;
  background: var(--sumi);
  border: 1px solid var(--hai);
  color: var(--kasumi);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  z-index: 2;
}
.pay-modal__close:hover { color: var(--kinzoku); border-color: var(--kinzoku); }
@media (max-width: 767px) {
  .pay-modal__close { top: -48px; }
}

.pay-modal__widget {
  display: block;
  width: 100%;
}
.pay-modal__widget iframe {
  display: block;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Selection */
::selection { background: var(--kinzoku); color: var(--kuro); }
