*, *::before, *::after { box-sizing: border-box; }
:root {
  /* Cool blue paper variant of neo-mirai DNA */
  --paper:      oklch(96% 0.018 238);
  --paper-soft: oklch(94% 0.025 238);
  --paper-deep: oklch(88% 0.040 238);
  --rice:       oklch(98% 0.010 238);
  --ink:        oklch(20% 0.030 245);
  --ink-soft:   oklch(34% 0.035 240);
  --ash:        oklch(54% 0.030 238);
  --line:       oklch(78% 0.030 238);
  --sky:        oklch(55% 0.130 235);
  --sky-bright: oklch(64% 0.145 235);
  --sky-deep:   oklch(45% 0.140 240);
  --moon:       oklch(78% 0.100 248);
  --moon-deep:  oklch(58% 0.140 250);
  --night:      oklch(17% 0.035 245);
  --indigo:     oklch(42% 0.16 248);
  --indigo-hi:  oklch(46% 0.16 248);
  --indigo-lo:  oklch(36% 0.17 248);
  --shadow:     0 28px 70px oklch(24% 0.060 245 / 0.18);
  --shadow-sm:  0 4px 18px oklch(24% 0.060 245 / 0.10);
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Chakra Petch", "Noto Sans JP", sans-serif;
  --font-serif:   "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-mono:    "Azeret Mono", "SFMono-Regular", monospace;
}
html { width:100%; background: var(--paper); scroll-behavior:smooth; overflow-x:clip; -webkit-text-size-adjust:100%; }
body {
  margin: 0; min-width: 320px; color: var(--ink);
  font-family: var(--font-serif);
  line-height: 1.6;
  background:
    radial-gradient(circle at 72% 6%, oklch(78% 0.10 248 / 0.48), transparent 19rem),
    linear-gradient(90deg, oklch(20% 0.015 240 / 0.040) 1px, transparent 1px),
    linear-gradient(0deg,  oklch(20% 0.015 240 / 0.032) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 112px 112px, 112px 112px, auto;
  overflow-x: clip;
}
/* subtle paper noise/grain (cool variant) */
body::before {
  position: fixed; inset: 0; z-index: 10; pointer-events: none;
  content: ""; opacity: 0.30; mix-blend-mode: multiply;
  background:
    radial-gradient(circle at 18% 21%, oklch(100% 0 0 / 0.6), transparent 0.08rem),
    radial-gradient(circle at 76% 63%, oklch(36% 0.040 240 / 0.18), transparent 0.07rem),
    radial-gradient(circle at 48% 88%, oklch(38% 0.060 248 / 0.14), transparent 0.06rem);
  background-size: 0.7rem 0.85rem, 1.1rem 1.3rem, 0.95rem 1.05rem;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* ── NAV ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: linear-gradient(180deg, oklch(96% 0.018 238 / 0.96), oklch(96% 0.018 238 / 0.78), transparent);
  backdrop-filter: blur(8px);
}
.site-header .nav-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  padding: 14px clamp(20px, 4vw, 40px);
  max-width: 1180px; margin: 0 auto;
}
/* Brand block: lockup di atas, tagline kecil di bawah (C+D hybrid hook) */
.brand-block {
  display: inline-flex; flex-direction: column;
  align-items: flex-start; gap: 2px;
  text-decoration: none; color: inherit;
}
.brand-logo {
  display: block;
  height: 46px; width: auto;
  object-fit: contain;
}
@media (max-width: 720px) {
  .brand-logo { height: 38px; }
}
/* Legacy text lockup — kept for fallback / if needed */
.brand-lockup {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 17px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink);
}
.brand-lockup .dot {
  width: 8px; height: 8px; background: var(--sky); border-radius: 50%;
  display: inline-block; margin-right: 2px;
}
.brand-tagline {
  display: inline-flex; align-items: baseline; gap: 7px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--ash); margin-left: 14px;
  line-height: 1;
}
.brand-tagline-jp { font-style: normal; letter-spacing: 0.12em; color: var(--sky-deep); }
.brand-tagline-divider { color: var(--line); font-style: normal; }
.brand-tagline-id { opacity: 0.85; }

