/* =====================================================
   Ouka Tennis — Landing Page
   Court (default) / Pearl / Night の3トーン対応
   ===================================================== */

/* =====================================================
   Ouka Tennis — Landing Page
   Court (default) / Pearl / Night の3トーン対応
   Ouka = 桜花 のコンセプト: 咲き誇るように、伸びる。
   ===================================================== */

:root {
  /* Ouka master brand — pink/sakura accent (used sparingly) */
  --ouka-pink-deep: #B83A66;
  --ouka-pink: #CC4A72;
  --ouka-pink-mid: #D85C80;
  --ouka-pink-soft: #E8A0BC;
  --ouka-pink-petal: #F4C8D6;
  --ouka-pink-wash: #FBEDF1;

  /* Pricing — same family as display headlines, just thinner + tabular nums.
     Keeps the modern sans aesthetic consistent across the page. */
  --font-price: 'Plus Jakarta Sans', 'Noto Sans JP', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---------- LAYOUT PRIMITIVES ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* ---------- TYPOGRAPHY ---------- */
.jp { font-family: var(--font-jp); }
.num { font-family: var(--font-num); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

/* Eyebrow — the small line above titles. Bloom variant uses a sakura petal mark. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--court-400);
  box-shadow: 0 0 0 4px rgba(185,221,54,.25);
}
/* Bloom variant — replaces the green dot with a small cherry blossom */
.eyebrow.bloom { gap: 12px; }
.eyebrow.bloom::before {
  width: 16px; height: 16px;
  border-radius: 0;
  background: none;
  box-shadow: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='-50 -50 100 100' xmlns='http://www.w3.org/2000/svg'><g><g transform='rotate(0)'><path d='M 0 -8 C -10 -10 -16 -22 -12 -34 C -8 -42 -4 -44 0 -42 C 4 -44 8 -42 12 -34 C 16 -22 10 -10 0 -8 Z' fill='%23CC4A72'/></g><g transform='rotate(72)'><path d='M 0 -8 C -10 -10 -16 -22 -12 -34 C -8 -42 -4 -44 0 -42 C 4 -44 8 -42 12 -34 C 16 -22 10 -10 0 -8 Z' fill='%23D85C80'/></g><g transform='rotate(144)'><path d='M 0 -8 C -10 -10 -16 -22 -12 -34 C -8 -42 -4 -44 0 -42 C 4 -44 8 -42 12 -34 C 16 -22 10 -10 0 -8 Z' fill='%23CC4A72'/></g><g transform='rotate(216)'><path d='M 0 -8 C -10 -10 -16 -22 -12 -34 C -8 -42 -4 -44 0 -42 C 4 -44 8 -42 12 -34 C 16 -22 10 -10 0 -8 Z' fill='%23D85C80'/></g><g transform='rotate(288)'><path d='M 0 -8 C -10 -10 -16 -22 -12 -34 C -8 -42 -4 -44 0 -42 C 4 -44 8 -42 12 -34 C 16 -22 10 -10 0 -8 Z' fill='%23CC4A72'/></g><circle r='5' fill='%23F0BEA0'/></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.eyebrow.on-dark { color: var(--court-300); }
.eyebrow.on-dark::before { background: var(--court-400); }
.eyebrow.bloom.on-dark::before { background: none; }
.eyebrow.jp-style {
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: none;
  font-size: 11px;
}

h1, h2, h3, h4 { margin: 0; }

.h-display {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(44px, 6.2vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.h-display.jp {
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.h-section {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.h-section.jp {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.h-sub {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.lede {
  font-family: var(--font-jp);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 56ch;
  text-wrap: pretty;
}

.accent { color: var(--court-500); }
[data-tone="night"] .accent { color: var(--court-400); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--court-400);
  color: var(--navy-900);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 24px rgba(185,221,54,0.32);
}
.btn-primary:hover {
  background: var(--court-300);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 12px 32px rgba(185,221,54,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--surface-hover); }
.btn-ghost.on-dark {
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost.on-dark:hover { background: rgba(255,255,255,0.06); }
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }
.btn .arrow { transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 84%, transparent);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--fg);
}
.brand-mark { width: 36px; height: 36px; border-radius: 9px; }
.brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-text .l1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: var(--fg);
}
.brand-text .l2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--court-600);
  margin-top: 4px;
}
[data-tone="night"] .brand-text .l1 { color: #fff; }
[data-tone="night"] .brand-text .l2 { color: var(--court-300); }
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--fg); background: var(--surface-hover); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-login {
  font-size: 14px; font-weight: 600; color: var(--fg); text-decoration: none;
  padding: 8px 14px;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
}
@media (max-width: 520px) {
  .nav-login { display: none; }
  .nav-inner { height: 60px; }
  .school-toggle { display: flex; width: 100%; max-width: 360px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; max-width: 640px; }
.hero-en {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  text-wrap: balance;
  max-width: 48ch;
}
.hero-en em {
  font-style: normal;
  color: var(--fg);
  background: linear-gradient(180deg, transparent 60%, color-mix(in oklab, var(--court-400) 50%, transparent) 60%);
  padding: 0 2px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 18px; align-items: center;
  font-size: 12px; color: var(--fg-muted);
  margin-top: 8px;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); }
.hero-meta strong { color: var(--fg); font-weight: 700; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
  display: flex; align-items: center; justify-content: center;
}
.hero-stage {
  position: absolute; inset: 0;
  border-radius: 36px;
  background: var(--navy-900);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 40px 80px rgba(15,20,28,0.25),
    0 0 0 1px rgba(255,255,255,0.04);
}
[data-tone="pearl"] .hero-stage {
  background: linear-gradient(160deg, #FFE9DC 0%, #FCD9C3 38%, #F4BBA0 100%);
  box-shadow: 0 40px 80px rgba(216,122,62,0.18), 0 0 0 1px rgba(0,0,0,0.04);
}
[data-tone="night"] .hero-stage {
  background: radial-gradient(120% 80% at 30% 20%, #1C2430 0%, #0B1018 60%, #050810 100%);
}
.hero-stage::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--court-400) 0%, transparent 60%);
  opacity: 0.22;
  filter: blur(8px);
}
[data-tone="pearl"] .hero-stage::before { display: none; }
[data-tone="night"] .hero-stage::before { opacity: 0.32; }

/* Court lines on hero stage */
.court-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.18;
}
[data-tone="pearl"] .court-grid { opacity: 0.32; }
.court-grid svg { width: 100%; height: 100%; display: block; }

/* Floating tennis ball */
.hero-ball {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 96px;
  height: 96px;
  z-index: 4;
  animation: floatBall 7s ease-in-out infinite;
  filter: drop-shadow(0 18px 32px rgba(185,221,54,0.35));
}
@keyframes floatBall {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

/* Phone in hero */
.hero-phone {
  position: relative;
  width: 290px;
  border-radius: 38px;
  background: #0F1218;
  padding: 9px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 48px 96px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.04);
  z-index: 3;
  transform: rotate(-3deg);
}
.hero-phone-screen {
  border-radius: 30px;
  background: #F2F4F7;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #000;
  border-radius: 16px; z-index: 5;
}
.phone-status {
  position: relative;
  height: 38px;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 0 22px 6px;
  font-size: 12px; font-weight: 700; color: #151B26;
}
.phone-status .icons { display: flex; gap: 4px; align-items: center; }
.phone-status .bars { display: flex; gap: 2px; align-items: end; }
.phone-status .bars i {
  display: block; width: 3px; background: currentColor; border-radius: 1px;
}
.phone-status .bars i:nth-child(1) { height: 4px; }
.phone-status .bars i:nth-child(2) { height: 6px; }
.phone-status .bars i:nth-child(3) { height: 8px; }
.phone-status .bars i:nth-child(4) { height: 10px; }
.phone-status .bat {
  width: 22px; height: 10px; border: 1.2px solid currentColor;
  border-radius: 3px; position: relative;
}
.phone-status .bat::before {
  content: ""; position: absolute; inset: 1.2px; width: 75%;
  background: currentColor; border-radius: 1px;
}

/* Floating insight card next to phone */
.hero-insight {
  position: absolute;
  z-index: 5;
  width: 260px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 24px 48px rgba(15,20,28,0.18),
    0 0 0 1px rgba(0,0,0,0.04);
  bottom: 18%;
  left: 4%;
  transform: rotate(-2deg);
  animation: floatCard 8s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-3.5deg) translateY(-10px); }
}
.hero-insight .row { display: flex; align-items: center; gap: 10px; }
.hero-insight .mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
}
.hero-insight .mark::after {
  content: ""; width: 12px; height: 12px; border-radius: 50%;
  background: var(--court-400);
}
.hero-insight .label {
  font-family: var(--font-num);
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--court-600);
}
.hero-insight .ttl {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.45;
  color: var(--navy-900);
  margin-top: 8px;
}
.hero-insight .num-hl {
  font-family: var(--font-num);
  font-weight: 700;
  color: var(--clay-500);
}

