/* ─────────── Palette presets ─────────── */
:root[data-palette="shock-pink"] {
  --shock:   #FF1F8D;
  --shock-2: #FFB6D3;
  --bg:      #F4ECDC;
  --paper:   #FBF6EA;
  --ink:     #100D0B;
  --ink-mid: #4A423A;
  --ink-sub: #7A6F60;
  --rule:    #1a1614;
  --on-shock:#FFFFFF;
}
:root[data-palette="hi-vis-orange"] {
  --shock:   #FF4D00;
  --shock-2: #FFC6A8;
  --bg:      #F1EADA;
  --paper:   #FAF4E6;
  --ink:     #131110;
  --ink-mid: #4A423A;
  --ink-sub: #7A6F60;
  --rule:    #15110d;
  --on-shock:#FFF6EC;
}
:root[data-palette="acid-green"] {
  --shock:   #B6FF1F;
  --shock-2: #5C7A18;
  --bg:      #0E0E0C;
  --paper:   #181815;
  --ink:     #F3EFE3;
  --ink-mid: #BFB6A2;
  --ink-sub: #807868;
  --rule:    #F3EFE3;
  --on-shock:#0E0E0C;
}
:root[data-palette="electric-blue"] {
  --shock:   #2C3DFF;
  --shock-2: #C5C9FF;
  --bg:      #EEE8D8;
  --paper:   #F8F2E4;
  --ink:     #0B0A14;
  --ink-mid: #3D3A55;
  --ink-sub: #6E6A82;
  --rule:    #0B0A14;
  --on-shock:#F8F2E4;
}
:root[data-palette="riso-red"] {
  --shock:   #F02A1B;
  --shock-2: #F5C2BD;
  --bg:      #EFE6D4;
  --paper:   #F9F1DE;
  --ink:     #15110E;
  --ink-mid: #4A4036;
  --ink-sub: #7B7060;
  --rule:    #15110E;
  --on-shock:#F9F1DE;
}

/* ─────────── Reset ─────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color .35s ease, color .35s ease;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* ─────────── Type primitives ─────────── */
.font-mincho { font-family: 'Shippori Mincho', serif; }
.font-serif  { font-family: 'DM Serif Display', serif; }
.font-archivo{ font-family: 'Archivo', sans-serif; }
.font-black  { font-family: 'Archivo Black', 'Archivo', sans-serif; }

/* ─────────── Page frame ─────────── */
.page {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px 0 104px;
  min-height: 100vh;
}
@media (max-width: 980px) { .page { padding: 0 20px 0 70px; } }

/* Grainy paper texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
:root[data-palette="acid-green"] body::before { mix-blend-mode: screen; opacity: .25; }

/* ─────────── Top ticker ─────────── */
.ticker {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--shock);
  color: var(--on-shock);
  border-bottom: 1.5px solid var(--rule);
  overflow: hidden;
  height: 38px;
  display: flex; align-items: center;
}
.ticker__track {
  display: flex;
  gap: 36px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  padding-left: 36px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 36px; }
.ticker__track span::after {
  content: '★';
  font-size: 14px;
  opacity: .9;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─────────── Left vertical rail ─────────── */
.rail-left {
  position: fixed;
  top: 38px; bottom: 0;
  left: 0;
  width: 88px;
  z-index: 30;
  border-right: 1.5px solid var(--rule);
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center;
  padding: 24px 0;
  gap: 24px;
}
.rail-left__mark {
  width: 52px; height: 52px;
  border: 1.5px solid var(--rule);
  border-radius: 50%;
  background: var(--shock);
  color: var(--on-shock);
  display: grid; place-items: center;
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  transform: rotate(-8deg);
}
.rail-left__vert {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--ink);
  margin-top: auto;
  margin-bottom: 20px;
}
.rail-left__num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-sub);
  writing-mode: vertical-rl;
}
@media (max-width: 980px) {
  .rail-left { width: 52px; }
  .rail-left__mark { width: 36px; height: 36px; font-size: 18px; }
  .rail-left__vert { font-size: 10px; letter-spacing: 0.4em; }
}