/* Nav middle */
.site-nav {
  display: flex; align-items: center; gap: clamp(14px, 2.4vw, 28px);
  justify-self: center;
}
.nav-link {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  padding: 6px 2px; position: relative;
  transition: color 180ms var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--sky-deep);
  border-radius: 2px;
  animation: nav-underline 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes nav-underline {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

/* CTA cluster right */
.site-cta {
  display: inline-flex; align-items: center; gap: 14px;
  justify-self: end;
}
.nav-login {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  transition: color 180ms var(--ease);
}
.nav-login:hover { color: var(--ink); }

.ticket-pill {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 16px; border: 1px solid var(--ink); border-radius: 999px;
  color: var(--ink); background: transparent;
  text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.ticket-pill:hover { background: var(--ink); color: var(--rice); }
/* Primary CTA — filled indigo, dominant signal */
.ticket-pill-primary {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--rice);
  padding: 10px 18px;
  box-shadow:
    inset 0 1px 0 oklch(1 0 0 / 0.20),
    0 2px 6px oklch(42% 0.16 248 / 0.30);
}
.ticket-pill-primary:hover {
  background: oklch(46% 0.17 248);
  color: var(--rice);
  transform: translateY(-1px);
}

/* Mobile collapse: hide tagline + nav anchors, keep brand + CTA */
@media (max-width: 720px) {
  .site-header .nav-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px clamp(16px, 4vw, 24px);
  }
  .brand-tagline { display: none; }
  .site-nav { display: none; }
  .nav-login { display: none; }
  .ticket-pill { padding: 8px 14px; font-size: 11.5px; }
}
@media (max-width: 480px) {
  .brand-lockup { font-size: 15px; }
}

/* ── HERO (full-bleed atmospheric scene + text overlay) ── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0 calc(50% - 50vw);  /* break out of wrap */
  max-width: 100vw;
  overflow: hidden;
  min-height: 70vh;
}
.hero > .wrap {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  padding-top: clamp(40px, 8vw, 80px);
  padding-bottom: clamp(40px, 8vw, 80px);
}
.hero-text { min-width: 0; max-width: 580px; }
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-deep);
  padding-bottom: 7px;
  border-bottom: 1px solid var(--sky);
  margin-bottom: 22px;
}
.headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 17ch;
}
.headline .accent {
  font-style: normal;
  color: var(--sky-deep);
  font-weight: 600;
}
.headline .accent-dim {
  color: var(--sky);
  font-style: normal;
}
.hero-subtitle {
  display: block;
  margin-top: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--sky-deep);
  letter-spacing: 0.01em;
}
.subhead {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 50ch;
}
.cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  background: var(--indigo);
  color: var(--rice);
  border: 0; border-radius: 4px;
  font-family: var(--font-display); font-size: 14.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 18px oklch(42% 0.16 248 / 0.30);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--indigo-lo);
  box-shadow: 0 6px 22px oklch(42% 0.16 248 / 0.42);
}
.btn-primary svg { width: 16px; height: 16px; }
.cta-reassure {
  margin-top: 16px; font-size: 12.5px;
  font-family: var(--font-mono); letter-spacing: 0.03em;
  color: var(--ash);
}

.hero-art {
  position: relative; margin: 0;
  width: 100%; order: 1;  /* mobile: below text */
}
.hero-art img {
  display: block;
  width: 100%; height: auto;
  object-fit: cover; object-position: center;
  mix-blend-mode: darken;
  filter: saturate(0.88) contrast(0.96);
  opacity: 0.62;
}
/* Desktop hero only: gradient fade left → right so text area kerasa lega,
   image dominant kanan. Mobile (image below text) tidak butuh. */