/* Floating score chip on top */
.hero-score {
  position: absolute;
  z-index: 5;
  top: 22%;
  right: -2%;
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow:
    0 20px 40px rgba(15,20,28,0.18),
    0 0 0 1px rgba(0,0,0,0.04);
  transform: rotate(3deg);
  animation: floatChip 9s ease-in-out infinite;
}
@keyframes floatChip {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(4.5deg) translateY(-8px); }
}
.hero-score .l {
  font-family: var(--font-num);
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero-score .scores {
  display: flex; gap: 12px; margin-top: 4px; align-items: baseline;
}
.hero-score .name {
  font-family: var(--font-jp); font-weight: 700; font-size: 12px;
}
.hero-score .v {
  font-family: var(--font-num); font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em;
  color: var(--navy-900);
}
.hero-score .v.win { color: var(--court-600); }

/* ---------- TRUST BAND ---------- */
.trust {
  padding: 32px 0 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.trust-inner {
  display: flex; gap: 48px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--font-num);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  max-width: 240px;
  line-height: 1.5;
}
.trust-logos {
  display: flex; gap: 36px; align-items: center; flex-wrap: wrap;
  flex: 1; justify-content: center;
}
.trust-school {
  display: flex; align-items: center; gap: 10px;
  color: var(--fg-muted);
  opacity: 0.7;
  transition: opacity var(--dur-base) var(--ease-out);
}
.trust-school:hover { opacity: 1; color: var(--fg); }
.trust-school .crest {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  background: var(--surface-active);
  color: var(--fg);
}
.trust-school .nm {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---------- SECTION FRAME ---------- */
.section { padding: 120px 0; }
.section.compact { padding: 80px 0; }
.section.dark {
  background: var(--navy-900);
  color: #fff;
}
.section.dark .eyebrow { color: var(--court-300); }
.section.dark .lede { color: rgba(255,255,255,0.7); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}
.section-head-left { display: flex; flex-direction: column; gap: 16px; }
.section-head-right { padding-bottom: 8px; }

/* ---------- AI COACH SECTION ---------- */
.ai-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) {
  .ai-grid { grid-template-columns: 1fr; }
}
.ai-features { display: flex; flex-direction: column; gap: 4px; }
.ai-feat {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
}
.ai-feat:last-child { border-bottom: 1px solid var(--border); }
.ai-feat:hover .ai-num { color: var(--court-500); }
.ai-num {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  padding-top: 4px;
  transition: color var(--dur-base) var(--ease-out);
}
.ai-feat h3 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 6px;
}
.ai-feat h3 .en {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.ai-feat p {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin: 0;
}

/* Big AI card visual */
.ai-card-stack { position: relative; perspective: 1200px; }
.ai-card-bg {
  position: absolute; inset: 0;
  border-radius: 24px;
  background: var(--navy-900);
  box-shadow: 0 40px 80px rgba(15,20,28,0.22);
  transform: rotate(-3deg) translate(-12px, 12px);
  z-index: 1;
  opacity: 0.6;
}
.ai-card {
  position: relative;
  z-index: 2;
  background: var(--navy-900);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 40px 80px rgba(15,20,28,0.32);
  overflow: hidden;
}
.ai-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--court-400) 0%, transparent 60%);
  opacity: 0.2;
}
.ai-card-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.ai-card-head .badge {
  font-family: var(--font-num);
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(185,221,54,0.16);
  color: var(--court-300);
}
.ai-card-head .ago { font-size: 12px; color: rgba(255,255,255,0.5); }
.ai-card-title {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.ai-card-title .hl { color: var(--court-300); }
.ai-card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  margin-bottom: 20px;
}
.ai-card-stats .s {
  display: flex; flex-direction: column;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ai-card-stats .s:last-child { border-right: 0; }
.ai-card-stats .s:first-child { padding-left: 0; }
.ai-card-stats .l {
  font-family: var(--font-num);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.ai-card-stats .v {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.ai-card-stats .d { font-size: 12px; font-weight: 600; margin-top: 2px; }
.ai-card-stats .d.down { color: var(--clay-300); }
.ai-card-stats .d.up { color: var(--court-300); }
.ai-card-actions {
  display: flex; gap: 12px;
}
.ai-card-actions .btn {
  height: 40px; padding: 0 16px; font-size: 13px;
}
.ai-card-actions .btn-primary {
  background: var(--court-400); color: var(--navy-900);
  box-shadow: none;
}
.ai-card-actions .btn-ghost {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
}

/* ---------- PRACTICE MENU SECTION ---------- */
.menu-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .menu-block { grid-template-columns: 1fr; }
}
.menu-prose { display: flex; flex-direction: column; gap: 24px; max-width: 480px; }
.menu-bullets {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 12px;
}
.menu-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--font-jp); font-size: 14px; line-height: 1.6;
  color: var(--fg);
}
.menu-bullets li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--court-400);
  margin-top: 1px;
  background-image: linear-gradient(135deg, rgba(255,255,255,0) 50%, rgba(0,0,0,0.06) 50%);
  position: relative;
}

/* Menu mock — receipt-style */
.menu-mock {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(15,20,28,0.10);
  border: 1px solid var(--border);
  max-width: 520px;
  position: relative;
  margin: 0 auto;
}
.menu-mock-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-strong);
  margin-bottom: 4px;
}
.menu-mock-head .title {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.menu-mock-head .date {
  font-family: var(--font-num);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.menu-mock-head .total {
  font-family: var(--font-num);
  font-weight: 700; font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.menu-mock-head .total small {
  font-size: 12px; color: var(--fg-muted); font-weight: 600; margin-left: 3px;
}
.menu-drill {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
}
.menu-drill:last-child { border-bottom: 0; }
.menu-drill .n {
  font-family: var(--font-num);
  font-size: 11px; font-weight: 700;
  color: var(--fg-muted);
}
.menu-drill .nm {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-900);
  line-height: 1.4;
}
.menu-drill .sub {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 2px;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}
.menu-drill .min {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-900);
}
.menu-drill .min small { font-size: 10px; color: var(--fg-muted); font-weight: 600; margin-left: 2px; }
.menu-mock-foot {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--court-50);
  border-radius: 12px;
  border: 1px dashed var(--court-500);
  display: flex; gap: 12px; align-items: flex-start;
}
.menu-mock-foot .ic {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--court-400);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-num);
  font-size: 12px; font-weight: 800;
  color: var(--navy-900);
}
.menu-mock-foot .txt {
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1.55;
  color: var(--navy-900);
}

