/* ============================================================
   chulabo — MY TURN. (Wireframe Mock)
   ============================================================ */

:root {
  --magenta: #E5006D;
  --neon:    #FF2D87;
  --shell:   #FBE7E9;
  --paper:   #FFFCFA;
  --ink:     #0A0A0A;
  --mute:    #8A8A8A;
  --line:    rgba(10,10,10,.12);

  --display-en: 'Playfair Display', 'Times New Roman', serif;
  --display-ja: 'Shippori Mincho', 'Hiragino Mincho ProN', 'YuMincho', serif;
  --body-en:    'Inter', system-ui, -apple-system, sans-serif;
  --body-ja:    'Noto Sans JP', system-ui, -apple-system, sans-serif;
  --brand:      'Caveat', 'Shippori Mincho', cursive;

  --pad-x: clamp(24px, 6vw, 96px);
  --ease:  cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-ja), var(--body-en);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* hide the system cursor on desktop, keep on touch */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [data-voice], .tier__cta, .closer__cta, .masthead__cta, .note__link { cursor: none; }
}

/* ============================================================
   Custom Cursor
   ============================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}
.cursor__dot {
  width: 18px; height: 18px;
  background: var(--magenta);
  border-radius: 999px;
  box-shadow:
    0 0 0 2px var(--paper),
    0 0 0 3px rgba(10,10,10,.18),
    0 6px 16px rgba(10,10,10,.35);
  transition: width .15s var(--ease), height .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
}
.cursor__label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--paper);
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 600;
  opacity: 0;
  white-space: nowrap;
  transition: opacity .12s var(--ease);
}
.cursor.is-hover .cursor__dot {
  width: 56px; height: 56px;
  background: var(--neon);
  box-shadow:
    0 0 0 2px var(--paper),
    0 8px 24px rgba(255,45,135,.45);
}
.cursor.is-hover .cursor__label { opacity: 1; }
@media (hover: none) { .cursor { display: none; } }

/* ============================================================
   Mock Notice (small badge)
   ============================================================ */
.mock-notice {
  position: fixed;
  bottom: 16px; left: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 10px;
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .15em;
  z-index: 100;
  border-radius: 2px;
  opacity: .75;
}

/* ============================================================
   Masthead (Header)
   ============================================================ */
.masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--paper);
  mix-blend-mode: difference;
  font-family: var(--body-en);
  letter-spacing: .1em;
  font-size: 12px;
}
.masthead__brand {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: lowercase;
}
.masthead__nav {
  display: flex;
  gap: 26px;
  justify-content: center;
}
.masthead__nav a {
  position: relative;
  padding: 4px 0;
  font-weight: 500;
}
.masthead__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.masthead__nav a:hover::after { transform: scaleX(1); }
.masthead__cta {
  border: 1px solid currentColor;
  padding: 6px 14px !important;
  border-radius: 999px;
}
.masthead__issue {
  text-align: right;
  font-size: 10px;
  opacity: .9;
}

/* ============================================================
   Section 01 — Hero
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}
.hero__stage {
  position: absolute;
  inset: 0;
}
.hero__cover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero__cover.is-active { opacity: 1; }

.hero__photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 50% 35%;
  background-color: #2a1320;
  filter: saturate(.85) contrast(1.05);
  animation: breathe 9s var(--ease) infinite;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0) 70%, rgba(10,10,10,.55) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(229,0,109,.18), transparent 60%);
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.035); }
}

.hero__cover--typo {
  background: var(--magenta);
}
.hero__typoblock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--paper);
  padding: 0 var(--pad-x);
}
.hero__typoblock .hero__supra { color: var(--paper); }
.hero__bigword {
  font-family: var(--display-en);
  font-weight: 900;
  font-size: clamp(80px, 18vw, 280px);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-style: italic;
}
.hero__sublabel {
  font-family: var(--display-ja);
  font-size: clamp(18px, 1.8vw, 24px);
  margin-top: 24px;
  letter-spacing: .15em;
}

.hero__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-x) 14vh;
  color: var(--paper);
  pointer-events: none;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--display-en);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(72px, 14vw, 220px);
  line-height: .88;
  letter-spacing: -.04em;
  display: flex;
  flex-direction: column;
}
.hero__title span {
  display: block;
  animation: heroIn .9s var(--ease) both;
}
.hero__title span:nth-child(2) {
  animation-delay: .15s;
  color: var(--neon);
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40%) skewY(2deg); }
  to   { opacity: 1; transform: none; }
}
.hero__sub {
  font-family: var(--display-ja);
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: .12em;
  margin-top: 22px;
  font-weight: 400;
  opacity: 0;
  animation: heroIn .9s var(--ease) .35s forwards;
}
.hero__meta {
  position: absolute;
  z-index: 3;
  bottom: 4vh; right: var(--pad-x);
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .85;
  mix-blend-mode: difference;
}
.hero__indicator {
  position: absolute;
  left: var(--pad-x);
  bottom: 4vh;
  color: var(--paper);
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .3em;
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.hero__indicator span {
  display: inline-block;
  width: 48px; height: 1px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero__indicator span::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--magenta);
  transform: translateX(-100%);
  animation: scrollPing 2.5s var(--ease) infinite;
}
@keyframes scrollPing {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ============================================================
   Section 02 — Manifesto / Divider Magenta
   ============================================================ */
.divider {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--pad-x);
  position: relative;
}
.divider--magenta {
  background: var(--magenta);
  color: var(--paper);
}
.divider__inner {
  text-align: center;
  max-width: 1100px;
}
.divider__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: .85;
}
.divider__copy {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(44px, 9vw, 140px);
  line-height: 1.1;
  letter-spacing: .02em;
  margin-bottom: 48px;
  word-break: keep-all;
  overflow-wrap: normal;
}
.divider__en {
  font-family: var(--display-en);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: .04em;
  opacity: .9;
}

/* ============================================================
   Section 03 — Why Now / Story
   ============================================================ */
.story {
  padding: 200px var(--pad-x) 160px;
  position: relative;
}
.story__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}
.story__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  padding-top: 8px;
}
.story__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 1.1;
  letter-spacing: .04em;
}
.story__body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  position: relative;
  max-width: 1400px;
}
.story__lead {
  grid-column: 2;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.9;
  max-width: 56ch;
}
.story__quote {
  grid-column: 1 / -1;
  position: relative;
  margin: 80px 0;
  padding: 40px 0;
  font-family: var(--display-ja);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.35;
  letter-spacing: .04em;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story__qmark {
  font-family: var(--display-en);
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(120px, 18vw, 240px);
  line-height: 1;
  color: var(--shell);
  z-index: -1;
  font-weight: 900;
}
.story__after {
  grid-column: 2;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.9;
  max-width: 56ch;
}

.story__questions {
  margin-top: 160px;
}
.story__qhead {
  font-family: var(--display-en);
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 32px;
  color: var(--magenta);
}
.story__qscroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px calc(var(--pad-x) * -1) 24px 0;
  margin: 0 calc(var(--pad-x) * -1);
  padding-left: var(--pad-x);
  scrollbar-width: none;
}
.story__qscroll::-webkit-scrollbar { display: none; }
.qcard {
  flex: 0 0 min(520px, 80vw);
  scroll-snap-align: start;
  background: var(--shell);
  padding: 56px 40px;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .35s var(--ease);
}
.qcard:hover { transform: translateY(-6px); }
.qcard__num {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(40px, 4vw, 72px);
  color: var(--magenta);
  line-height: 1;
}
.qcard__text {
  font-family: var(--display-ja);
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.5;
  letter-spacing: .04em;
}
.qcard--ghost {
  background: var(--paper);
  border: 1px dashed var(--magenta);
}
.qcard__text--ghost {
  color: var(--magenta);
  align-self: center;
  text-align: center;
  margin-top: auto; margin-bottom: auto;
}