@media (min-width: 880px) {
  .hero-art::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      to right,
      var(--paper) 0%,
      oklch(96% 0.018 238 / 0.55) 32%,
      transparent 58%);
    pointer-events: none;
    z-index: 1;
  }
}
.hero-art figcaption {
  padding: 14px clamp(20px, 4vw, 40px) 0;
  font-family: var(--font-serif); font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.16em;
  line-height: 1.6;
  color: var(--ash);
  opacity: 0.85;
  max-width: none;
}
@media (min-width: 880px) {
  .hero { min-height: 86vh; }
  .hero-art {
    position: absolute; inset: 0; z-index: 1;
    width: 100%; height: 100%; order: 0;
  }
  .hero-art img { width: 100%; height: 100%; }
  .hero-art figcaption {
    position: absolute; bottom: 32px; right: clamp(28px, 4vw, 52px);
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border: 0;
    margin: 0; max-width: none; text-align: right;
    font-size: clamp(13px, 1.2vw, 15px);
    letter-spacing: 0.18em;
    line-height: 1.7;
    color: var(--ink-soft);
    opacity: 1;
    font-weight: 500;
    font-style: normal;
    /* Soft halo untuk legibility tanpa backdrop card — text "mengambang" di image */
    text-shadow:
      0 0 10px var(--paper),
      0 0 4px var(--paper),
      0 1px 0 oklch(96% 0.018 238 / 0.8);
  }
  .hero > .wrap {
    max-width: 58%;
    margin: 0; padding-left: clamp(90px, 9vw, 140px);
    padding-top: clamp(80px, 12vw, 160px);
    padding-bottom: clamp(60px, 9vw, 110px);
  }
}

/* Vertical Japanese poem in hero margin (desktop only) */
.vertical-poem {
  display: none;
  position: absolute;
  left: clamp(10px, 1.2vw, 20px); top: clamp(80px, 12vw, 160px);
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.35em;
  color: var(--ash);
  line-height: 1.9;
}
.vertical-poem i {
  display: block;
  width: 1px; height: 40px;
  background: var(--line);
  margin: 14px auto;
}
.figcaption-jp { display: block; }
.figcaption-gloss {
  display: block;
  margin-top: 4px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 11px; letter-spacing: 0.01em;
  color: var(--ash); opacity: 0.85;
  font-weight: 400;
  text-shadow: 0 0 8px var(--paper), 0 0 3px var(--paper);
}
/* Trust strip — thin honest line antara hero dan pain section */
.trust-strip {
  padding: clamp(20px, 3vw, 36px) clamp(20px, 4vw, 40px);
  text-align: center;
}
.trust-strip-text {
  margin: 0;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(13.5px, 1.7vw, 15.5px);
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  max-width: 56ch; margin-inline: auto;
  line-height: 1.55;
}
/* Speakers honest disclosure — small muted line below 3 speaker cards */
.speakers-honest {
  margin: clamp(20px, 3vw, 32px) auto 0;
  max-width: 60ch;
  text-align: center;
  font-family: var(--font-serif); font-style: italic;
  font-size: 12.5px; line-height: 1.55;
  color: var(--ash); opacity: 0.88;
  letter-spacing: 0.01em;
}
.vertical-poem .stamp {
  display: block; width: 28px; height: 28px;
  border: 1.5px solid var(--sky); border-radius: 50%;
  margin: 14px auto;
  position: relative;
}
.vertical-poem .stamp::after {
  content: "学"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 14px;
  color: var(--sky); font-weight: 500;
}
/* Vertical poem visible hanya saat viewport ≥ wrap-max + breathing room.
   Threshold 1300px = .wrap centered (max 1100) punya ≥100px margin per sisi,
   cukup buat vertical poem column tanpa overlap headline. */
@media (min-width: 1300px) {
  .vertical-poem { display: block; }
}
/* (hero responsive merged into .hero-art block above) */

/* ── SECTION shared ──────────────────────────────────── */
section { padding: clamp(48px, 7vw, 88px) 0; }
.section-h {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.012em; line-height: 1.15;
  color: var(--ink); margin: 0 0 32px; max-width: 22ch;
}