/* ---------- TEAM / COACH SECTION ---------- */
.team-mock {
  margin-top: 40px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(15,20,28,0.18);
  position: relative;
}
.team-mock-bar {
  height: 32px;
  background: var(--bg-sunken);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
}
.team-mock-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.team-mock-bar .dot:nth-child(1) { background: #FF6058; }
.team-mock-bar .dot:nth-child(2) { background: #FFBE2F; }
.team-mock-bar .dot:nth-child(3) { background: #28C944; }
.team-mock-bar .url {
  margin-left: 14px;
  font-family: var(--font-num);
  font-size: 11px; color: var(--fg-muted);
  background: #fff; padding: 3px 10px; border-radius: 4px;
  border: 1px solid var(--border);
}
.team-mock-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 540px;
}
@media (max-width: 880px) {
  .team-mock-body { grid-template-columns: 1fr; min-height: auto; }
  .team-side { display: none; }
}
.team-side {
  background: var(--navy-900);
  color: #fff;
  padding: 22px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.team-side .logo-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 22px;
  padding: 0 6px;
}
.team-side .logo-row .ball {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--court-400);
}
.team-side .logo-row .name {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.18em;
}
.team-side .nav-i {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}
.team-side .nav-i.on {
  background: rgba(185,221,54,0.14);
  color: var(--court-300);
}
.team-side .nav-i .ic {
  width: 14px; height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  opacity: 0.7;
}
.team-side .div {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: 16px 4px;
}
.team-side .meta {
  margin-top: auto;
  padding: 12px 8px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 10px; align-items: center;
}
.team-side .meta .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--court-400);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-jp); font-weight: 900; font-size: 11px;
}
.team-side .meta .nm { font-size: 11px; }
.team-side .meta .nm .x { color: rgba(255,255,255,0.5); display: block; font-size: 10px; margin-top: 1px; }

.team-main { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 20px; }
.team-h {
  display: flex; justify-content: space-between; align-items: center;
}
.team-h .ttl {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.team-h .sub { font-size: 11px; color: var(--fg-muted); margin-top: 3px; }
.team-h .ctrl {
  display: flex; gap: 6px;
}
.team-h .ctrl button {
  border: 1px solid var(--border);
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px; font-weight: 700; cursor: pointer;
  font-family: var(--font-sans);
  color: var(--fg-muted);
}
.team-h .ctrl button.on {
  background: var(--navy-900); color: #fff; border-color: var(--navy-900);
}

.team-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.team-kpi {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--bg-raised);
}
.team-kpi .l {
  font-family: var(--font-num);
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.team-kpi .v {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.team-kpi .d { font-size: 10px; font-weight: 700; margin-top: 2px; }
.team-kpi .up { color: var(--success); }
.team-kpi .down { color: var(--danger); }

.team-chart {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px 12px;
  height: 180px;
  display: flex; flex-direction: column;
  background: var(--bg-raised);
}
.team-chart .ch-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.team-chart .ch-head .l {
  font-family: var(--font-jp);
  font-weight: 700; font-size: 12px;
}
.team-chart .ch-head .leg { display: flex; gap: 10px; font-size: 10px; color: var(--fg-muted); }
.team-chart .ch-head .leg span { display: flex; align-items: center; gap: 4px; }
.team-chart .ch-head .leg .sw { width: 8px; height: 2px; border-radius: 1px; }
.team-chart .ch-body { flex: 1; position: relative; }

.team-alerts {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-raised);
  padding: 6px 0;
}
.team-alert {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  padding: 10px 16px;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
}
.team-alert:last-child { border-bottom: 0; }
.team-alert .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy-800); color: var(--court-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-jp); font-size: 11px; font-weight: 900;
}
.team-alert .m { min-width: 0; }
.team-alert .nm {
  font-family: var(--font-jp); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; gap: 8px;
}
.team-alert .tag {
  font-family: var(--font-num);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
}
.team-alert .tag.up { background: var(--success-bg); color: var(--success); }
.team-alert .tag.dn { background: var(--danger-bg); color: var(--danger); }
.team-alert .nm-sub {
  font-size: 11px; color: var(--fg-muted); margin-top: 1px;
  font-family: var(--font-jp);
}
.team-alert .a {
  font-size: 11px;
  font-weight: 700;
  color: var(--court-600);
  cursor: pointer;
  font-family: var(--font-sans);
}