/* ─────────── Right vertical anchor nav ─────────── */
.rail-right {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  right: 14px;
  z-index: 30;
  display: flex; flex-direction: column;
  gap: 8px;
}
.rail-right a {
  writing-mode: vertical-rl;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 14px 6px;
  border: 1.5px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  transition: background .2s, color .2s;
}
.rail-right a:hover { background: var(--shock); color: var(--on-shock); }
@media (max-width: 980px) { .rail-right { display: none; } }

/* ─────────── Top nav (inside page) ─────────── */
.topbar {
  padding-top: 64px;
  display: flex; justify-content: space-between; align-items: flex-end;
  border-bottom: 1.5px solid var(--rule);
  padding-bottom: 18px;
  margin-bottom: 64px;
  position: relative;
  z-index: 5;
}
.topbar__brand {
  display: flex; align-items: baseline; gap: 14px;
}
.topbar__brand .logo-en {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.topbar__brand .logo-en em {
  font-style: italic;
  color: var(--shock);
}
.topbar__brand .logo-ja {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--ink-mid);
}
.topbar__meta {
  display: flex; gap: 28px; align-items: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.topbar__meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--shock);
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.topbar__cta {
  border: 1.5px solid var(--rule);
  background: var(--ink);
  color: var(--bg);
  padding: 12px 22px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.topbar__cta:hover { background: var(--shock); color: var(--on-shock); }

/* ─────────── Section header (Lucano-style bilingual) ─────────── */
.sec-head {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}
.sec-head__en {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  line-height: 0.95;
  color: var(--shock);
  letter-spacing: -0.02em;
}
.sec-head__en small {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 18px;
}
.sec-head__en small::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-2px);
}
.sec-head__ja {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.sec-head__sub {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--ink-mid);
  max-width: 540px;
}
@media (max-width: 980px) {
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
  .sec-head__en { font-size: 44px; }
  .sec-head__ja { font-size: 26px; }
}

/* ─────────── Section spacing ─────────── */
section { padding: 96px 0; position: relative; }
.rule {
  height: 1.5px; background: var(--rule);
  margin: 0;
}
.rule--dashed {
  height: 1px;
  background-image: linear-gradient(to right, var(--rule) 50%, transparent 50%);
  background-size: 12px 1px;
  background-repeat: repeat-x;
}

/* ═══════════ HERO ═══════════ */
.hero {
  padding: 32px 0 80px;
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) { .hero { grid-template-columns: 1fr; min-height: auto; } }

.hero__limit-badge {
  position: absolute;
  top: 24px; right: 0;
  background: #FFD600;
  color: #100D0B;
  border: 1.5px solid var(--rule);
  padding: 14px 22px;
  transform: rotate(6deg);
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  box-shadow: 6px 6px 0 var(--rule);
  z-index: 4;
}
.hero__limit-badge::before {
  content: '●';
  margin-right: 8px;
  animation: pulse 1.4s infinite;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--shock);
}

.hero__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800;
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-wrap: pretty;
  margin-bottom: 36px;
}
.hero__title .accent {
  color: var(--shock);
  position: relative;
  display: inline-block;
}
.hero__title .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 8px;
  background: var(--shock);
  opacity: .18;
  border-radius: 4px;
}
.hero__title .stamp {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 2px 18px 6px;
  transform: rotate(-2deg) translateY(-6px);
  margin: 0 4px;
}
.hero__title .ja-l2 {
  display: block;
  font-size: 0.42em;
  font-weight: 600;
  color: var(--ink-mid);
  letter-spacing: 0.06em;
  margin-top: 28px;
  line-height: 1.7;
}

.hero__desc {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 2.1;
  color: var(--ink);
  max-width: 560px;
  margin-bottom: 44px;
}
.hero__desc p + p { margin-top: 2px; }