/* ============================================================
   Section 04 — Product
   ============================================================ */
.product {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  position: relative;
  min-height: 220vh;
}
.product__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  align-self: start;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(229,0,109,.35), transparent 60%),
    var(--ink);
}
.product__pack {
  width: clamp(220px, 28vw, 380px);
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 30px 60px rgba(229,0,109,.45))
    drop-shadow(0 60px 120px rgba(0,0,0,.5));
  animation: packFloatDark 7s var(--ease) infinite;
  transition: transform .6s var(--ease);
}
.product__pack:hover { transform: translateY(-10px) rotate(-1deg); }
@keyframes packFloatDark {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-14px) rotate(-.8deg); }
}

.product__flow {
  padding: 140px var(--pad-x) 160px 24px;
  max-width: 720px;
}
.product__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 24px;
}
.product__title {
  font-family: var(--display-ja);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.15;
  letter-spacing: .04em;
  margin-bottom: 80px;
}
.product__spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.spec { display: flex; flex-direction: column; gap: 8px; }
.spec__num {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(48px, 5vw, 84px);
  line-height: 1;
  color: var(--neon);
}
.spec__label {
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .25em;
  opacity: .65;
}
.product__lead {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.95;
  max-width: 50ch;
  margin-bottom: 80px;
  color: rgba(255,252,250,.85);
}

.product__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.tier {
  position: relative;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,.02);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.tier:hover { background: rgba(255,45,135,.08); transform: translateY(-4px); }
.tier__name {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .04em;
}
.tier__sub { font-size: 11px; letter-spacing: .15em; opacity: .65; text-transform: uppercase; }
.tier__price {
  font-family: var(--display-en);
  font-weight: 700;
  font-size: 28px;
  margin: 12px 0;
}
.tier__price span { font-size: 13px; opacity: .65; margin-left: 4px; }
.tier__cta {
  display: inline-block;
  margin-top: auto;
  padding: 12px 0;
  text-align: center;
  border: 1px solid var(--paper);
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.tier__cta:hover { background: var(--paper); color: var(--ink); }
.tier--feature { background: var(--magenta); border-color: var(--magenta); }
.tier--feature:hover { background: var(--neon); transform: translateY(-4px); }
.tier__badge {
  position: absolute;
  top: -10px; left: 16px;
  background: var(--paper);
  color: var(--ink);
  padding: 4px 10px;
  font-size: 9px;
  letter-spacing: .25em;
  font-weight: 700;
}
.tier--feature .tier__cta { border-color: var(--paper); background: var(--paper); color: var(--magenta); }

/* ============================================================
   Section 05 — Voices
   ============================================================ */
.voices {
  background: var(--shell);
  padding: 160px var(--pad-x);
}
.voices__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 96px;
}
.voices__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
}
.voices__title {
  font-family: var(--display-ja);
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1.1;
  letter-spacing: .04em;
}
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.voice {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: transform .4s var(--ease);
}
.voice--a { transform: translateY(40px); }
.voice--c { transform: translateY(80px); }
.voice:hover { transform: translateY(0) scale(1.01); }
.voice--a:hover { transform: translateY(34px) scale(1.01); }
.voice--c:hover { transform: translateY(74px) scale(1.01); }
.voice__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: #cba;
  filter: saturate(.7) contrast(1.05);
  margin-bottom: 20px;
}
.voice__sig {
  font-family: var(--display-ja);
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: .04em;
  color: var(--magenta);
  margin-bottom: 6px;
}
.voice__name {
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ============================================================
   Section 06 — Cinematic
   ============================================================ */
.cinematic {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  min-height: 130vh;
  position: relative;
  overflow: hidden;
}
.cinematic__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.cinematic__pink {
  position: absolute;
  width: 75vmin; height: 75vmin;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--neon), var(--magenta) 60%, #6f0034 100%);
  filter: blur(2px);
  animation: pinkSwirl 18s ease-in-out infinite;
  box-shadow: 0 0 200px 30px rgba(229,0,109,.5);
}
@keyframes pinkSwirl {
  0%, 100% { transform: translate(-10%, -5%) scale(1); }
  33%      { transform: translate(8%, 10%) scale(1.1) rotate(60deg); }
  66%      { transform: translate(-5%, 8%) scale(.95) rotate(120deg); }
}
.cinematic__rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.cinematic__rings span {
  position: absolute;
  border: 1px solid rgba(255,45,135,.35);
  border-radius: 50%;
  animation: ringPulse 6s var(--ease) infinite;
}
.cinematic__rings span:nth-child(1) { width: 40vmin; height: 40vmin; animation-delay: 0s; }
.cinematic__rings span:nth-child(2) { width: 60vmin; height: 60vmin; animation-delay: 1.5s; }
.cinematic__rings span:nth-child(3) { width: 80vmin; height: 80vmin; animation-delay: 3s; }
.cinematic__rings span:nth-child(4) { width: 100vmin; height: 100vmin; animation-delay: 4.5s; }
@keyframes ringPulse {
  0%   { opacity: .8; transform: scale(.7); }
  100% { opacity: 0;  transform: scale(1.15); }
}

.cinematic__copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad-x);
  max-width: 1100px;
}
.cinematic__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: .8;
}
.cinematic__words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 32px;
}
.cinematic__words span {
  display: inline-block;
  animation: wordIn 1s var(--ease) both;
}
.cinematic__words span:nth-child(1) { animation-delay: .1s; }
.cinematic__words span:nth-child(2) { animation-delay: .3s; color: var(--neon); }
.cinematic__words span:nth-child(3) { animation-delay: .5s; }
.cinematic__words span:nth-child(4) { animation-delay: .7s; color: var(--neon); }
.cinematic__words span:nth-child(5) { animation-delay: .9s; }
@keyframes wordIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}
.cinematic__sub {
  font-family: var(--display-ja);
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: .15em;
  opacity: .85;
}

/* ============================================================
   Section 07 — Company Note
   ============================================================ */
.note {
  padding: 200px var(--pad-x) 200px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  background: var(--paper);
  max-width: 1400px;
  margin: 0 auto;
}
.note__sign {
  font-family: var(--display-en);
  font-style: italic;
  border-top: 1px solid var(--ink);
  padding-top: 16px;
}
.note__date {
  font-family: var(--body-en);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}