/* ---------- SCREEN TOUR ---------- */
.tour-track {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 32px 60px;
  margin: 0 -32px;
  scrollbar-width: thin;
}
.tour-track::-webkit-scrollbar { height: 6px; }
.tour-track::-webkit-scrollbar-track { background: transparent; }
.tour-track::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }
.tour-card {
  flex-shrink: 0;
  width: 280px;
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 14px;
}
.tour-phone {
  border-radius: 32px;
  background: #0F1218;
  padding: 8px;
  box-shadow: 0 24px 48px rgba(15,20,28,0.18);
  aspect-ratio: 9 / 19.5;
  transition: transform var(--dur-base) var(--ease-out);
}
.tour-phone:hover { transform: translateY(-8px); }
.tour-phone-screen {
  width: 100%; height: 100%;
  border-radius: 26px;
  background: #F2F4F7;
  overflow: hidden;
  position: relative;
}
.tour-cap {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 4px;
}
.tour-cap .n {
  font-family: var(--font-num);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--court-600);
  text-transform: uppercase;
}
.tour-cap .t {
  font-family: var(--font-jp);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.tour-cap .s {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-top: 2px;
}

/* ---------- STATS BAND (broadcast) ---------- */
.stats {
  padding: 96px 0;
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
.stat {
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 8px;
}
.stat:last-child { border-right: 0; }
@media (max-width: 880px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
.stat .l {
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--court-300);
}
.stat .v {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat .v small {
  font-size: 0.45em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-left: 2px;
}
.stat .d {
  font-family: var(--font-jp);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}
@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.plan {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(15,20,28,0.10); }
.plan.featured {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
  box-shadow: 0 24px 60px rgba(15,20,28,0.20);
}
.plan.featured::before {
  content: "";
  position: absolute;
  top: -90px; right: -90px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--court-400) 0%, transparent 60%);
  opacity: 0.16;
}
.plan-head { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; position: relative; }
.plan-tag {
  position: absolute;
  top: -44px;
  right: -8px;
  background: var(--court-400);
  color: var(--navy-900);
  font-family: var(--font-num);
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.plan-name {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.plan-for { font-size: 13px; color: var(--fg-muted); }
.plan.featured .plan-for { color: rgba(255,255,255,0.6); }
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  margin: 22px 0 6px;
}
.plan-price .n {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.plan-price .u { font-size: 14px; color: var(--fg-muted); font-weight: 600; }
.plan.featured .plan-price .u { color: rgba(255,255,255,0.7); }
.plan-note { font-size: 12px; color: var(--fg-muted); }
.plan.featured .plan-note { color: rgba(255,255,255,0.6); }
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0 18px;
}
.plan.featured .plan-divider { background: rgba(255,255,255,0.1); }
.plan-feats { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan-feat {
  display: flex; gap: 10px; align-items: flex-start;
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.5;
}
.plan-feat .ck {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--court-100);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.plan-feat .ck::after {
  content: "";
  width: 7px; height: 4px;
  border-left: 1.6px solid var(--court-700);
  border-bottom: 1.6px solid var(--court-700);
  transform: rotate(-45deg) translateY(-1px);
}
.plan.featured .plan-feat .ck { background: rgba(185,221,54,0.16); }
.plan.featured .plan-feat .ck::after { border-color: var(--court-300); }
.plan-feat.x .ck {
  background: var(--bg-sunken);
}
.plan-feat.x .ck::after {
  width: 6px; height: 6px;
  border: 0;
  border-radius: 50%;
  background: var(--chalk-400);
  transform: none;
}
/* Plan feature wrapping — keep Japanese phrases together, allow soft wrap */
.plan-feat .jp {
  word-break: keep-all;
  line-break: strict;
  text-wrap: pretty;
}
.plan .btn { width: 100%; justify-content: center; margin-top: 24px; }

/* ---------- TESTIMONIALS ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}
@media (max-width: 880px) {
  .testi-grid { grid-template-columns: 1fr; }
}
.testi {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.testi.dark { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.testi .quote {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}
.testi.dark .quote .hl { color: var(--court-300); }
.testi.light .quote .hl {
  background: linear-gradient(180deg, transparent 65%, color-mix(in oklab, var(--court-400) 50%, transparent) 65%);
  padding: 0 2px;
}
.testi .who {
  display: flex; gap: 12px; align-items: center;
  margin-top: auto;
}
.testi .who .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--court-400);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-jp); font-weight: 900; font-size: 14px;
}
.testi.dark .who .av { background: var(--court-400); color: var(--navy-900); }
.testi .who .nm { font-size: 13px; font-weight: 700; font-family: var(--font-jp); }
.testi .who .org { font-size: 11px; color: var(--fg-muted); margin-top: 2px; }
.testi.dark .who .org { color: rgba(255,255,255,0.5); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 880px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none; border: 0; padding: 22px 0;
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  gap: 16px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: var(--fg);
}
.faq-q .n {
  font-family: var(--font-num);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.faq-q .t {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.faq-q .x {
  width: 24px; height: 24px;
  position: relative;
}
.faq-q .x::before, .faq-q .x::after {
  content: ""; position: absolute;
  background: var(--fg);
  border-radius: 1px;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-q .x::before {
  top: 11px; left: 4px; right: 4px; height: 2px;
}
.faq-q .x::after {
  left: 11px; top: 4px; bottom: 4px; width: 2px;
}
.faq-item.open .faq-q .x::after { transform: rotate(90deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-in-out);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
}
.faq-a-text {
  padding: 0 0 22px 48px;
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 64ch;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  padding: 96px 0;
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -120px; left: -60px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--court-400) 0%, transparent 60%);
  opacity: 0.18;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -160px; right: -100px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--court-400) 0%, transparent 70%);
  opacity: 0.08;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
@media (max-width: 880px) {
  .cta-grid { grid-template-columns: 1fr; }
}
.cta-copy { display: flex; flex-direction: column; gap: 22px; }
.cta-copy h2 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.cta-copy .lede { color: rgba(255,255,255,0.7); max-width: 48ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  color: var(--navy-900);
  padding: 0 20px;
  height: 56px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: transform var(--dur-fast) var(--ease-out);
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn .glyph {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
}
.store-btn .l1 { font-size: 10px; opacity: 0.7; letter-spacing: 0.08em; }
.store-btn .l2 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-top: -2px; }

.cta-qr {
  background: #fff;
  color: var(--navy-900);
  border-radius: 20px;
  padding: 22px;
  display: flex; gap: 16px; align-items: center;
}
.cta-qr .qr-img {
  width: 110px; height: 110px; flex-shrink: 0;
}
.cta-qr .qr-img svg { display: block; width: 100%; height: 100%; }
.cta-qr .qr-txt h4 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.cta-qr .qr-txt p {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.55;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 64px 0 40px;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand p {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 36ch;
  margin: 16px 0 0;
}
.footer-col h5 {
  font-family: var(--font-num);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--fg);
  text-decoration: none;
}
.footer-col a:hover { color: var(--court-600); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--font-num);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ---------- IN-PHONE MINI APP MOCKS ---------- */
/* Used inside hero-phone, tour-cards */
.mini { padding: 0 18px 18px; display: flex; flex-direction: column; gap: 14px; }
.mini h2 {
  font-family: var(--font-jp);
  font-weight: 900; font-size: 22px;
  margin-top: 6px;
  color: #151B26;
  letter-spacing: -0.025em;
}
.mini .greet { font-size: 11px; color: #6B7383; letter-spacing: 0.04em; }
.mini-ai {
  background: #1C2430;
  color: #fff;
  border-radius: 18px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.mini-ai::before {
  content: ""; position: absolute; top: -60px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, #B9DD36 0%, transparent 65%);
  opacity: 0.16;
}
.mini-ai .top {
  display: flex; gap: 8px; align-items: center; font-size: 9px;
  font-family: var(--font-num);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C4E55A;
  font-weight: 700;
}
.mini-ai .top::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #B9DD36;
}
.mini-ai .ttl {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.mini-ai .ttl em {
  font-style: normal;
  color: #D87A3E;
  font-family: var(--font-num);
  font-weight: 700;
}
.mini-ai .body {
  font-family: var(--font-jp);
  font-size: 11px; line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}
.mini-ai .acts { display: flex; gap: 8px; margin-top: 10px; }
.mini-ai .acts .a {
  font-size: 10px; font-weight: 700;
  padding: 6px 10px; border-radius: 999px;
}
.mini-ai .acts .a.p { background: #B9DD36; color: #151B26; }
.mini-ai .acts .a.s { background: rgba(255,255,255,0.08); color: #fff; }

.mini-kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.mini-kpi {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid #EEF0F4;
}
.mini-kpi .l {
  font-family: var(--font-num);
  font-size: 8px; letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6B7383;
}
.mini-kpi .v {
  font-family: var(--font-num);
  font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em;
  color: #151B26;
  margin-top: 1px;
}
.mini-kpi .d { font-size: 9px; font-weight: 700; margin-top: 1px; }
.mini-kpi .d.up { color: #21A26B; }
.mini-kpi .d.down { color: #D64545; }

/* ---------- COURT-LINE SVG MOTIF (subtle bg) ---------- */
.bg-ball {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }

/* ============================================================
   TONES — Pearl
   ============================================================ */
[data-tone="pearl"] {
  --bg: #FAF6F0;
  --bg-raised: #FFFFFF;
  --bg-sunken: #F4ECE0;
  --fg: #1E1A1F;
  --fg-muted: #6E5B62;
  --border: #EBDFD0;
  --border-strong: #D9C8B5;
  --court-400: #C4E030;
  --court-500: #A2C428;
  --court-600: #86A41E;
  --court-700: #657C18;
  --court-100: #EBF5C3;
  --court-50: #F6FADF;
}
[data-tone="pearl"] .section.dark { background: #1E1A1F; }
[data-tone="pearl"] .stats { background: #1E1A1F; }
[data-tone="pearl"] .cta-band { background: linear-gradient(140deg, #2A1F26 0%, #1E1A1F 100%); }
[data-tone="pearl"] .ai-card { background: #1E1A1F; }
[data-tone="pearl"] .ai-card-bg { background: #1E1A1F; }
[data-tone="pearl"] .plan.featured { background: #1E1A1F; border-color: #1E1A1F; }
[data-tone="pearl"] .testi.dark { background: #1E1A1F; border-color: #1E1A1F; }
[data-tone="pearl"] .team-side { background: #1E1A1F; }
[data-tone="pearl"] .hero-stage {
  background: linear-gradient(160deg, #FFF1E2 0%, #FAD9C0 38%, #F2BA9C 100%);
}
[data-tone="pearl"] .court-grid { opacity: 0.4; }
[data-tone="pearl"] .court-grid svg path,
[data-tone="pearl"] .court-grid svg line,
[data-tone="pearl"] .court-grid svg rect:not(:first-child) {
  stroke: #B96B40 !important;
}

/* Cherry-blossom petal sprinkle for Pearl (subtle echo of master Ouka brand) */
[data-tone="pearl"] .hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(204,74,114,0.16) 0, transparent 5px),
    radial-gradient(circle at 78% 18%, rgba(204,74,114,0.10) 0, transparent 7px),
    radial-gradient(circle at 22% 78%, rgba(204,74,114,0.12) 0, transparent 6px),
    radial-gradient(circle at 88% 76%, rgba(204,74,114,0.14) 0, transparent 5px),
    radial-gradient(circle at 50% 60%, rgba(204,74,114,0.08) 0, transparent 8px);
  pointer-events: none;
}

/* ============================================================
   TONES — Night
   ============================================================ */
[data-tone="night"] {
  --bg: #07090E;
  --bg-raised: #0F141C;
  --bg-sunken: #050810;
  --fg: #F2F4F7;
  --fg-muted: #8E96A6;
  --border: #1A2030;
  --border-strong: #232B3D;
  --surface: #0F141C;
  --surface-hover: #151B26;
  --surface-active: #1C2430;
}
[data-tone="night"] body { background: #07090E; color: #F2F4F7; }
[data-tone="night"] .section.dark { background: #0F141C; }
[data-tone="night"] .stats { background: #0B0F18; }
[data-tone="night"] .cta-band { background: #0B0F18; }
[data-tone="night"] .nav { background: rgba(7,9,14,0.78); border-bottom-color: rgba(255,255,255,0.06); }
[data-tone="night"] .nav-links a { color: rgba(255,255,255,0.55); }
[data-tone="night"] .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
[data-tone="night"] .nav-login { color: #fff; }
[data-tone="night"] .trust {
  background: #0F141C; border-color: rgba(255,255,255,0.06);
}
[data-tone="night"] .trust-school .crest { background: #1A2030; color: #fff; }
[data-tone="night"] .trust-school .nm { color: rgba(255,255,255,0.6); }

[data-tone="night"] .menu-mock {
  background: #0F141C;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
[data-tone="night"] .menu-mock-head .title,
[data-tone="night"] .menu-mock-head .total,
[data-tone="night"] .menu-drill .nm,
[data-tone="night"] .menu-drill .min { color: #fff; }
[data-tone="night"] .menu-mock-head { border-bottom-color: rgba(255,255,255,0.12); }
[data-tone="night"] .menu-drill { border-bottom-color: rgba(255,255,255,0.06); }
[data-tone="night"] .menu-mock-foot {
  background: rgba(185,221,54,0.10);
  border-color: rgba(185,221,54,0.32);
}
[data-tone="night"] .menu-mock-foot .txt { color: #fff; }

[data-tone="night"] .team-mock {
  background: #0F141C; border-color: rgba(255,255,255,0.08);
}
[data-tone="night"] .team-mock-bar { background: #07090E; border-bottom-color: rgba(255,255,255,0.06); }
[data-tone="night"] .team-mock-bar .url { background: #0F141C; color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.1); }
[data-tone="night"] .team-kpi {
  background: #0F141C; border-color: rgba(255,255,255,0.08); color: #fff;
}
[data-tone="night"] .team-kpi .l { color: rgba(255,255,255,0.5); }
[data-tone="night"] .team-chart { background: #0F141C; border-color: rgba(255,255,255,0.08); }
[data-tone="night"] .team-chart .ch-head .l { color: #fff; }
[data-tone="night"] .team-alerts { background: #0F141C; border-color: rgba(255,255,255,0.08); }
[data-tone="night"] .team-alert { border-bottom-color: rgba(255,255,255,0.06); color: #fff; }
[data-tone="night"] .team-h .ctrl button { background: #0F141C; border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); }
[data-tone="night"] .team-h .ctrl button.on { background: var(--court-400); color: var(--navy-900); border-color: var(--court-400); }

[data-tone="night"] .plan { background: #0F141C; border-color: rgba(255,255,255,0.08); color: #fff; }
[data-tone="night"] .plan-for { color: rgba(255,255,255,0.6); }
[data-tone="night"] .plan-note { color: rgba(255,255,255,0.5); }
[data-tone="night"] .plan-divider { background: rgba(255,255,255,0.08); }
[data-tone="night"] .plan.featured { background: linear-gradient(135deg, #B9DD36 0%, #86A41E 100%); border-color: transparent; color: var(--navy-900); }
[data-tone="night"] .plan.featured .plan-for,
[data-tone="night"] .plan.featured .plan-note { color: rgba(15,20,28,0.7); }
[data-tone="night"] .plan.featured .plan-feat .ck { background: rgba(15,20,28,0.16); }
[data-tone="night"] .plan.featured .plan-feat .ck::after { border-color: var(--navy-900); }
[data-tone="night"] .plan.featured::before { display: none; }
[data-tone="night"] .plan.featured .plan-divider { background: rgba(15,20,28,0.18); }
[data-tone="night"] .plan.featured .btn-primary { background: var(--navy-900); color: var(--court-400); }

[data-tone="night"] .testi { background: #0F141C; border-color: rgba(255,255,255,0.08); }
[data-tone="night"] .testi .who .org { color: rgba(255,255,255,0.5); }
[data-tone="night"] .testi.dark { background: #050810; }
[data-tone="night"] .testi.light .quote .hl {
  background: linear-gradient(180deg, transparent 65%, rgba(185,221,54,0.4) 65%);
}

[data-tone="night"] .faq-item, [data-tone="night"] .faq-item:first-child {
  border-color: rgba(255,255,255,0.08);
}
[data-tone="night"] .faq-q .x::before, [data-tone="night"] .faq-q .x::after { background: #fff; }

[data-tone="night"] .footer { background: #0B0F18; border-color: rgba(255,255,255,0.06); }
[data-tone="night"] .footer-col a { color: rgba(255,255,255,0.85); }
[data-tone="night"] .footer-bottom { border-color: rgba(255,255,255,0.06); }

[data-tone="night"] .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.16); }
[data-tone="night"] .btn-ghost:hover { background: rgba(255,255,255,0.05); }

[data-tone="night"] .hero-insight { background: #0F141C; border: 1px solid rgba(255,255,255,0.08); }
[data-tone="night"] .hero-insight .ttl { color: #fff; }
[data-tone="night"] .hero-score { background: #0F141C; border: 1px solid rgba(255,255,255,0.08); }
[data-tone="night"] .hero-score .v { color: #fff; }
[data-tone="night"] .hero-score .name { color: rgba(255,255,255,0.7); }
[data-tone="night"] .store-btn { background: rgba(255,255,255,0.06); color: #fff; }
[data-tone="night"] .cta-qr { background: #fff; }

/* Subtle neon glow for primary CTAs in Night */
[data-tone="night"] .btn-primary {
  box-shadow:
    0 0 0 1px rgba(185,221,54,0.4),
    0 0 24px rgba(185,221,54,0.3),
    0 12px 32px rgba(185,221,54,0.25);
}

/* ============================================================
   OUKA = 桜花 — Cherry blossom motifs
   ============================================================ */

/* Poetic kicker line — JP only, sits between headline and lede */
.bloom-kicker {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.75;
  color: var(--fg);
  letter-spacing: 0.02em;
  max-width: 38ch;
  position: relative;
  padding-left: 18px;
}
.bloom-kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--ouka-pink-soft) 0%, var(--court-400) 100%);
  border-radius: 2px;
}
.bloom-kicker em {
  font-style: normal;
  color: var(--ouka-pink);
  font-weight: 700;
}
[data-tone="night"] .bloom-kicker { color: rgba(255,255,255,0.85); }
[data-tone="night"] .bloom-kicker em { color: var(--ouka-pink-soft); }

/* Falling petals layer — sits inside hero-stage and other dark sections */
.petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.petal {
  position: absolute;
  width: 22px; height: 26px;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 36' xmlns='http://www.w3.org/2000/svg'><path d='M15 2 C7 5 3 14 4 22 C5 28 9 33 15 34 C13 30 14 28 15 28 C16 28 17 30 15 34 C21 33 25 28 26 22 C27 14 23 5 15 2 Z' fill='%23F4C8D6'/><path d='M15 2 C9 4 5 12 6 20 C7 26 10 31 15 32' fill='none' stroke='%23E8A0BC' stroke-width='0.8' opacity='0.6'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  animation: petalFall 14s linear infinite;
  filter: drop-shadow(0 2px 4px rgba(204,74,114,0.25));
}
.petal.p2 { background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 36' xmlns='http://www.w3.org/2000/svg'><path d='M15 2 C7 5 3 14 4 22 C5 28 9 33 15 34 C13 30 14 28 15 28 C16 28 17 30 15 34 C21 33 25 28 26 22 C27 14 23 5 15 2 Z' fill='%23E8A0BC'/></svg>"); }
.petal.p3 { background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 36' xmlns='http://www.w3.org/2000/svg'><path d='M15 2 C7 5 3 14 4 22 C5 28 9 33 15 34 C13 30 14 28 15 28 C16 28 17 30 15 34 C21 33 25 28 26 22 C27 14 23 5 15 2 Z' fill='%23FBEDF1'/></svg>"); }
.petal:nth-child(1)  { left:  6%; top: -8%; animation-delay: 0s;    animation-duration: 11s; width: 18px; height: 22px; }
.petal:nth-child(2)  { left: 20%; top: -8%; animation-delay: -2s;   animation-duration: 13s; width: 26px; height: 32px; }
.petal:nth-child(3)  { left: 36%; top: -8%; animation-delay: -5s;   animation-duration: 10s; }
.petal:nth-child(4)  { left: 52%; top: -8%; animation-delay: -8s;   animation-duration: 12s; width: 16px; height: 20px; }
.petal:nth-child(5)  { left: 66%; top: -8%; animation-delay: -1.5s; animation-duration: 14s; width: 24px; height: 28px;}
.petal:nth-child(6)  { left: 80%; top: -8%; animation-delay: -6.5s; animation-duration: 11s; width: 22px; height: 26px; }
.petal:nth-child(7)  { left: 14%; top: -8%; animation-delay: -9.5s; animation-duration: 13s; width: 14px; height: 18px; }
.petal:nth-child(8)  { left: 92%; top: -8%; animation-delay: -3.5s; animation-duration: 12s; }
@keyframes petalFall {
  0%   { transform: translate3d(0, -40px, 0) rotate(0deg); opacity: 0; }
  6%   { opacity: 0.95; }
  50%  { transform: translate3d(-30px, 50vh, 0) rotate(180deg); opacity: 0.85; }
  94%  { opacity: 0.7; }
  100% { transform: translate3d(20px, 110vh, 0) rotate(360deg); opacity: 0; }
}
/* Pause petals in tweaks-off mode is handled by JS toggling .petals { display:none } */

/* Section-bloom: a faint petal scatter as section background motif */
.section-bloom-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(232,160,188,0.18) 0, transparent 36px),
    radial-gradient(circle at 88% 18%, rgba(232,160,188,0.14) 0, transparent 28px),
    radial-gradient(circle at 28% 86%, rgba(232,160,188,0.12) 0, transparent 32px),
    radial-gradient(circle at 78% 78%, rgba(232,160,188,0.16) 0, transparent 30px);
}

/* Hero — Ouka master mark, subtle "parent brand" cue. Tucked into bottom-left away from the ball */
.hero-ouka-master {
  position: absolute;
  bottom: 20px;
  left: 22px;
  z-index: 4;
  opacity: 0.85;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px 8px 8px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}
.hero-ouka-master svg { width: 22px; height: 22px; flex-shrink: 0; }
.hero-ouka-master .tag {
  font-family: var(--font-num);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  white-space: nowrap;
}
[data-tone="pearl"] .hero-ouka-master {
  background: rgba(255,255,255,0.55);
  border-color: rgba(0,0,0,0.05);
}
[data-tone="pearl"] .hero-ouka-master .tag { color: rgba(0,0,0,0.55); }

/* Trust band — replace AI-feeling kanji crests with elegant typography */
.trust { padding: 44px 0; }
.trust-inner { gap: 56px; }
.trust-label {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fg);
  line-height: 1.7;
  text-transform: none;
  max-width: 240px;
}
.trust-label .en {
  display: block;
  font-family: var(--font-num);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ouka-pink);
  margin-bottom: 8px;
}
[data-tone="night"] .trust-label .en { color: var(--ouka-pink-soft); }
[data-tone="night"] .trust-label { color: rgba(255,255,255,0.85); }

.trust-schools {
  flex: 1;
  display: flex; flex-wrap: wrap; gap: 36px 48px;
  align-items: center; justify-content: flex-end;
}
.trust-school-name {
  display: flex; flex-direction: column;
  font-family: var(--font-jp);
  color: var(--fg-muted);
  transition: color var(--dur-base) var(--ease-out);
}
.trust-school-name:hover { color: var(--fg); }
.trust-school-name .name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.trust-school-name .pref {
  font-family: var(--font-num);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-top: 4px;
}
[data-tone="night"] .trust-school-name { color: rgba(255,255,255,0.6); }
[data-tone="night"] .trust-school-name:hover { color: #fff; }
[data-tone="night"] .trust-school-name .pref { color: rgba(255,255,255,0.4); }

/* Brand-philosophy band — short poetic statement between sections */
.philosophy {
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(232,160,188,0.10) 0, transparent 180px),
    radial-gradient(circle at 78% 70%, rgba(232,160,188,0.08) 0, transparent 220px);
  pointer-events: none;
}
.philosophy .inner { position: relative; max-width: 920px; margin: 0 auto; padding: 0 32px; }
.philosophy .mark {
  width: 56px; height: 56px;
  margin: 0 auto 28px;
  opacity: 0.9;
}
.philosophy h2 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-wrap: balance;
}
.philosophy h2 .hl {
  background: linear-gradient(180deg, transparent 65%, var(--ouka-pink-petal) 65%, var(--ouka-pink-petal) 92%, transparent 92%);
  padding: 0 4px;
}
.philosophy .signature {
  margin-top: 32px;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.philosophy .signature::before, .philosophy .signature::after {
  content: "—";
  display: inline-block;
  margin: 0 12px;
  color: var(--border-strong);
}

/* Soften default trust band when used with new structure */
.trust { background: var(--bg); border-top: 0; border-bottom: 1px solid var(--border); overflow: hidden; }
[data-tone="night"] .trust { background: var(--bg); }

/* ============================================================
   RICH MOTION — entrance, parallax, marquee, draw-on
   ============================================================ */

/* Word-stagger entrance for H1 — each phrase rises and fades */
.bloom-headline {
  display: block;
  overflow: hidden;
  margin: 0;
  padding-bottom: 4px;
}
.bloom-headline .row {
  display: block;
  overflow: hidden;
  padding: 4px 0;
}
.bloom-headline .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
  animation: wordRise 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.bloom-headline .word.delay-0 { animation-delay: 0.10s; }
.bloom-headline .word.delay-1 { animation-delay: 0.20s; }
.bloom-headline .word.delay-2 { animation-delay: 0.32s; }
.bloom-headline .word.delay-3 { animation-delay: 0.45s; }
.bloom-headline .word.delay-4 { animation-delay: 0.58s; }
.bloom-headline .word.delay-5 { animation-delay: 0.70s; }
.bloom-headline .word.accent { color: var(--ouka-pink); }
[data-tone="court"] .bloom-headline .word.accent,
[data-tone="night"] .bloom-headline .word.accent,
[data-tone="pearl"] .bloom-headline .word.accent {
  color: var(--ouka-pink);
}
@keyframes wordRise {
  0%   { transform: translateY(110%); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Mouse-parallax containers — child elements move based on --mx and --my */
.hero-stage {
  --mx: 0;
  --my: 0;
  transition: --mx 0.4s var(--ease-out), --my 0.4s var(--ease-out);
}
.hero-phone {
  transform: rotate(-3deg) translate3d(calc(var(--mx) * -8px), calc(var(--my) * -6px + var(--py, 0px)), 0);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-insight {
  transform: rotate(-2deg) translate3d(calc(var(--mx) * -14px), calc(var(--my) * -10px), 0);
}
.hero-score {
  transform: rotate(3deg) translate3d(calc(var(--mx) * 16px), calc(var(--my) * 8px), 0);
}
/* Don't fight the floating animation: the keyframes override transform.
   Instead, wrap with a positioned parent and translate that. Implementing via .hero-insight + .hero-score we keep the floatChip animation by giving it lower priority — using two transforms via wrapping. */

.hero-insight, .hero-score {
  animation: none; /* we'll combine motion via parent .float-wrap */
}
.float-wrap { display: contents; }

/* Reintroduce float as transform on parent wrappers */
.hero-insight {
  animation: floatCard 8s ease-in-out infinite;
}
.hero-score {
  animation: floatChip 9s ease-in-out infinite;
}

/* Continuous breath on the ball — already animated */
.hero-ball {
  transform-origin: 50% 50%;
}

/* ============================================================
   TRUST MARQUEE — schools scroll horizontally, no list aesthetic
   ============================================================ */
.trust-marquee {
  flex: 1;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  overflow: hidden;
}
.trust-marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marqueeSlide 38s linear infinite;
  padding: 4px 0;
}
.trust-marquee:hover .trust-marquee-track { animation-play-state: paused; }
@keyframes marqueeSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-marquee .trust-school-name { flex-shrink: 0; }
.trust-marquee .petal-sep {
  display: flex; align-items: center; justify-content: center;
  width: 14px; height: 14px;
  flex-shrink: 0;
  opacity: 0.4;
}
.trust-marquee .petal-sep svg { width: 100%; height: 100%; }

/* ============================================================
   SAKURA BRANCH DIVIDER — draws a thin branch with blossoms
   ============================================================ */
.branch-divider {
  position: relative;
  padding: 80px 0 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  overflow: hidden;
}
.branch-divider svg {
  width: 100%;
  max-width: 920px;
  height: auto;
  display: block;
}
.branch-divider .branch-line {
  fill: none;
  stroke: #4D3A2E;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: branchDraw 2.6s var(--ease-out) forwards;
  animation-play-state: paused;
}
.branch-divider.in .branch-line { animation-play-state: running; }
[data-tone="night"] .branch-divider .branch-line { stroke: rgba(255,255,255,0.45); }
.branch-divider .blossom {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: blossomPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-play-state: paused;
}
.branch-divider.in .blossom { animation-play-state: running; }
.branch-divider .blossom.b1 { animation-delay: 1.2s; }
.branch-divider .blossom.b2 { animation-delay: 1.5s; }
.branch-divider .blossom.b3 { animation-delay: 1.8s; }
.branch-divider .blossom.b4 { animation-delay: 2.1s; }
.branch-divider .blossom.b5 { animation-delay: 2.4s; }
.branch-divider .blossom.b6 { animation-delay: 2.7s; }
.branch-divider .blossom.b7 { animation-delay: 3.0s; }
@keyframes branchDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes blossomPop {
  0%   { opacity: 0; transform: scale(0.2) rotate(-30deg); }
  60%  { opacity: 1; transform: scale(1.15) rotate(8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* ============================================================
   BLOOM STORY — replaces the broadcast stats band
   "ひとり一人の成長を、一輪の桜のように"
   ============================================================ */
.bloom-story {
  padding: 140px 0;
  background: var(--bg-raised);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bloom-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(232,160,188,0.12) 0, transparent 280px),
    radial-gradient(circle at 86% 78%, rgba(232,160,188,0.10) 0, transparent 320px);
  pointer-events: none;
}
[data-tone="night"] .bloom-story {
  background: #0B0F18;
}
.bloom-story-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.bloom-story-head h2 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.bloom-story-head h2 .hl {
  color: var(--ouka-pink);
}
.bloom-story-head p {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.85;
  color: var(--fg-muted);
  max-width: 52ch;
  margin: 0 auto;
  text-wrap: pretty;
}
.bloom-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 820px) {
  .bloom-stages { grid-template-columns: 1fr; gap: 24px; }
}
.bloom-stage {
  text-align: center;
  padding: 0 36px;
  position: relative;
  border-right: 1px dashed var(--border-strong);
}
.bloom-stage:last-child { border-right: 0; }
@media (max-width: 820px) {
  .bloom-stage { border-right: 0; border-bottom: 1px dashed var(--border-strong); padding-bottom: 32px; }
  .bloom-stage:last-child { border-bottom: 0; }
}
.bloom-stage .glyph {
  width: 92px; height: 92px;
  margin: 0 auto 22px;
  position: relative;
}
.bloom-stage .glyph svg {
  width: 100%; height: 100%;
  display: block;
  transform-origin: center;
  transition: transform 0.6s var(--ease-bounce);
}
.bloom-stage:hover .glyph svg { transform: scale(1.08) rotate(-6deg); }
.bloom-stage .label {
  font-family: var(--font-num);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ouka-pink);
  margin-bottom: 6px;
}
[data-tone="night"] .bloom-stage .label { color: var(--ouka-pink-soft); }
.bloom-stage .title {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--fg);
}
.bloom-stage .when {
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-subtle);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.bloom-stage .desc {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.8;
  color: var(--fg-muted);
  text-wrap: pretty;
  max-width: 26ch;
  margin: 0 auto;
}

/* Bloom petal glyphs animate in on reveal */
.bloom-stage .petal-grow {
  transform-origin: 50% 100%;
  opacity: 0;
  transform: scale(0.4);
  animation: bloomGrow 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-play-state: paused;
}
.bloom-story.in .bloom-stage:nth-child(1) .petal-grow { animation-delay: 0.1s; animation-play-state: running; }
.bloom-story.in .bloom-stage:nth-child(2) .petal-grow { animation-delay: 0.4s; animation-play-state: running; }
.bloom-story.in .bloom-stage:nth-child(3) .petal-grow { animation-delay: 0.7s; animation-play-state: running; }
@keyframes bloomGrow {
  0%   { opacity: 0; transform: scale(0.4) rotate(-12deg); }
  60%  { opacity: 1; transform: scale(1.15) rotate(6deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* Animated petal sway — the full-bloom stage breathes gently */
.bloom-stage.full .petal-grow {
  animation: bloomGrow 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
             bloomBreath 4.5s ease-in-out 1.5s infinite;
}
@keyframes bloomBreath {
  0%, 100% { transform: scale(1) rotate(0); }
  50%      { transform: scale(1.06) rotate(2deg); }
}

/* ============================================================
   AI COACH — rebuilt rhythm (was 4 identical numbered rows)
   ============================================================ */
.ai-features.rhythm .ai-feat {
  border-top: 0;
  border-bottom: 0;
  padding: 14px 0;
  display: block;
  cursor: default;
  position: relative;
  padding-left: 28px;
}
.ai-features.rhythm .ai-feat::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='-50 -50 100 100' xmlns='http://www.w3.org/2000/svg'><g><g transform='rotate(0)'><path d='M 0 -8 C -10 -10 -16 -22 -12 -34 C -8 -42 -4 -44 0 -42 C 4 -44 8 -42 12 -34 C 16 -22 10 -10 0 -8 Z' fill='%23CC4A72'/></g><g transform='rotate(72)'><path d='M 0 -8 C -10 -10 -16 -22 -12 -34 C -8 -42 -4 -44 0 -42 C 4 -44 8 -42 12 -34 C 16 -22 10 -10 0 -8 Z' fill='%23D85C80'/></g><g transform='rotate(144)'><path d='M 0 -8 C -10 -10 -16 -22 -12 -34 C -8 -42 -4 -44 0 -42 C 4 -44 8 -42 12 -34 C 16 -22 10 -10 0 -8 Z' fill='%23CC4A72'/></g><g transform='rotate(216)'><path d='M 0 -8 C -10 -10 -16 -22 -12 -34 C -8 -42 -4 -44 0 -42 C 4 -44 8 -42 12 -34 C 16 -22 10 -10 0 -8 Z' fill='%23D85C80'/></g><g transform='rotate(288)'><path d='M 0 -8 C -10 -10 -16 -22 -12 -34 C -8 -42 -4 -44 0 -42 C 4 -44 8 -42 12 -34 C 16 -22 10 -10 0 -8 Z' fill='%23CC4A72'/></g><circle r='5' fill='%23F0BEA0'/></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.ai-features.rhythm .ai-feat.small { padding-left: 28px; }
.ai-features.rhythm .ai-feat.small h3 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--fg);
}
.ai-features.rhythm .ai-feat.small p {
  font-size: 13px;
  line-height: 1.7;
}
.ai-features.rhythm .ai-feat.large {
  padding: 28px 0 28px 28px;
}
.ai-features.rhythm .ai-feat.large h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 900;
  margin-bottom: 8px;
}
.ai-features.rhythm .ai-feat.large p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg);
}
.ai-features.rhythm .ai-feat .num,
.ai-features.rhythm .ai-feat h3 .en {
  display: none;
}
.ai-features.rhythm hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

/* ============================================================
   CARD HOVER LIFT — tour, plans, alerts
   ============================================================ */
.tour-card .tour-cap .t {
  transition: color var(--dur-base) var(--ease-out);
}
.tour-card:hover .tour-cap .t { color: var(--ouka-pink); }
.tour-phone {
  transform: translateY(0);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.tour-card:hover .tour-phone {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 0 36px 80px rgba(15,20,28,0.22);
}

/* ============================================================
   QR / CTA — replace QR with poetic alternative
   ============================================================ */
.cta-poet {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.cta-poet::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 25% 18%, rgba(204,74,114,0.28) 0, transparent 50%),
    radial-gradient(circle at 80% 78%, rgba(185,221,54,0.22) 0, transparent 55%);
  pointer-events: none;
}
.cta-poet-mark {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  position: relative;
}
.cta-poet-mark svg { width: 100%; height: 100%; display: block; }
.cta-poet-mark .ring {
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.18);
  animation: spinSlow 24s linear infinite;
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}
.cta-poet h4 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.4;
  color: #fff;
  position: relative;
}
.cta-poet h4 .hl { color: var(--ouka-pink-soft); }
.cta-poet p {
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin: 0;
  position: relative;
}
.cta-poet .small-actions {
  margin-top: 22px;
  display: flex;
  gap: 8px;
  justify-content: center;
  position: relative;
}
.cta-poet .pill-link {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.18s ease;
}
.cta-poet .pill-link:hover { background: rgba(255,255,255,0.12); }

/* ============================================================
   SCROLL-DRIVEN BACKGROUND PETALS — subtle, fewer
   ============================================================ */
.section-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.section-petals .petal {
  opacity: 0;
  filter: drop-shadow(0 2px 4px rgba(204,74,114,0.18));
}
.section-petals .petal:nth-child(1) { left: 12%; animation-duration: 22s; animation-delay: -1s;  width: 14px; height: 18px; }
.section-petals .petal:nth-child(2) { left: 32%; animation-duration: 28s; animation-delay: -8s;  width: 18px; height: 22px; }
.section-petals .petal:nth-child(3) { left: 64%; animation-duration: 25s; animation-delay: -13s; width: 16px; height: 20px; }
.section-petals .petal:nth-child(4) { left: 88%; animation-duration: 30s; animation-delay: -4s;  width: 20px; height: 24px; }

/* ============================================================
   PRICING — S/M/L equal-feature + Extra Large strip + notes
   ============================================================ */
.pricing-grid-equal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}
@media (max-width: 880px) {
  .pricing-grid-equal { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING — typography refinement: editorial serif for amounts
   ============================================================ */
.plan-price {
  margin: 26px 0 8px;
  align-items: baseline;
  gap: 2px;
}
.plan-price .n {
  font-family: var(--font-price);
  font-weight: 500;
  font-style: normal;
  font-size: 60px;
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-variant-numeric: tabular-nums lining-nums;
}
.plan.featured .plan-price .n {
  font-weight: 500;
}
.plan-price .u {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-left: 4px;
  letter-spacing: 0.02em;
}
.plan-price-sub strong {
  font-family: var(--font-price);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-variant-numeric: tabular-nums lining-nums;
}
.plan-was {
  font-family: var(--font-price) !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  letter-spacing: -0.03em !important;
}

.plan-xl-cta .v {
  font-family: var(--font-price);
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.school-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg-sunken);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 28px;
  position: relative;
  border: 1px solid var(--border);
  gap: 0;
}
[data-tone="night"] .school-toggle { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.school-toggle button {
  position: relative;
  z-index: 2;
  flex: 1;
  background: none;
  border: 0;
  padding: 10px 22px;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  border-radius: 999px;
  transition: color 0.25s var(--ease-out);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.school-toggle button.on {
  color: var(--navy-900);
}
[data-tone="night"] .school-toggle button.on { color: #fff; }
.school-toggle button .badge {
  font-family: var(--font-num);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--ouka-pink);
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.school-toggle button.on .badge { opacity: 1; transform: scale(1); }
.school-toggle .slider {
  position: absolute;
  top: 4px; bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15,20,28,0.10);
  transition: transform 0.32s cubic-bezier(0.34, 1.4, 0.6, 1);
  z-index: 1;
}
[data-tone="night"] .school-toggle .slider {
  background: var(--court-400);
  box-shadow: 0 2px 12px rgba(185,221,54,0.32);
}
.school-toggle[data-mode="public"] .slider {
  transform: translateX(100%);
}

/* Price flip animation */
.plan-price .n,
.plan-price-sub strong {
  display: inline-block;
  transition: transform 0.28s var(--ease-out), opacity 0.28s var(--ease-out);
}
.plan-price.flipping .n,
.plan-price-sub strong.flipping {
  opacity: 0;
  transform: translateY(-6px);
}

/* Public-school savings strikethrough on private prices */
.plan-was {
  font-family: var(--font-num);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg-subtle);
  text-decoration: line-through;
  margin-left: 8px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out);
}
[data-mode="public"] .plan-was {
  opacity: 1;
  transform: translateY(0);
}
.plan.featured .plan-was { color: rgba(255,255,255,0.4); }
.plan-size-pill {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ouka-pink);
  background: rgba(204,74,114,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
[data-tone="night"] .plan-size-pill { color: var(--ouka-pink-soft); background: rgba(232,160,188,0.12); }
.plan.featured .plan-size-pill { background: rgba(185,221,54,0.18); color: var(--court-300); }
.plan-price-sub {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 8px;
  display: flex; flex-direction: column; gap: 2px;
}
.plan.featured .plan-price-sub { color: rgba(255,255,255,0.65); }
.plan-price-sub strong {
  font-family: var(--font-price);
  font-weight: 600;
  color: var(--fg);
}
.plan.featured .plan-price-sub strong { color: #fff; }

/* Extra Large horizontal strip */
.plan-xl {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-raised);
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .plan-xl { grid-template-columns: 1fr; }
}
.plan-xl-head h3 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.plan-xl-head .scope {
  font-family: var(--font-num);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ouka-pink);
}
.plan-xl-head p {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.75;
  color: var(--fg-muted);
  margin: 12px 0 0;
  max-width: 50ch;
}
.plan-xl-cta {
  display: flex; flex-direction: column; gap: 14px;
  border-left: 1px solid var(--border);
  padding-left: 32px;
}
@media (max-width: 720px) {
  .plan-xl-cta { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: 20px; }
}
.plan-xl-cta .l {
  font-family: var(--font-num);
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.plan-xl-cta .v {
  font-family: var(--font-price);
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* Notes box */
.pricing-notes {
  margin-top: 36px;
  background: var(--bg-sunken);
  border-radius: 16px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  list-style: none;
}
[data-tone="night"] .pricing-notes { background: rgba(255,255,255,0.04); }
@media (max-width: 720px) {
  .pricing-notes { grid-template-columns: 1fr; }
}
.pricing-notes li {
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.7;
  color: var(--fg);
  display: flex; gap: 10px;
  align-items: flex-start;
}
.pricing-notes li::before {
  content: "·";
  font-weight: 900;
  font-size: 18px;
  color: var(--ouka-pink);
  line-height: 1.3;
}

/* ============================================================
   BETA BAND — replaces the fake "Used by clubs" trust band
   ============================================================ */
.beta-band {
  padding: 32px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.beta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.beta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-num);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ouka-pink);
  background: rgba(204,74,114,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  flex-shrink: 0;
}
.beta-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ouka-pink);
  box-shadow: 0 0 0 3px rgba(204,74,114,0.25);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(204,74,114,0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(204,74,114,0.10); }
}
.beta-msg {
  flex: 1;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg);
  min-width: 280px;
}
.beta-msg .sub {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ============================================================
   MANIFESTO — replaces fake testimonials
   ============================================================ */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}
@media (max-width: 880px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}
.manifesto-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.manifesto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15,20,28,0.08);
}
.manifesto-card .num {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ouka-pink);
  text-transform: uppercase;
}
[data-tone="night"] .manifesto-card .num { color: var(--ouka-pink-soft); }
.manifesto-card h3 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--fg);
  margin: 0;
}
.manifesto-card p {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.85;
  color: var(--fg-muted);
  margin: 0;
}
.manifesto-card .mark {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px; height: 28px;
  opacity: 0.4;
}

/* Soften AI card title — less broadcast, more letter */
.ai-card-title { font-weight: 700; font-size: 22px; }

/* Hero copy max-width tweak so the kicker fits */
.hero-copy { gap: 22px; }

/* Mobile: hero-meta wrap + ball size */
@media (max-width: 520px) {
  .hero-meta { flex-wrap: wrap; gap: 6px 14px; }
  .hero-meta .dot { display: none; }
  .hero-ball { width: 68px; height: 68px; top: 4%; right: 2%; }
}