/* ── PAIN ────────────────────────────────────────────── */
.pain-list { display: flex; flex-direction: column; gap: 28px; max-width: 56ch; }
.pain-item {
  font-size: 16px; line-height: 1.7; color: var(--ink-soft);
  padding-left: 28px; position: relative;
}
.pain-item::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 16px; height: 1px; background: var(--gold);
}
.pain-item strong { color: var(--ink); font-weight: 600; }

/* ── BENEFITS ────────────────────────────────────────── */
.benefits {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.benefit {
  background: var(--paper);
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
}
.benefit-icon {
  width: 56px; height: 56px;
  margin-bottom: 18px; object-fit: contain;
  mix-blend-mode: darken;
  filter: saturate(0.92) contrast(1.06);
}
.benefit-tag {
  display: inline-block; align-self: flex-start;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sky-deep);
  padding: 3px 10px; border: 1px solid oklch(55% 0.130 235 / 0.35);
  border-radius: 999px; margin-bottom: 14px;
}
.benefit-h {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 19px; line-height: 1.25;
  color: var(--ink); margin: 0 0 10px;
}
.benefit-p {
  font-size: 14.5px; line-height: 1.65;
  color: var(--ink-soft); margin: 0;
}
.benefit-p em {
  font-style: normal; font-family: "Noto Sans JP", var(--font-serif);
  color: var(--ink);
  border-bottom: 1px dotted var(--sky); padding-bottom: 1px;
}
@media (min-width: 720px) {
  .benefits { grid-template-columns: 1fr 1fr; }
}

/* ── STEPS ───────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 8px; max-width: 64ch; }
.step {
  display: grid; grid-template-columns: auto 1fr;
  gap: 22px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; color: var(--sky-deep);
  min-width: 56px;
}
.step-body { min-width: 0; }
.step-h {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 17px; color: var(--ink); margin: 0 0 6px;
}
.step-p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; max-width: 64ch; }
.faq-item {
  border-top: 1px solid var(--line);
  background: transparent;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  padding: 22px 0; font-size: 16.5px; font-weight: 500;
  font-family: var(--font-serif);
  color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+"; font-family: var(--font-mono);
  font-size: 22px; font-weight: 400; color: var(--sky);
  transition: transform 240ms var(--ease);
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 22px;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.7;
  max-width: 56ch;
}

/* ── FINAL CTA ───────────────────────────────────────── */
.final {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 60px calc(50% - 50vw) 0;
  max-width: 100vw;
  overflow: hidden;
  min-height: 70vh;
  border-top: 1px solid var(--line);
}
.final > .wrap {
  position: relative; z-index: 2;
  text-align: left;
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(48px, 8vw, 80px);
}
.final-art {
  position: relative; margin: 0;
  width: 100%; order: 1;
}
.final-art img {
  display: block; width: 100%; height: auto;
  object-fit: cover; object-position: center;
  mix-blend-mode: darken;
  filter: saturate(0.88) contrast(0.96);
  opacity: 0.62;
}
/* Desktop final CTA: gradient fade dari paper kiri → transparent kanan
   (text panel kiri, image dominance bergeser ke kanan — sama spirit dengan hero) */
@media (min-width: 880px) {
  .final-art::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      to right,
      var(--paper) 0%,
      oklch(96% 0.018 238 / 0.55) 32%,
      transparent 58%);
    pointer-events: none;
    z-index: 1;
  }
}
@media (min-width: 880px) {
  .final { min-height: 80vh; margin-top: 80px; }
  .final-art {
    position: absolute; inset: 0; z-index: 1;
    width: 100%; height: 100%; order: 0;
  }
  .final-art img { width: 100%; height: 100%; }
  .final > .wrap {
    max-width: 56%;
    margin: 0; padding-left: clamp(80px, 8vw, 140px);
    padding-top: clamp(80px, 12vw, 140px);
    padding-bottom: clamp(60px, 9vw, 100px);
  }
}