.note__from {
  font-size: 22px;
  font-weight: 700;
}
.note__big {
  font-family: var(--display-ja);
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.3;
  letter-spacing: .04em;
  margin-bottom: 48px;
}
.note__small {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.95;
  color: rgba(10,10,10,.75);
  max-width: 56ch;
  margin-bottom: 32px;
}
.note__link {
  position: relative;
  font-family: var(--display-en);
  font-style: italic;
  font-size: 22px;
  color: var(--magenta);
  display: inline-block;
  padding-bottom: 4px;
}
.note__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--magenta);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.note__link:hover::after { transform: scaleX(.6); }

/* ============================================================
   Section 08 — Closer / Final CTA
   ============================================================ */
.closer {
  background: var(--magenta);
  color: var(--paper);
  padding: 160px var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closer::before {
  content: 'MY TURN.';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display-en);
  font-weight: 900;
  font-style: italic;
  font-size: 60vw;
  line-height: 1;
  color: rgba(255,252,250,.06);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.04em;
}
.closer__inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.closer__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: .85;
}
.closer__title {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(80px, 16vw, 240px);
  line-height: .92;
  letter-spacing: -.04em;
  margin-bottom: 40px;
}
.closer__sub {
  font-family: var(--display-ja);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: .12em;
  margin-bottom: 56px;
}
.closer__cta {
  display: inline-block;
  background: var(--paper);
  color: var(--magenta);
  font-family: var(--body-en);
  font-size: 14px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 24px 56px;
  border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.closer__cta:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-4px);
}
.closer__sub2 {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--body-en);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.closer__sub2 a { opacity: .8; padding-bottom: 2px; border-bottom: 1px solid currentColor; }
.closer__sub2 a:hover { opacity: 1; }

/* ============================================================
   Footer
   ============================================================ */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--pad-x) 40px;
}
.foot__top {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 64px;
}
.foot__brand {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(60px, 10vw, 140px);
  line-height: 1;
  letter-spacing: -.04em;
}
.foot__tag {
  font-family: var(--display-en);
  font-style: italic;
  opacity: .6;
  font-size: 16px;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,252,250,.15);
}
.foot__cols > div { display: flex; flex-direction: column; gap: 12px; }
.foot__h {
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: 8px;
}
.foot__cols a {
  font-size: 14px;
  opacity: .85;
  padding: 2px 0;
  transition: color .25s var(--ease), opacity .25s var(--ease);
}
.foot__cols a:hover { color: var(--neon); opacity: 1; }
.foot__btm {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .55;
}

/* ============================================================
   Voice Modal
   ============================================================ */
.vmodal {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.vmodal.is-open {
  display: flex;
  opacity: 1;
}
.vmodal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  width: 100%;
  background: var(--paper);
  padding: 48px;
}
.vmodal__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: #cba;
  filter: saturate(.7);
}
.vmodal__text { display: flex; flex-direction: column; justify-content: center; }
.vmodal__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
}
.vmodal__sig {
  font-family: var(--display-ja);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.3;
  margin-bottom: 24px;
}
.vmodal__body {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(10,10,10,.8);
}
.vmodal__close {
  position: absolute;
  top: 32px; right: 32px;
  width: 56px; height: 56px;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--paper);
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

/* ============================================================
   In-View Animation
   ============================================================ */