.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px;
  border: 1.5px solid var(--rule);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  cursor: pointer;
}
.btn--primary {
  background: var(--shock);
  color: var(--on-shock);
  box-shadow: 5px 5px 0 var(--rule);
}
.btn--primary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--rule); }
.btn--ghost {
  background: var(--paper);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn .arrow {
  width: 18px; height: 12px;
  fill: none; stroke: currentColor; stroke-width: 1.5;
}

/* Hero right column — visual stack */
.hero__visual {
  position: relative;
  min-height: 600px;
}
.hv {
  position: absolute;
  border: 1.5px solid var(--rule);
  background: var(--paper);
}
.hv--price {
  top: 12px; left: 0; right: 12px;
  padding: 24px 28px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--rule);
}
.hv--price .label {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink-mid);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hv--price .value {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
}
.hv--price .value em {
  font-style: normal;
  color: var(--shock);
  font-size: 56px;
}
.hv--price .note {
  font-size: 12px; color: var(--ink-sub);
  margin-top: 10px;
  letter-spacing: 0.05em;
}

.hv--blob {
  top: 170px; right: -20px;
  width: 340px; height: 340px;
  background: var(--shock);
  border-radius: 50%;
  border: 1.5px solid var(--rule);
  display: grid; place-items: center;
  color: var(--on-shock);
  transform: rotate(-6deg);
  z-index: 2;
  box-shadow: 8px 8px 0 var(--rule);
}
.hv--blob .num {
  font-family: 'DM Serif Display', serif;
  font-size: 220px;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.hv--blob .lab {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  margin-top: -14px;
}

.hv--stamp {
  bottom: 60px; left: 0;
  width: 220px;
  transform: rotate(-4deg);
  background: var(--paper);
  padding: 18px 22px;
  box-shadow: 4px 4px 0 var(--rule);
  z-index: 3;
}
.hv--stamp .label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--shock);
  margin-bottom: 6px;
}
.hv--stamp .text {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
}

.hv--seal {
  bottom: 0; right: 36px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--rule);
  display: grid; place-items: center;
  transform: rotate(12deg);
  z-index: 3;
}
.hv--seal svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hv--seal .center {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--shock);
  position: relative;
  z-index: 1;
}

/* Hero scroll cue */
.hero__scroll {
  position: absolute;
  left: 0; bottom: 10px;
  display: flex; align-items: center; gap: 14px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-mid);
  text-transform: uppercase;
}
.hero__scroll::before {
  content: ''; width: 60px; height: 1.5px; background: var(--ink);
}

/* ═══════════ Strip between sections (running text) ═══════════ */
.strip {
  background: var(--ink);
  color: var(--bg);
  border-top: 1.5px solid var(--rule);
  border-bottom: 1.5px solid var(--rule);
  margin: 0 -64px 0 -88px;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  z-index: 4;
}
@media (max-width: 980px) { .strip { margin: 0 -20px 0 -52px; } }
.strip__track {
  display: flex; gap: 48px;
  animation: marquee 46s linear infinite;
  white-space: nowrap;
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  letter-spacing: -0.01em;
}
.strip__track span { display: inline-flex; align-items: center; gap: 48px; }
.strip__track span::after { content: '✱'; color: var(--shock); }