/* ── HORIZON LINE (subtle decorative SVG at hero bottom) ── */
.hero-horizon {
  position: absolute; left: 0; right: 0; bottom: -20px;
  pointer-events: none; z-index: 1;
  width: 100%; height: 30px;
  opacity: 0.45;
}
.hero { position: relative; }
.final-h {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(26px, 4.5vw, 42px);
  letter-spacing: -0.015em;
  margin: 0 0 16px; color: var(--ink);
  max-width: 18ch;
}
.final-h .accent { color: var(--sky-deep); font-style: normal; font-weight: 600; }
.final-p {
  font-size: 15.5px; color: var(--ink-soft);
  max-width: 50ch; margin: 0 0 30px; line-height: 1.7;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  padding: 40px 0 56px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.05em;
  color: var(--ash);
}
footer a { color: var(--ink-soft); margin: 0 12px; }
footer a:hover { color: var(--ink); }
footer .divider { color: var(--line); }
footer .tagline {
  margin-top: 16px; font-family: var(--font-serif);
  font-style: italic; font-size: 13.5px;
  color: var(--ash); letter-spacing: normal;
}

/* ── PILLARS (5 content pillars) ─────────────────────── */
.pillars { display: flex; flex-direction: column; max-width: 64ch; }
.pillar {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 26px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar-glyph {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 48px; line-height: 1;
  color: var(--sky-deep);
  text-align: center;
  padding-top: 4px;
}
.pillar-body { min-width: 0; }
.pillar-sub {
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sky-deep); margin: 0 0 6px;
}
.pillar-h {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 18.5px; line-height: 1.3;
  color: var(--ink); margin: 0 0 10px;
}
.pillar-p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.65; }
.pillar-badge {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
  white-space: nowrap;
  align-self: start;
}
.pillar-badge.live {
  color: var(--sky-deep);
  border: 1px solid oklch(55% 0.130 235 / 0.45);
  background: oklch(55% 0.130 235 / 0.06);
}
.pillar-badge.paid {
  color: var(--indigo);
  border: 1px solid oklch(42% 0.16 248 / 0.50);
  background: oklch(42% 0.16 248 / 0.08);
}
.pillar-badge.soon {
  color: var(--ash);
  border: 1px dashed var(--line);
  background: transparent;
}
@media (max-width: 559px) {
  .pillar {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }
  .pillar-glyph { font-size: 36px; }
  .pillar-badge {
    grid-column: 2; justify-self: start;
    margin-top: 6px;
  }
}

/* ── PILLAR FEATURE STRIPE (highlighted: paid hook + coming soon teaser)
   Hybrid Option B: keeps compact list above as scan-summary, then 2
   alternating image+text stripes give Nihonjin-Talk (premium) + Kanji
   (segera) the dramatic treatment they need to drive interest.
   ─────────────────────────────────────────────────────── */
.pillar-stripe { padding: clamp(28px, 4.5vw, 48px) 0; }
.pillar-stripe + .pillar-stripe { padding-top: 0; }
.pillar-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.pillar-feature-art {
  position: relative; margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.pillar-feature-art img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  mix-blend-mode: darken;
  filter: saturate(0.94) contrast(1.04);
}
.pillar-feature-body { display: flex; flex-direction: column; gap: 14px; }
.pillar-feature-pill {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
}
.pillar-feature-pill.paid {
  color: var(--indigo);
  border: 1px solid oklch(42% 0.16 248 / 0.50);
  background: oklch(42% 0.16 248 / 0.08);
}
.pillar-feature-pill.soon {
  color: var(--ash);
  border: 1px dashed var(--line);
  background: transparent;
}
.pillar-feature-sub {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sky-deep); margin: 0;
}
.pillar-feature-h {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(22px, 3.5vw, 28px); line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink); margin: 0;
}
.pillar-feature-p {
  font-size: 15.5px; line-height: 1.65;
  color: var(--ink-soft); margin: 0; max-width: 50ch;
}
.pillar-feature-list {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 7px;
}
.pillar-feature-list li {
  position: relative; padding-left: 22px;
  font-size: 14.5px; line-height: 1.55; color: var(--ink);
}
.pillar-feature-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 11px; height: 9px;
  background: var(--sky-deep);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 9'%3E%3Cpath d='M1 4.5L4 7.5L10 1.5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 9'%3E%3Cpath d='M1 4.5L4 7.5L10 1.5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}