[data-section] > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-section].is-visible > * {
  opacity: 1;
  transform: none;
}
[data-section].is-visible > *:nth-child(2) { transition-delay: .08s; }
[data-section].is-visible > *:nth-child(3) { transition-delay: .16s; }
[data-section].is-visible > *:nth-child(4) { transition-delay: .24s; }
/* exception: hero rules itself */
.hero > *,
.hero.is-visible > * {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ============================================================
   TYPOGRAPHIC HERO (new — no portrait)
   ============================================================ */
.hero--typo {
  background: var(--magenta);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero--typo .hero__bg {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 60% 40% at 25% 30%, rgba(255,45,135,.45), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 75%, rgba(255,255,255,.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero--typo .hero__art {
  position: absolute;
  z-index: 0;
  right: -5%;
  top: 50%;
  transform: translateY(-50%) rotate(8deg);
  width: 38%;
  max-width: 580px;
  opacity: .18;
  mix-blend-mode: screen;
  filter: blur(1px) saturate(1.4);
  pointer-events: none;
  animation: heroArtBreathe 14s var(--ease) infinite;
}
.hero--typo .hero__art img { width: 100%; height: auto; display: block; }
@keyframes heroArtBreathe {
  0%, 100% { transform: translateY(-50%) rotate(8deg) scale(1); }
  50%      { transform: translateY(-50%) rotate(6deg) scale(1.04); }
}

.hero__masthead {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 96px var(--pad-x) 0;
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .85;
}
.hero__supra--right { text-align: right; }

.hero__center {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--pad-x);
  margin-top: -10vh;
}
.hero--typo .hero__bigword {
  font-family: var(--display-en);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(80px, 18vw, 280px);
  line-height: .85;
  letter-spacing: -.04em;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.hero--typo .hero__bigword span {
  display: block;
  animation: bigwordIn .9s var(--ease) both;
}
.hero--typo .hero__bigword span:nth-child(2) {
  animation-delay: .15s;
  text-indent: 8vw;
}
@keyframes bigwordIn {
  from { opacity: 0; transform: translateY(40%); }
  to   { opacity: 1; transform: none; }
}
.hero--typo .hero__sublabel {
  font-family: var(--display-ja);
  font-size: clamp(20px, 2.4vw, 36px);
  letter-spacing: .12em;
  margin-top: 28px;
  opacity: 0;
  animation: bigwordIn .9s var(--ease) .35s forwards;
}
.hero--typo .hero__meta,
.hero--typo .hero__indicator {
  z-index: 2;
}

/* ============================================================
   TYPOGRAPHIC VOICE CARDS
   ============================================================ */
.voices__grid--typo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.vpost {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 36px 36px;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease);
}
.vpost:hover { transform: translateY(-8px); }
.vpost--magenta { background: var(--magenta); color: var(--paper); }
.vpost--paper { background: var(--shell); color: var(--ink); }
.vpost--ink { background: var(--ink); color: var(--paper); }
.vpost--magenta:hover { background: var(--neon); }
.vpost--paper:hover { background: var(--paper); }
.vpost--ink:hover { background: #1c1c1c; }
.vpost__num {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(64px, 5vw, 96px);
  line-height: 1;
  letter-spacing: -.04em;
  opacity: .9;
}
.vpost--magenta .vpost__num { color: var(--paper); opacity: .6; }
.vpost--paper .vpost__num { color: var(--magenta); }
.vpost--ink .vpost__num { color: var(--neon); }
.vpost__quote {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.2;
  letter-spacing: .04em;
  margin-top: 28px;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.vpost__meta {
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-top: 24px;
  opacity: .7;
}
.vpost__cta {
  display: inline-block;
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .25em;
  font-weight: 700;
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  width: max-content;
}

/* ============================================================
   COMPANY — founder single-column (no photo)
   ============================================================ */
.cfounder__body--typo {
  grid-template-columns: 1fr;
  max-width: 760px;
}
.cfounder__body--typo .cfounder__text {
  padding: 0;
}

/* ============================================================
   VOICE INDIVIDUAL — TYPO HERO (no photo)
   ============================================================ */
.vhero--typo {
  display: block;
  position: relative;
  min-height: 100vh;
  padding: 140px var(--pad-x) 80px;
  overflow: hidden;
}
.vhero--magenta { background: var(--magenta); color: var(--paper); }
.vhero--paper { background: var(--shell); color: var(--ink); }
.vhero--ink { background: var(--ink); color: var(--paper); }

.vhero--typo .vhero__num {
  position: relative;
  z-index: 2;
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(80px, 11vw, 180px);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 32px;
  opacity: .8;
}
.vhero--magenta .vhero__num { color: var(--paper); opacity: .55; }
.vhero--paper .vhero__num { color: var(--magenta); }
.vhero--ink .vhero__num { color: var(--neon); }

.vhero--typo .vhero__copy {
  position: relative;
  z-index: 2;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 1200px;
}
.vhero--typo .vhero__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: .85;
}
.vhero--magenta .vhero__supra,
.vhero--ink .vhero__supra { color: var(--paper); opacity: .85; }
.vhero--typo .vhero__quote {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 1;
  letter-spacing: .02em;
  word-break: keep-all;
  margin-bottom: 56px;
}
.vhero--typo .vhero__meta {
  border-top: 1px solid currentColor;
  padding-top: 20px;
  max-width: 320px;
  opacity: .85;
}

.vhero--typo .vhero__ghost {
  position: absolute;
  bottom: -8%;
  right: -5%;
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: 50vw;
  line-height: .85;
  letter-spacing: -.04em;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.vhero--magenta .vhero__ghost { color: rgba(255,252,250,.08); }
.vhero--paper .vhero__ghost { color: rgba(229,0,109,.08); }
.vhero--ink .vhero__ghost { color: rgba(255,45,135,.07); }

/* ============================================================
   VOICE SPREAD — quote spread instead of gallery
   ============================================================ */
.vspread {
  padding: 200px var(--pad-x);
  background: var(--paper);
}
.vspread__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 56px;
  text-align: center;
}
.vspread__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.vquote {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.5;
  letter-spacing: .04em;
  padding: 48px 32px;
  border: 1px solid var(--line);
  position: relative;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.vquote:hover { background: var(--magenta); color: var(--paper); border-color: var(--magenta); }
.vquote--wide { grid-column: 1 / -1; text-align: center; font-size: clamp(28px, 3.4vw, 52px); padding: 80px 32px; }
.vquote--small { display: flex; align-items: center; }

/* ============================================================
   ECULMO PAGE
   ============================================================ */
/* Brand mark (equlmo) — handwritten lowercase */
.brand-script {
  font-family: var(--brand) !important;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.masthead__nav a.brand-script {
  font-size: 22px;
  line-height: 1;
  padding: 0 2px 2px;
  position: relative;
  top: 1px;
}

.masthead__nav a.is-current { color: var(--neon); }
.masthead__nav a.is-current::after {
  transform: scaleX(1);
  background: var(--neon);
}

/* ---- Product Hero ---- */
.phero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--pad-x) 0;
  background: var(--paper);
  overflow: hidden;
}
.phero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 70% 30%, rgba(229,0,109,.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 90%, rgba(255,45,135,.08), transparent 60%);
  pointer-events: none;
}
.phero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 220px);
}

.phero__copy { max-width: 640px; }
.phero__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 28px;
}
.phero__title {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(72px, 12vw, 200px);
  line-height: .9;
  letter-spacing: -.04em;
  margin-bottom: 32px;
}
.phero__title span {
  display: inline-block;
  background: linear-gradient(180deg, var(--ink) 60%, var(--magenta) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* equlmo handwritten brand mark — for the giant hero on product page */
.phero__title--script {
  font-family: var(--brand);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(140px, 22vw, 360px);
  line-height: .85;
  letter-spacing: -.01em;
  margin-bottom: 32px;
}
.phero__title--script span {
  display: inline-block;
  background: none;
  color: var(--magenta);
  -webkit-text-fill-color: var(--magenta);
  transform: rotate(-2deg);
  filter: drop-shadow(0 10px 0 rgba(229,0,109,.10));
  transform-origin: left center;
}
.phero__tagline {
  font-family: var(--display-ja);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.45;
  letter-spacing: .04em;
  margin-bottom: 56px;
}
.phero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.phero__meta > div { display: flex; flex-direction: column; gap: 8px; }
.phero__metalabel {
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--mute);
}
.phero__metaval {
  font-family: var(--display-en);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
}
.phero__buy {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.phero__price {
  font-family: var(--display-en);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--magenta);
}
.phero__price span {
  font-family: var(--body-ja);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  margin-left: 8px;
  color: var(--ink);
}
.phero__cta {
  display: inline-block;
  background: var(--magenta);
  color: var(--paper);
  padding: 22px 44px;
  font-family: var(--body-en);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.phero__cta:hover { background: var(--neon); transform: translateY(-3px); }

/* Product visual */
.phero__visual {
  position: relative;
  height: 100%;
  min-height: 600px;
  display: grid;
  place-items: center;
}
.phero__halo {
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(229,0,109,.22), rgba(229,0,109,0) 60%);
  filter: blur(30px);
  z-index: 0;
  animation: haloPulse 8s var(--ease) infinite;
}
@keyframes haloPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.08); opacity: .8; }
}
.phero__pack {
  position: relative;
  z-index: 2;
  width: clamp(280px, 32vw, 480px);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 30px 50px rgba(229,0,109,.25))
    drop-shadow(0 60px 120px rgba(10,10,10,.18));
  mix-blend-mode: multiply;
  transition: transform .6s var(--ease);
  animation: packFloat 7s var(--ease) infinite;
}
.phero__pack:hover { transform: translateY(-8px) rotate(-1deg); }
@keyframes packFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(-.6deg); }
}
.phero__sticker {
  position: absolute;
  top: 8%;
  right: 4%;
  z-index: 3;
  width: 110px;
  height: 110px;
  background: var(--magenta);
  color: var(--paper);
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .15em;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(229,0,109,.4);
  transform: rotate(-10deg);
  animation: stickerWobble 4s var(--ease) infinite;
}
.phero__sticker span { display: block; }
.phero__sticker span:first-child {
  font-family: var(--body-ja);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .05em;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,252,250,.4);
}
@keyframes stickerWobble {
  0%, 100% { transform: rotate(-10deg); }
  50%      { transform: rotate(-6deg) scale(1.02); }
}