/* ═══════════ OFFER grid (asymmetric sticker layout) ═══════════ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.offer-card {
  border: 1.5px solid var(--rule);
  background: var(--paper);
  padding: 36px 32px 32px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.offer-card:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--rule); }
.offer-card .num {
  position: absolute;
  top: -22px; left: 24px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--shock);
  color: var(--on-shock);
  border: 1.5px solid var(--rule);
  display: grid; place-items: center;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
}
.offer-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--rule);
}
.offer-card p {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-mid);
}
.offer-card p + p { margin-top: 8px; }
.offer-card .tag {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--shock);
  border: 1.5px solid var(--shock);
  padding: 4px 10px;
  transform: rotate(-3deg);
}
.offer-card:nth-child(1) { grid-column: span 7; }
.offer-card:nth-child(2) { grid-column: span 5; }
.offer-card:nth-child(3) { grid-column: span 5; }
.offer-card:nth-child(4) { grid-column: span 7; }
@media (max-width: 980px) { .offer-card { grid-column: span 12 !important; } }

/* ═══════════ WHY (3 big numbered blocks) ═══════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--rule);
  background: var(--paper);
}
.why-card {
  padding: 40px 32px 36px;
  border-right: 1.5px solid var(--rule);
  position: relative;
}
.why-card:last-child { border-right: none; }
.why-card .roman {
  font-family: 'DM Serif Display', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--shock);
  margin-bottom: 24px;
}
.why-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.why-card p {
  font-size: 14px; line-height: 2;
  color: var(--ink-mid);
}
.why-card p + p { margin-top: 8px; }
@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none; border-bottom: 1.5px solid var(--rule); }
  .why-card:last-child { border-bottom: none; }
}

/* ═══════════ TARGET list (big roman + content) ═══════════ */
.target {
  border-top: 1.5px solid var(--rule);
  margin-top: 16px;
}
.target__item {
  display: grid;
  grid-template-columns: 140px 1fr 200px;
  gap: 36px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1.5px solid var(--rule);
  position: relative;
}
.target__item .roman {
  font-family: 'DM Serif Display', serif;
  font-size: 96px;
  line-height: 0.9;
  color: var(--shock);
}
.target__item h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.target__item p {
  font-size: 14.5px; line-height: 2;
  color: var(--ink-mid);
}
.target__item p + p { margin-top: 6px; }
.target__item .badge {
  justify-self: end;
  border: 1.5px solid var(--rule);
  padding: 12px 18px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  background: var(--shock);
  color: var(--on-shock);
  transform: rotate(2deg);
  align-self: center;
}
.target__item:nth-child(even) .badge { transform: rotate(-3deg); background: var(--ink); color: var(--bg); }
@media (max-width: 980px) {
  .target__item { grid-template-columns: 80px 1fr; }
  .target__item .roman { font-size: 56px; }
  .target__item .badge { display: none; }
}

/* ═══════════ BENEFIT (4 sticker tags) ═══════════ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.benefit-card {
  border: 1.5px solid var(--rule);
  background: var(--paper);
  padding: 32px 32px 30px;
  position: relative;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 80px; height: 18px;
  background: var(--shock);
  border: 1.5px solid var(--rule);
}
.benefit-card .ticket {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  border: 1.5px dashed var(--ink-mid);
  padding: 6px 12px;
  margin-bottom: 18px;
  color: var(--ink);
}
.benefit-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.benefit-card p {
  font-size: 14px; line-height: 2;
  color: var(--ink-mid);
}
.benefit-card p + p { margin-top: 6px; }
@media (max-width: 980px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ═══════════ FLOW (timeline) ═══════════ */
.flow {
  margin-top: 16px;
  position: relative;
  max-width: 920px;
}
.flow__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1.5px solid var(--rule);
  align-items: center;
}
.flow__item:last-child { border-bottom: 1.5px solid var(--rule); }
.flow__num {
  font-family: 'DM Serif Display', serif;
  font-size: 96px;
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.04em;
  position: relative;
}
.flow__item h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.flow__item p:not(.flow__num) {
  font-size: 14px; line-height: 2;
  color: var(--ink-mid);
}
.flow__item p:not(.flow__num) + p:not(.flow__num) { margin-top: 4px; }
@media (max-width: 980px) {
  .flow__item { grid-template-columns: 130px 1fr; gap: 20px; padding: 36px 0; }
  .flow__num { font-size: 64px; }
  .flow__item h3 { font-size: 20px; }
}