.btn-secondary {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  font-family: inherit; font-size: 13.5px; font-weight: 500;
  color: var(--indigo);
  background: transparent;
  border: 1.5px solid var(--indigo);
  border-radius: 8px;
  text-decoration: none;
  transition: background 180ms ease-out, color 180ms ease-out;
  margin-top: 8px;
  letter-spacing: 0.005em;
}
.btn-secondary:hover {
  background: var(--indigo);
  color: var(--paper);
}

/* Character-based pillar illustration (Nihonjin-Talk) — no mix-blend-darken
   because character art bright colors get amplified against cool paper bg.
   Preserve original character palette as illustrated. */
.pillar-feature-art-character img {
  mix-blend-mode: normal !important;
  filter: saturate(1) contrast(1) !important;
  opacity: 1 !important;
}

/* Kanji feature stripe — 3-card stack visual.
   Front card = real <img>, behind pseudos = tinted background-image of same png.
   Rounded corners, soft drop-shadow, slight rotation each. Mobile: collapse to single card. */
.pillar-feature-art-kanji {
  background: linear-gradient(180deg, oklch(98% 0.010 238) 0%, oklch(92% 0.030 238) 100%);
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  border-radius: 8px;
}
/* Pseudo cards (back row) — same kanji image, tinted, rotated, behind */
/* Pseudo cards (back row) — DIFFERENT kanji images per card.
   Back-left: 力 chikara (power) | Back-right: 友 yuu (friend)
   Front (real img below): 火 api (fire) */
.pillar-feature-art-kanji::before,
.pillar-feature-art-kanji::after {
  content: '';
  position: absolute;
  top: 8%; bottom: 8%;
  width: 38%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: oklch(99% 0.005 240);
  border-radius: 14px;
  box-shadow:
    0 10px 22px oklch(20% 0.04 248 / 0.18),
    0 3px 6px oklch(20% 0.04 248 / 0.08);
}
.pillar-feature-art-kanji::before {
  background-image: url('img/pillar-kanji-2.jpg');
  left: 10%;
  transform: rotate(-9deg);
  z-index: 1;
}
.pillar-feature-art-kanji::after {
  background-image: url('img/pillar-kanji-3.jpg');
  right: 10%;
  transform: rotate(9deg);
  z-index: 2;
}
/* Front card (real img) — centered, top of stack */
.pillar-feature-art-kanji img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  width: auto !important;
  height: 86% !important;
  max-width: 52%;
  object-fit: contain !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  border-radius: 14px;
  box-shadow:
    0 16px 34px oklch(20% 0.04 248 / 0.22),
    0 4px 10px oklch(20% 0.04 248 / 0.12);
  z-index: 3;
  background: oklch(99% 0.005 240);
}

/* Mobile: simpler — single card, no stack */
@media (max-width: 720px) {
  .pillar-feature-art-kanji::before,
  .pillar-feature-art-kanji::after { display: none; }
  .pillar-feature-art-kanji img {
    max-width: 72%;
    height: 90% !important;
    transform: translate(-50%, -50%) rotate(-1deg);
  }
}