.phero__ticker {
  position: relative;
  margin: 80px calc(var(--pad-x) * -1) 0;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 0;
  display: flex;
  gap: 32px;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 26px);
  letter-spacing: .04em;
}
.phero__ticker span {
  display: inline-block;
  animation: tickerSlide 28s linear infinite;
  flex-shrink: 0;
}
.phero__ticker span:nth-child(2) { animation-delay: -14s; }
@keyframes tickerSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ---- Composition ---- */
.comp {
  padding: 200px var(--pad-x) 160px;
  background: var(--paper);
}
.comp__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 120px;
}
.comp__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
}
.comp__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1.1;
  letter-spacing: .04em;
}
.comp__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 160px;
}
.bignum {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bignum__n {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(120px, 14vw, 220px);
  line-height: .9;
  color: var(--magenta);
  letter-spacing: -.06em;
}
.bignum__l {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mute);
}
.bignum__d {
  font-family: var(--body-ja);
  font-size: 15px;
  line-height: 1.85;
  margin-top: 8px;
  color: rgba(10,10,10,.8);
}

.comp__ingscroll-h {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 32px;
}
.comp__ingtrack {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 16px;
  margin: 0 calc(var(--pad-x) * -1);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.comp__ingtrack::-webkit-scrollbar { display: none; }
.ingcard {
  flex: 0 0 min(440px, 80vw);
  scroll-snap-align: start;
  background: var(--ink);
  color: var(--paper);
  padding: 40px 32px;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), background .35s var(--ease);
  border-radius: 4px;
}
.ingcard:hover { transform: translateY(-6px); background: var(--magenta); }
.ingcard__num {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(48px, 4vw, 72px);
  color: var(--neon);
  line-height: 1;
  margin-bottom: 32px;
}
.ingcard:hover .ingcard__num { color: var(--paper); }
.ingcard__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.ingcard__sub {
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 32px;
}
.ingcard:hover .ingcard__sub { color: var(--paper); opacity: .85; }
.ingcard__body {
  font-size: 14px;
  line-height: 1.9;
  margin-top: auto;
  opacity: .85;
}

/* ---- How to Take ---- */
.howto {
  padding: 200px var(--pad-x) 200px;
  background: var(--shell);
  position: relative;
  overflow: hidden;
}
.howto__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 120px;
}
.howto__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
}
.howto__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1.1;
  letter-spacing: .04em;
}

.howto__scenes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.scene {
  background: var(--paper);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: transform .35s var(--ease);
}
.scene:hover { transform: translateY(-6px); }
.scene__time {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(40px, 4vw, 60px);
  color: var(--magenta);
  line-height: 1;
}

.scene__art {
  position: relative;
  height: 180px;
  margin: 0 -32px;
  overflow: hidden;
}
.scene--morning .scene__art {
  background: linear-gradient(180deg, #ffd2dd 0%, #fff 100%);
}
.scene--noon .scene__art {
  background: linear-gradient(180deg, #ffe5ec 0%, var(--shell) 100%);
}
.scene--night .scene__art {
  background: linear-gradient(180deg, #1a0612 0%, #3a0b22 100%);
}

.scene__sun {
  position: absolute;
  bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 120px;
  background: var(--neon);
  border-radius: 999px;
  box-shadow: 0 0 80px rgba(255,45,135,.4);
}
.scene__sun--high { bottom: 40px; background: var(--magenta); }
.scene__horizon {
  position: absolute;
  bottom: 30%; left: 0; right: 0;
  height: 1px;
  background: rgba(229,0,109,.3);
}
.scene__steam {
  position: absolute;
  bottom: 10px; right: 24px;
  width: 4px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), transparent);
  border-radius: 999px;
  filter: blur(2px);
  animation: steam 3s ease-in-out infinite;
}
.scene__cup {
  position: absolute;
  bottom: -8px; right: 12px;
  width: 32px; height: 28px;
  background: var(--ink);
  border-radius: 0 0 6px 6px;
}
@keyframes steam {
  0%, 100% { opacity: .4; transform: translateY(0); }
  50%      { opacity: 1; transform: translateY(-12px); }
}
.scene__moon {
  position: absolute;
  top: 30px; right: 40px;
  width: 60px; height: 60px;
  background: #f8e7d4;
  border-radius: 999px;
  box-shadow: inset -16px 0 0 #d8b896, 0 0 60px rgba(248,231,212,.4);
}
.scene__star {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--paper);
  border-radius: 999px;
  animation: twinkle 2.5s ease-in-out infinite;
}
.scene__star--1 { top: 30%; left: 25%; animation-delay: 0s; }
.scene__star--2 { top: 50%; left: 55%; animation-delay: .7s; }
.scene__star--3 { top: 20%; left: 70%; animation-delay: 1.4s; }
@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .3; transform: scale(.5); }
}

.scene__head {
  font-family: var(--display-ja);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: .04em;
}
.scene__body {
  font-family: var(--body-ja);
  font-size: 14px;
  line-height: 1.9;
  color: rgba(10,10,10,.8);
}

/* ---- Voices Link ---- */
.vlink {
  background: var(--ink);
  color: var(--paper);
  padding: 200px var(--pad-x);
  text-align: center;
}
.vlink__inner { max-width: 900px; margin: 0 auto; }
.vlink__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 32px;
}
.vlink__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.2;
  letter-spacing: .04em;
  margin-bottom: 32px;
}
.vlink__lead {
  font-family: var(--body-ja);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.95;
  opacity: .8;
  margin-bottom: 48px;
}
.vlink__cta {
  display: inline-block;
  font-family: var(--display-en);
  font-style: italic;
  font-size: 22px;
  color: var(--neon);
  border-bottom: 1px solid var(--neon);
  padding-bottom: 4px;
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.vlink__cta:hover { color: var(--paper); border-color: var(--paper); transform: translateX(8px); }

/* ---- Buy Box ---- */
.buy {
  padding: 200px var(--pad-x);
  background: var(--paper);
}
.buy__head {
  text-align: center;
  margin-bottom: 96px;
}
.buy__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 24px;
}
.buy__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1.05;
  letter-spacing: .04em;
}

.buy__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.btier {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 56px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.btier:hover { transform: translateY(-6px); border-color: var(--magenta); }
.btier__name {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .02em;
}
.btier__sub {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mute);
}
.btier__price {
  font-family: var(--display-en);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 3.5vw, 52px);
  color: var(--magenta);
  margin: 12px 0;
}
.btier__price span {
  font-family: var(--body-ja);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  margin-left: 8px;
  color: var(--mute);
}
.btier__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.btier__list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(10,10,10,.85);
}
.btier__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--magenta);
}
.btier__cta {
  margin-top: auto;
  padding: 18px 0;
  text-align: center;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-family: var(--body-en);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.btier__cta:hover { background: var(--ink); color: var(--paper); }
.btier--feature {
  background: var(--magenta);
  color: var(--paper);
  border-color: var(--magenta);
  transform: translateY(-12px);
}
.btier--feature:hover { background: var(--neon); border-color: var(--neon); transform: translateY(-18px); }
.btier--feature .btier__name { color: var(--paper); }
.btier--feature .btier__sub { color: rgba(255,252,250,.7); }
.btier--feature .btier__price { color: var(--paper); }
.btier--feature .btier__price span { color: rgba(255,252,250,.65); }
.btier--feature .btier__list { border-color: rgba(255,252,250,.25); }
.btier--feature .btier__list li { color: var(--paper); }
.btier--feature .btier__list li::before { background: var(--paper); }
.btier--feature .btier__cta { border-color: var(--paper); color: var(--magenta); background: var(--paper); }
.btier--feature .btier__cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btier__badge {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--ink);
  color: var(--paper);
  padding: 5px 12px;
  font-family: var(--body-en);
  font-size: 9px;
  letter-spacing: .3em;
  font-weight: 700;
}