/* ═══════════ TEAM (2 trading cards) ═══════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.team-card {
  border: 1.5px solid var(--rule);
  background: var(--paper);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.team-card__top {
  background: var(--shock);
  color: var(--on-shock);
  padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1.5px solid var(--rule);
}
.team-card__role {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
}
.team-card__id {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  line-height: 1;
}
.team-card__body { padding: 32px 28px 32px; }
.team-card__name {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.team-card__portfolio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 18px;
  border: 1.5px solid var(--rule);
  background: var(--paper);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.team-card__portfolio:hover { background: var(--shock); color: var(--on-shock); }
.team-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--rule);
}
.skills { display: flex; flex-direction: column; gap: 10px; }
.skills li {
  font-size: 13.5px; line-height: 1.7;
  color: var(--ink-mid);
  display: flex; gap: 10px;
  padding-left: 0;
}
.skills li::before {
  content: '◆';
  color: var(--shock);
  flex-shrink: 0;
  font-size: 10px;
  margin-top: 6px;
}
@media (max-width: 980px) { .team-grid { grid-template-columns: 1fr; } }

/* ═══════════ FAQ ═══════════ */
.faq {
  margin-top: 16px;
  max-width: 920px;
  border-top: 1.5px solid var(--rule);
}
.faq__item {
  border-bottom: 1.5px solid var(--rule);
  padding: 28px 0;
}
.faq__q {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 10px;
  align-items: baseline;
}
.faq__q .qmark {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: var(--shock);
  line-height: 1;
}
.faq__a {
  padding-left: 84px;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-mid);
}
.faq__a p + p { margin-top: 4px; }
@media (max-width: 980px) {
  .faq__q { grid-template-columns: 40px 1fr; gap: 12px; font-size: 16px; }
  .faq__a { padding-left: 52px; }
}

/* ═══════════ CONTACT ═══════════ */
.contact {
  margin: 0 -64px;
  background: var(--ink);
  color: var(--bg);
  padding: 96px 64px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 980px) { .contact { margin: 0 -20px; padding: 64px 20px; } }
.contact .sec-head__en { color: var(--shock); }
.contact .sec-head__en small { color: var(--bg); }
.contact .sec-head__en small::before { background: var(--bg); }
.contact .sec-head__ja { color: var(--bg); }
.contact .sec-head__sub { color: rgba(255,255,255,0.7); }

.contact__actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin: 48px 0 32px;
}
.contact .btn--primary { box-shadow: 5px 5px 0 var(--shock-2); }
.contact .btn--ghost {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg);
}
.contact .btn--ghost:hover { background: var(--bg); color: var(--ink); }
.contact__note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  padding-top: 24px;
  border-top: 1px dashed rgba(255,255,255,0.25);
  max-width: 540px;
}
.contact__note p + p { margin-top: 2px; }
.contact__big {
  position: absolute;
  right: -40px; bottom: -120px;
  font-family: 'DM Serif Display', serif;
  font-size: 380px;
  line-height: 0.85;
  color: var(--shock);
  opacity: 0.18;
  pointer-events: none;
  letter-spacing: -0.05em;
}

/* ═══════════ FOOTER ═══════════ */
footer {
  padding: 28px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-sub);
}
footer .brand {
  font-family: 'DM Serif Display', serif;
  text-transform: none;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
footer .brand em { font-style: italic; color: var(--shock); }

/* ─── Reveal animation ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* fade in initial */
@keyframes fadeUp { from{opacity:0; transform:translateY(20px)} to{opacity:1; transform:none} }
.hero > * { opacity: 0; animation: fadeUp .9s forwards; }
.hero > *:nth-child(1) { animation-delay: 0.0s; }
.hero > *:nth-child(2) { animation-delay: 0.1s; }
.hero > *:nth-child(3) { animation-delay: 0.2s; }
.hero > *:nth-child(4) { animation-delay: 0.3s; }
.hero > *:nth-child(5) { animation-delay: 0.4s; }
.hero > *:nth-child(6) { animation-delay: 0.5s; }
.hero > *:nth-child(7) { animation-delay: 0.6s; }