@media (min-width: 720px) {
  .pillar-feature {
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .pillar-stripe-flip .pillar-feature {
    grid-template-columns: 1fr 1.05fr;
  }
  .pillar-stripe-flip .pillar-feature-art {
    order: 2;
  }
}

/* ── SPEAKERS (Yura / Hana / Kenji) ──────────────────── */
.speakers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.speaker {
  display: flex; flex-direction: column;
  background: var(--rice);
  border: 1px solid var(--line);
  overflow: hidden;
}
.speaker-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-deep);
}
.speaker-portrait img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: saturate(0.94) contrast(1.02);
}
.speaker-body { padding: 22px 24px 26px; }
.speaker-name {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 22px; color: var(--ink); margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.speaker-role {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sky-deep); margin: 0 0 14px;
}
.speaker-bio {
  font-size: 14.5px; line-height: 1.65;
  color: var(--ink-soft); margin: 0;
}
.speaker-placeholder {
  display: flex; align-items: center; justify-content: center;
  height: 100%; width: 100%;
  font-family: var(--font-serif); font-weight: 500;
  font-size: 72px; color: var(--sky-deep);
  background: linear-gradient(180deg, var(--paper-soft), var(--paper-deep));
}
@media (min-width: 720px) {
  .speakers { grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
}

/* ── HERO ENTRANCE — staged fade-in on page load (CSS only, no JS).
   Sequence: section-label → headline → subtitle → subhead → CTA → reassure.
   Image fades in separately, slower, behind text. Reduced-motion: skip.
   ─────────────────────────────────────────────────────────────── */
.hero-text > .section-label,
.hero-text > .headline,
.hero-text > .hero-subtitle,
.hero-text > .subhead,
.hero-text > .btn-primary,
.hero-text > .cta-reassure {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-text > .section-label { animation-delay: 120ms; }
.hero-text > .headline      { animation-delay: 260ms; }
.hero-text > .hero-subtitle { animation-delay: 420ms; }
.hero-text > .subhead       { animation-delay: 560ms; }
.hero-text > .btn-primary   { animation-delay: 720ms; }
.hero-text > .cta-reassure  { animation-delay: 860ms; }

.hero-art {
  animation: hero-art-fade 1400ms cubic-bezier(0.4, 0, 0.2, 1) 100ms backwards;
}
.hero-art figcaption {
  opacity: 0;
  animation: hero-rise 800ms cubic-bezier(0.22, 1, 0.36, 1) 1100ms forwards;
}
.vertical-poem {
  animation: hero-rise 1000ms cubic-bezier(0.22, 1, 0.36, 1) 1300ms backwards;
}

@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-art-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-text > *,
  .hero-art,
  .hero-art figcaption,
  .vertical-poem {
    animation: none;
    opacity: 1;
    transform: none;
  }
  /* figcaption opacity already set elsewhere — preserve */
  .hero-art figcaption { opacity: 1; }
}

/* ── SECTION TRANSITION — pure-CSS scroll-driven fade between sections.
   Uses native browser scroll-timeline API (Chrome 115+, Edge 115+, gradual
   Safari/Firefox rollout). Fallback: sections just show normally — no JS,
   no layout shift, no perf cost. Hero + final-cta exempt (own treatment).
   ─────────────────────────────────────────────────────────────── */
@supports (animation-timeline: view()) {
  main > .wrap {
    animation: section-rise linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 32%;
  }
  /* Only transform — opacity is owned by card-level reveal (avoid double-fade) */
  @keyframes section-rise {
    from { transform: translateY(22px); }
    to   { transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    main > .wrap { animation: none; }
  }
}

/* ── SCROLL REVEAL — fade + subtle rise as elements enter viewport
   Stagger via --stagger custom property (set by IntersectionObserver JS).
   Reduced-motion: instant show, no animation.
   ─────────────────────────────────────────────────────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--stagger, 0ms);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary, .faq-q::after, .ticket-pill { transition: none; }
  .reveal-on-scroll {
    opacity: 1; transform: none;
    transition: none;
  }
}

/* ── HERO EYEBROW (Prong A) ─────────────────────────── */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  padding: 6px 13px;
  background: oklch(55% 0.130 235 / 0.10);
  border: 1px solid oklch(55% 0.130 235 / 0.32);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-deep);
  font-weight: 500;
}
.hero-eyebrow-dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--sky-deep);
  border-radius: 50%;
  animation: hero-eyebrow-pulse 2.4s ease-in-out infinite;
}
@keyframes hero-eyebrow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