.buy__note {
  text-align: center;
  margin-top: 64px;
  font-size: 13px;
  color: var(--mute);
  letter-spacing: .04em;
}
.buy__note a { color: var(--magenta); border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* ============================================================
   COMPANY PAGE
   ============================================================ */
.cstate__corner {
  position: absolute;
  bottom: 40px; right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .8;
}

.cfounder {
  padding: 200px var(--pad-x) 200px;
  background: var(--paper);
}
.cfounder__head {
  text-align: center;
  margin-bottom: 100px;
}
.cfounder__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 28px;
}
.cfounder__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1.15;
  letter-spacing: .04em;
}

.cfounder__body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
.cfounder__photo {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cfounder__photoinner {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: #cab9a8;
  filter: saturate(.7) contrast(1.05);
}
.cfounder__caption {
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--mute);
}

.cfounder__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cfounder__text p {
  font-family: var(--body-ja);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 2;
  color: rgba(10,10,10,.85);
}
.cfounder__lead {
  font-size: clamp(17px, 1.4vw, 21px) !important;
  line-height: 2;
}
.dropcap {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(56px, 5vw, 80px);
  line-height: 1;
  color: var(--magenta);
  float: left;
  padding-right: 12px;
  padding-top: 4px;
  margin-top: -8px;
}
.cfounder__sign {
  font-family: var(--display-en) !important;
  font-style: italic;
  color: var(--magenta) !important;
  font-size: 18px !important;
  margin-top: 16px;
}

.cnum {
  padding: 200px var(--pad-x) 200px;
  background: var(--ink);
  color: var(--paper);
}
.cnum__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 96px;
}
.cnum__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--neon);
}
.cnum__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1.1;
  letter-spacing: .04em;
}

.cnum__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cnumcard {
  border-top: 1px solid rgba(255,252,250,.3);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .35s var(--ease);
}
.cnumcard:hover { border-color: var(--neon); }
.cnumcard__n {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(64px, 7vw, 120px);
  line-height: .9;
  color: var(--neon);
  letter-spacing: -.04em;
}
.cnumcard__l {
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .65;
}
.cnumcard__d {
  font-size: 14px;
  line-height: 1.85;
  margin-top: 8px;
  opacity: .85;
}

.cservicelink {
  padding: 200px var(--pad-x);
  background: var(--shell);
  text-align: center;
}
.cservicelink__inner { max-width: 900px; margin: 0 auto; }
.cservicelink__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 28px;
}
.cservicelink__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.15;
  letter-spacing: .04em;
  margin-bottom: 32px;
}
.cservicelink__lead {
  font-family: var(--body-ja);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.95;
  max-width: 56ch;
  margin: 0 auto 48px;
  color: rgba(10,10,10,.8);
}
.cservicelink__cta {
  display: inline-block;
  font-family: var(--display-en);
  font-style: italic;
  font-size: 24px;
  color: var(--magenta);
  border-bottom: 1px solid var(--magenta);
  padding-bottom: 4px;
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.cservicelink__cta:hover { transform: translateX(8px); color: var(--neon); border-color: var(--neon); }

.ccontact {
  padding: 200px var(--pad-x);
  background: var(--paper);
}
.ccontact__inner { max-width: 1100px; margin: 0 auto; }
.ccontact__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 28px;
}
.ccontact__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 1;
  letter-spacing: .04em;
  margin-bottom: 96px;
}
.ccontact__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}
.ccontact__info > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.ccontact__info dt {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--mute);
  padding-top: 4px;
}
.ccontact__info dd {
  font-family: var(--display-en);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
}
.ccontact__info dd a {
  color: var(--magenta);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.ccontact__cta {
  display: inline-block;
  background: var(--magenta);
  color: var(--paper);
  padding: 24px 56px;
  font-family: var(--body-en);
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.ccontact__cta:hover { background: var(--neon); transform: translateY(-3px); }

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.shero {
  position: relative;
  min-height: 100vh;
  padding: 200px var(--pad-x) 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.shero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.shero__bigword {
  position: absolute;
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: 32vw;
  line-height: .85;
  letter-spacing: -.04em;
  color: rgba(229,0,109,.08);
  white-space: nowrap;
  top: 50%; left: -10%;
  transform: translateY(-50%);
  animation: shero1 30s linear infinite;
}
.shero__bigword--two {
  top: auto; bottom: -10%;
  left: auto; right: -10%;
  color: rgba(255,45,135,.06);
  animation: shero2 36s linear infinite;
  transform: none;
}
@keyframes shero1 {
  from { transform: translateY(-50%) translateX(0); }
  to   { transform: translateY(-50%) translateX(-30%); }
}
@keyframes shero2 {
  from { transform: translateX(0); }
  to   { transform: translateX(30%); }
}
.shero__supra {
  position: relative;
  z-index: 2;
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 40px;
}
.shero__title {
  position: relative;
  z-index: 2;
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 1.05;
  letter-spacing: .04em;
  margin-bottom: 56px;
}
.shero__line { display: block; }
.shero__line--accent {
  color: var(--neon);
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
}
.shero__lead {
  position: relative;
  z-index: 2;
  font-family: var(--body-ja);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.95;
  max-width: 60ch;
  opacity: .85;
  margin-bottom: 56px;
}
.shero__cta {
  position: relative;
  z-index: 2;
  display: inline-block;
  border: 1px solid var(--paper);
  color: var(--paper);
  padding: 22px 56px;
  font-family: var(--body-en);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  width: max-content;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.shero__cta:hover { background: var(--neon); border-color: var(--neon); color: var(--paper); transform: translateY(-3px); }

/* Axes */
.saxes {
  padding: 200px var(--pad-x);
  background: var(--paper);
}
.saxes__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 120px;
}
.saxes__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
}
.saxes__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1.05;
  letter-spacing: .04em;
}

.saxes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.axis {
  padding: 48px 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.axis:hover { transform: translateY(-6px); border-color: var(--magenta); }
.axis--feature {
  background: var(--magenta);
  color: var(--paper);
  border-color: var(--magenta);
  transform: translateY(-12px);
}
.axis--feature:hover { background: var(--neon); border-color: var(--neon); transform: translateY(-18px); }

.axis__num {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(48px, 4vw, 64px);
  line-height: 1;
  color: var(--magenta);
}
.axis--feature .axis__num { color: var(--paper); opacity: .85; }
.axis__name {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.2;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.axis__en {
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 16px;
}
.axis--feature .axis__en { color: rgba(255,252,250,.7); }
.axis__body {
  font-family: var(--body-ja);
  font-size: 14px;
  line-height: 1.95;
  color: rgba(10,10,10,.8);
  margin-bottom: 16px;
}
.axis--feature .axis__body { color: rgba(255,252,250,.9); }
.axis__list {
  list-style: none;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.axis--feature .axis__list { border-color: rgba(255,252,250,.25); }
.axis__list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(10,10,10,.85);
}
.axis--feature .axis__list li { color: var(--paper); }
.axis__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 1px;
  background: var(--magenta);
}
.axis--feature .axis__list li::before { background: var(--paper); }

/* Process */
.sproc {
  padding: 200px var(--pad-x);
  background: var(--shell);
}
.sproc__head {
  text-align: center;
  margin-bottom: 96px;
}
.sproc__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 24px;
}
.sproc__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1.1;
  letter-spacing: .04em;
}