/* ── FREE HIGHLIGHT SECTION (Prong B) ───────────────── */
.l-free-highlight {
  margin: clamp(48px, 7vw, 80px) auto;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
  max-width: 1100px;
  background: linear-gradient(180deg, var(--rice) 0%, oklch(98% 0.020 238) 100%);
  border: 1px solid oklch(55% 0.130 235 / 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.l-free-highlight::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-deep), var(--indigo), var(--sky));
}
.l-free-highlight-inner {
  position: relative;
  max-width: 920px; margin: 0 auto;
}
.l-free-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  background: oklch(55% 0.130 235 / 0.12);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-deep);
  font-weight: 500;
  margin-bottom: 16px;
}
.l-free-h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 4.4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 22ch;
}
.l-free-h2 .accent {
  font-style: normal;
  color: var(--sky-deep);
  font-weight: 600;
}
.l-free-lead {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 60ch;
}
.l-free-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 720px) {
  .l-free-grid { grid-template-columns: 1fr; gap: 16px; }
}
.l-free-card {
  background: var(--rice);
  border: 1px solid oklch(55% 0.130 235 / 0.20);
  border-radius: 14px;
  padding: 24px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.l-free-card:hover {
  transform: translateY(-2px);
  border-color: oklch(55% 0.130 235 / 0.45);
  box-shadow: 0 8px 24px oklch(42% 0.16 248 / 0.10);
}
.l-free-card-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--indigo);
  color: var(--rice);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.l-free-card-l1 .l-free-card-tag {
  background: var(--sky-deep);
}
.l-free-card-h {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
}
.l-free-card-meta {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-style: italic;
}
.l-free-card-topics {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.l-free-card-topics li {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.l-free-card-topics li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--sky-deep);
  font-weight: 600;
}
.l-free-card-topics li.l-free-more {
  color: var(--ash);
  font-style: italic;
  padding-left: 0;
}
.l-free-card-topics li.l-free-more::before { content: ""; }
.l-free-cta-row {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 12px;
}
.l-free-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  background: var(--indigo);
  color: var(--rice);
  border: 0; border-radius: 4px;
  font-family: var(--font-display);
  font-size: 14.5px; font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 18px oklch(42% 0.16 248 / 0.30);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
  text-decoration: none;
}
.l-free-cta:hover {
  transform: translateY(-1px);
  background: var(--indigo-lo);
  box-shadow: 0 6px 22px oklch(42% 0.16 248 / 0.42);
}
.l-free-cta svg { width: 16px; height: 16px; }
.l-free-cta-fineprint {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--ash);
  line-height: 1.5;
}

/* ── Isi portal: zigzag feature rows + program grid ── */
.feat-section { padding-top: 8px; }
.feat-intro {
  max-width: 620px; margin: 6px 0 44px;
  font-size: 16px; line-height: 1.7; color: var(--ink-soft);
}
.feat-row {
  display: flex; align-items: center; gap: 48px;
  margin: 0 0 64px;
}
.feat-row-rev { flex-direction: row-reverse; }
.feat-art { flex: 1 1 52%; margin: 0; min-width: 0; }
.feat-art img {
  width: 100%; height: auto; display: block;
  border-radius: 18px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.feat-text { flex: 1 1 48%; min-width: 0; }
.feat-label {
  display: inline-block; font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--sky-deep); margin-bottom: 8px;
}
.feat-h {
  font-family: var(--font-serif);
  font-size: clamp(21px, 3.2vw, 30px); line-height: 1.24;
  color: var(--ink); margin: 0 0 12px;
}
.feat-p { font-size: 16px; line-height: 1.72; color: var(--ink-soft); margin: 0; }
.feat-cta {
  display: inline-block; margin-top: 14px;
  font-weight: 600; font-size: 15px; color: var(--sky-deep);
  text-decoration: none; border-bottom: 2px solid transparent;
  transition: border-color 160ms var(--ease);
}
.feat-cta:hover { border-color: var(--sky-deep); }

.prog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px; margin: 4px 0 64px;
}
.prog-card {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--rice); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.prog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.prog-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.prog-card-body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 3px; }
.prog-card-title { font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.prog-card-price { font-size: 12.5px; font-weight: 600; color: var(--sky-deep); }

@media (max-width: 760px) {
  .feat-row, .feat-row-rev { flex-direction: column; gap: 20px; margin-bottom: 44px; }
  .feat-text { text-align: left; }
  .prog-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
}