.sproc__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pstep {
  background: var(--paper);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform .35s var(--ease);
}
.pstep:hover { transform: translateY(-6px); }
.pstep__num {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(56px, 5vw, 80px);
  line-height: .9;
  color: var(--magenta);
  letter-spacing: -.04em;
}
.pstep__head {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: .02em;
  margin-top: 4px;
}
.pstep__sub {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}
.pstep__body {
  font-family: var(--body-ja);
  font-size: 13px;
  line-height: 1.9;
  color: rgba(10,10,10,.8);
}

/* Case */
.scase {
  padding: 200px var(--pad-x);
  background: var(--paper);
}
.scase__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 96px;
}
.scase__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
}
.scase__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1.1;
  letter-spacing: .04em;
}

.scase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.ccard {
  padding: 40px 32px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.ccard:hover { transform: translateY(-6px); background: var(--magenta); }
.ccard__cat {
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--neon);
}
.ccard:hover .ccard__cat { color: var(--paper); opacity: .85; }
.ccard__quote {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.5;
  letter-spacing: .04em;
}
.ccard__quote span {
  color: var(--neon);
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  margin: 0 2px;
}
.ccard:hover .ccard__quote span { color: var(--paper); }
.ccard__body {
  font-family: var(--body-ja);
  font-size: 13px;
  line-height: 1.9;
  opacity: .85;
}
.ccard__sig {
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .6;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,252,250,.15);
}
.ccard:hover .ccard__sig { border-color: rgba(255,252,250,.3); }
.scase__note {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--mute);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* CTA */
.scta {
  padding: 200px var(--pad-x);
  background: var(--magenta);
  color: var(--paper);
  text-align: center;
}
.scta__inner { max-width: 1100px; margin: 0 auto; }
.scta__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: .85;
}
.scta__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 1.05;
  letter-spacing: .04em;
  margin-bottom: 40px;
}
.scta__lead {
  font-family: var(--display-ja);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.85;
  margin-bottom: 56px;
  opacity: .9;
}
.scta__row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.scta__cta {
  display: inline-block;
  background: var(--paper);
  color: var(--magenta);
  padding: 22px 56px;
  font-family: var(--body-en);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.scta__cta:hover { background: var(--ink); color: var(--paper); transform: translateY(-3px); }
.scta__link {
  font-family: var(--display-en);
  font-style: italic;
  font-size: 20px;
  color: var(--paper);
  border-bottom: 1px solid var(--paper);
  padding-bottom: 2px;
  transition: transform .3s var(--ease);
}
.scta__link:hover { transform: translateX(6px); }
.scta__addr {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .75;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.fhero {
  padding: 200px var(--pad-x) 140px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.fhero__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 32px;
}
.fhero__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 1.1;
  letter-spacing: .04em;
  margin-bottom: 48px;
}
.fhero__lead {
  font-family: var(--body-ja);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.95;
  max-width: 56ch;
  margin-bottom: 64px;
  color: rgba(10,10,10,.8);
}
.fhero__lead a { color: var(--magenta); border-bottom: 1px solid currentColor; padding-bottom: 1px; }

.fhero__index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
}
.fhero__index a {
  padding: 20px 12px 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--body-en);
  font-size: 12px;
  letter-spacing: .15em;
  font-weight: 500;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.fhero__index a:hover { color: var(--magenta); padding-left: 8px; }

.fcat {
  padding: 140px var(--pad-x);
  background: var(--paper);
}
.fcat--alt { background: var(--shell); }
.fcat__head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}
.fcat__num {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(56px, 5vw, 80px);
  line-height: 1;
  color: var(--magenta);
}
.fcat__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: .04em;
  text-align: right;
}
.fcat__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1200px;
}
.qa {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.qa summary {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 24px;
  padding: 28px 0;
  align-items: center;
  cursor: pointer;
  transition: color .3s var(--ease);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: '+';
  font-family: var(--display-en);
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  color: var(--magenta);
  transition: transform .35s var(--ease);
  text-align: center;
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa summary:hover { color: var(--magenta); }
.qa__q {
  font-family: var(--display-ja);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  letter-spacing: .04em;
  font-weight: 500;
}
.qa__a {
  padding: 0 64px 32px 0;
  max-width: 70ch;
}
.qa__a p {
  font-family: var(--body-ja);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.95;
  color: rgba(10,10,10,.78);
}
.qa__a p + p { margin-top: 14px; }
.qa__a a { color: var(--magenta); border-bottom: 1px solid currentColor; padding-bottom: 1px; }

.fmore {
  background: var(--ink);
  color: var(--paper);
  padding: 200px var(--pad-x);
  text-align: center;
}
.fmore__inner { max-width: 900px; margin: 0 auto; }
.fmore__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 32px;
}
.fmore__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.15;
  letter-spacing: .04em;
  margin-bottom: 32px;
}
.fmore__lead {
  font-family: var(--body-ja);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.95;
  opacity: .85;
  margin-bottom: 48px;
}
.fmore__cta {
  display: inline-block;
  background: var(--magenta);
  color: var(--paper);
  padding: 22px 56px;
  font-family: var(--body-en);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.fmore__cta:hover { background: var(--neon); transform: translateY(-3px); }

/* ============================================================
   VOICE INDIVIDUAL PAGE
   ============================================================ */
.vhero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--shell);
  overflow: hidden;
}
.vhero__photo {
  position: relative;
  background-size: cover;
  background-position: center;
  filter: saturate(.7) contrast(1.05);
}
.vhero__copy {
  padding: 140px var(--pad-x) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vhero__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 24px;
}
.vhero__quote {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 88px);
  line-height: 1.2;
  letter-spacing: .04em;
  margin-bottom: 40px;
  color: var(--ink);
}
.vhero__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--ink);
  padding-top: 20px;
  max-width: 320px;
}
.vhero__name {
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
}
.vhero__role {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--mute);
}

.vbody {
  padding: 200px var(--pad-x) 200px;
  background: var(--paper);
}
.vbody__inner {
  max-width: 760px;
  margin: 0 auto;
}
.vbody__chapter {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
}
.vbody__h {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.4;
  letter-spacing: .04em;
  margin: 56px 0 20px;
}
.vbody__h:first-of-type { margin-top: 0; }
.vbody p {
  font-family: var(--body-ja);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 2.05;
  color: rgba(10,10,10,.85);
  margin-bottom: 16px;
}
.vbody__pullquote {
  font-family: var(--display-ja);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .04em;
  color: var(--magenta);
  border-top: 1px solid var(--magenta);
  border-bottom: 1px solid var(--magenta);
  padding: 32px 0;
  margin: 56px 0;
  text-align: center;
}

.vgallery {
  padding: 0 var(--pad-x) 200px;
  background: var(--paper);
  max-width: 1400px;
  margin: 0 auto;
}
.vgallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vgallery__item {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: #d0bfae;
  filter: saturate(.75);
  transition: transform .5s var(--ease);
}
.vgallery__item:hover { transform: scale(1.02); }
.vgallery__item--tall { aspect-ratio: 3 / 5; }
.vgallery__item--wide { aspect-ratio: 16 / 10; grid-column: span 2; }

.vnav {
  padding: 200px var(--pad-x);
  background: var(--ink);
  color: var(--paper);
}
.vnav__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.vnav__prev, .vnav__next {
  padding: 40px 32px;
  border: 1px solid rgba(255,252,250,.25);
  transition: background .35s var(--ease), border-color .35s var(--ease);
  text-align: left;
}
.vnav__next { text-align: right; }
.vnav__prev:hover, .vnav__next:hover { background: var(--magenta); border-color: var(--magenta); }
.vnav__dir {
  font-family: var(--body-en);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
}
.vnav__prev:hover .vnav__dir, .vnav__next:hover .vnav__dir { color: var(--paper); opacity: .85; }
.vnav__quote {
  font-family: var(--display-ja);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.4;
  letter-spacing: .04em;
}

.vcta {
  padding: 200px var(--pad-x);
  background: var(--magenta);
  color: var(--paper);
  text-align: center;
}
.vcta__inner { max-width: 900px; margin: 0 auto; }
.vcta__supra {
  font-family: var(--body-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: .85;
}
.vcta__title {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.15;
  letter-spacing: .04em;
  margin-bottom: 48px;
}
.vcta__cta {
  display: inline-block;
  background: var(--paper);
  color: var(--magenta);
  padding: 22px 56px;
  font-family: var(--body-en);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.vcta__cta:hover { background: var(--ink); color: var(--paper); transform: translateY(-3px); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.masthead__toggle {
  display: none;
  position: relative;
  z-index: 60;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 12px;
  cursor: pointer;
  justify-self: end;
}
.masthead__togglebar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  margin: 0 0 6px;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
  transform-origin: center;
}
.masthead__togglebar:last-child { margin-bottom: 0; }
.masthead__toggle.is-open .masthead__togglebar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.masthead__toggle.is-open .masthead__togglebar:nth-child(2) { opacity: 0; }
.masthead__toggle.is-open .masthead__togglebar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--magenta);
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 88px var(--pad-x) 40px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .45s var(--ease), visibility .35s var(--ease);
  overflow-y: auto;
}
.mobile-overlay.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.mobile-overlay__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  align-items: flex-start;
  justify-content: center;
}
.mobile-overlay__nav a {
  font-family: var(--display-ja);
  font-weight: 500;
  font-size: clamp(36px, 9vw, 64px);
  line-height: 1.1;
  letter-spacing: .04em;
  color: var(--paper);
  text-transform: none;
  padding: 8px 0;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .35s var(--ease), transform .45s var(--ease), color .2s var(--ease);
}
.mobile-overlay.is-open .mobile-overlay__nav a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-overlay__nav a:hover { color: var(--ink); }
.mobile-overlay__nav a.brand-script {
  font-family: var(--brand);
  font-size: clamp(48px, 12vw, 88px);
  letter-spacing: 0;
}
.mobile-overlay__nav a.masthead__cta {
  border: 1px solid var(--paper);
  padding: 8px 20px;
  border-radius: 999px;
  font-family: var(--body-en);
  font-size: 14px;
  letter-spacing: .25em;
  margin-top: 12px;
}
.mobile-overlay__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 24px;
  border-top: 1px solid rgba(255,252,250,.3);
  font-family: var(--body-en);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--paper);
  flex-wrap: wrap;
  gap: 8px;
}
.mobile-overlay__foot a { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.mobile-overlay__foot span { opacity: .7; }

/* ============================================================
   ACCESSIBILITY HELPERS
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  font-family: var(--body-en);
  font-size: 12px;
  letter-spacing: .15em;
  z-index: 200;
  text-decoration: none;
  border-radius: 4px;
}
.skip-link:focus {
  left: 8px;
}
:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 2px;
}
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 4px;
}
.masthead :focus-visible { outline-color: var(--paper); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .masthead {
    grid-template-columns: 1fr auto;
    mix-blend-mode: normal;
    color: var(--ink);
    background: rgba(255,252,250,.94);
    backdrop-filter: saturate(140%) blur(8px);
  }
  .masthead__nav { display: none; }
  .masthead__issue { display: none; }
  .masthead__toggle { display: block; }
  .masthead__toggle.is-open { color: var(--paper); }
  .story__head, .story__body, .voices__head, .note { grid-template-columns: 1fr; gap: 24px; }
  .story__lead, .story__after { grid-column: 1; }
  .product { grid-template-columns: 1fr; min-height: auto; }
  .product__sticky { position: relative; height: 70vh; }
  .product__flow { padding: 80px var(--pad-x); }
  .product__spec, .product__tiers, .voices__grid, .foot__cols { grid-template-columns: 1fr; }
  .voice--a, .voice--c { transform: none; }
  .vmodal__inner { grid-template-columns: 1fr; padding: 24px; }

  .phero__inner { grid-template-columns: 1fr; gap: 40px; }
  .phero__visual { min-height: 480px; }
  .phero__meta { grid-template-columns: 1fr 1fr; }
  .comp__head, .howto__head { grid-template-columns: 1fr; gap: 24px; }
  .comp__numbers, .howto__scenes, .buy__tiers { grid-template-columns: 1fr; gap: 24px; }
  .btier--feature { transform: none; }
  .btier--feature:hover { transform: translateY(-6px); }

  .cfounder__body { grid-template-columns: 1fr; gap: 40px; }
  .cfounder__photo { position: relative; top: 0; max-width: 480px; margin: 0 auto; }
  .voices__grid--typo { grid-template-columns: 1fr; }
  .vpost { aspect-ratio: auto; min-height: 400px; }
  .vspread__grid { grid-template-columns: 1fr; }
  .vhero--typo .vhero__ghost { font-size: 80vw; }
  .cnum__head, .saxes__head, .scase__head { grid-template-columns: 1fr; gap: 24px; }
  .cnum__grid, .saxes__grid, .sproc__track, .scase__grid { grid-template-columns: 1fr; gap: 16px; }
  .ccontact__info > div { grid-template-columns: 1fr; gap: 8px; }
  .axis--feature { transform: none; }
  .axis--feature:hover { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
