/* LiverStats LP — Design Reference v1 (2026-06-16) */

/* フォントは website/fonts/fonts.css で自前配信する（CSS の @import は
   lp.css を読み終えてから更に外部へ往復するため、描画開始が最も遅くなる形だった）。 */

:root {
  --bg: #05060c;
  --bg-elevated: rgba(12, 14, 24, 0.92);
  --bg-card: rgba(14, 16, 28, 0.88);
  --border: rgba(139, 92, 246, 0.18);
  --border-bright: rgba(168, 85, 247, 0.42);
  --purple: #9333ea;
  --purple-mid: #7c3aed;
  --purple-bright: #a855f7;
  --cyan: #22d3ee;
  --text: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --win: #4ade80;
  --lose: #f87171;
  --streak: #fdba74;
  --gradient-cta: linear-gradient(135deg, #7c3aed 0%, #6366f1 50%, #0891b2 100%);
  --gradient-text: linear-gradient(135deg, #c084fc 0%, #818cf8 45%, #22d3ee 100%);
  --shadow-neon: 0 0 40px rgba(124, 58, 237, 0.32);
  --radius: 12px;
  --radius-lg: 17px;
  --max: 1080px;
  --lp-type-scale: 0.96;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: calc(15px * var(--lp-type-scale));
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'Inter', 'Hiragino Sans', 'Noto Sans JP', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1rem;
  position: relative;
  z-index: 1;
}

/* ── LP center layout ── */
.hero__copy,
.ref-feature__copy,
.ref-dual-col,
.ref-ai-grid > .ref-feature__copy,
.ref-cta__copy {
  text-align: center;
}

.hero__sub,
.ref-feature__desc {
  margin-inline: auto;
}

.hero__actions,
.hero__features {
  justify-content: center;
}

.ref-checklist {
  max-width: 28rem;
  margin-inline: auto;
  text-align: left;
}

.ref-dual-head {
  justify-content: center;
}

.ref-cta__copy .btn {
  margin-inline: auto;
}

.hero__phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.text-win { color: var(--win); }
.text-lose { color: var(--lose); }
.text-streak { color: var(--streak); }
.text-accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Background ── */
.lp-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.lp-bg__glow--hero {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: min(120%, 100vw);
  height: 50%;
  background: radial-gradient(ellipse 55% 60% at 50% 0%, rgba(124, 58, 237, 0.28), transparent 70%);
  mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
}

.lp-bg__glow--cta {
  position: absolute;
  bottom: 8%;
  right: -5%;
  width: 55%;
  height: 45%;
  background: radial-gradient(ellipse 50% 50% at 70% 50%, rgba(124, 58, 237, 0.22), transparent 65%);
}

.lp-bg__lines {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    linear-gradient(105deg, transparent 42%, rgba(168, 85, 247, 0.06) 48%, transparent 54%),
    linear-gradient(75deg, transparent 58%, rgba(34, 211, 238, 0.04) 62%, transparent 68%);
}

/* ── Header + Legal bar (chrome) ── */
.lp-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

/* LP（index.html）だけ上部バーを追従させない。ロゴと「7日間無料で始める」が常時画面を占有していたが、
   画面下の追従バーが登録導線を持つようになり、上にもう1本の常時バーを出す理由が無くなった（CEO判断）。
   static ではなく absolute なのは flow に入れないため — .hero 側の padding-top（5〜6rem 系）が
   このバーの高さぶんの余白として既に効いており、flow に入れると余白が二重になる。
   faq / pricing / about などは画面下の追従バーを持たず、剥がすと常時の導線がゼロになるので fixed のまま。 */
.lp-page .lp-chrome {
  position: absolute;
}

.lp-header {
  padding: 0.65rem 0;
  background: rgba(5, 6, 12, 0.88);
  backdrop-filter: blur(18px);
}

.lp-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.lp-logo { justify-self: start; }

.lp-header__cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  max-width: calc(100% - 7.5rem);
}

.lp-menu-btn { justify-self: end; }

.lp-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.lp-logo__icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  background: #000;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.35);
}

.lp-logo__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-logo__text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  justify-self: center;
}

.lp-nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.lp-nav a:hover {
  color: var(--text);
  background: rgba(139, 92, 246, 0.1);
}

.lp-menu-btn {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.08);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  z-index: 210;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.lp-legal-bar {
  border-top: 1px solid rgba(139, 92, 246, 0.14);
  border-bottom: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(2, 3, 9, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.lp-legal-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.4rem;
  min-height: 1.35rem;
  padding: 0.24rem 1rem;
}

.lp-legal-bar a {
  font-size: 0.76rem;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.legal-bar__short {
  display: none;
}

.legal-bar__long {
  display: inline;
}

.lp-legal-bar a:hover {
  color: var(--cyan);
  text-decoration: underline;
}

.lp-legal-bar__sep {
  color: rgba(148, 163, 184, 0.55);
  font-size: 0.76rem;
  user-select: none;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .lp-legal-bar__inner {
    padding: 0.2rem 0.55rem;
    gap: 0.32rem;
    min-height: 1.25rem;
  }

  .lp-legal-bar a {
    font-size: 0.68rem;
  }

  .lp-legal-bar__sep {
    font-size: 0.68rem;
  }

  .legal-bar__short {
    display: inline;
  }

  .legal-bar__long {
    display: none;
  }
}

@media (max-width: 390px) {
  .lp-legal-bar__inner {
    padding: 0.18rem 0.5rem;
    gap: 0.28rem;
  }

  .lp-legal-bar a {
    font-size: 0.65rem;
  }
}

.lp-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 6, 12, 0.98);
}

.lp-nav-mobile.is-open { display: flex; }

.lp-nav-mobile a {
  padding: 0.7rem 0.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.lp-nav-mobile .btn { margin-top: 0.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.35rem;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  color: #fff;
  background: var(--gradient-cta);
  box-shadow: var(--shadow-neon);
}

.btn--primary:hover {
  box-shadow: 0 0 56px rgba(124, 58, 237, 0.5);
}

.btn--outline {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn--outline:hover {
  border-color: rgba(168, 85, 247, 0.45);
  background: rgba(139, 92, 246, 0.06);
}

.btn--sm { padding: 0.45rem 0.9rem; font-size: 0.74rem; }
.btn--lg { padding: 0.82rem 1.5rem; font-size: 0.92rem; }
.btn--block { width: 100%; }

.btn__tiktok { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

.cta-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.hero__dot {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero ── */
.hero {
  padding: calc(4.75rem + env(safe-area-inset-top)) 0 0;
  position: relative;
  z-index: 2;
  /* overflow-y visible so glass card radius/glow are not clipped */
  overflow-x: hidden;
  overflow-y: visible;
}

.hero--ui-first {
  padding-bottom: 0;
}

.hero__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: min(100%, 480px);
  margin-inline: auto;
  text-align: center;
}

.hero__title--minimal {
  margin: 0;
  font-size: clamp(1.45rem, 6vw, 2rem);
  line-height: 1.2;
}

.hero__phone-stage {
  width: 100%;
  position: relative;
  isolation: isolate;
  padding-bottom: 1.25rem;
}

.hero__phone-stage::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3rem;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 3;
}

.hero__grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.hero__grid--centered {
  max-width: 28rem;
  margin-inline: auto;
  text-align: center;
}

.hero__grid--demo-hero {
  max-width: min(100%, 480px);
  margin-inline: auto;
  text-align: center;
  gap: 1rem;
}

.hero__copy--compact {
  max-width: 24rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .hero__grid--centered {
    max-width: 26rem;
  }

  .hero__grid--demo-hero {
    max-width: min(100%, 520px);
    gap: 1.15rem;
  }
}

.hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.hero__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.hero__sub {
  margin: 0 0 1.5rem;
  font-size: clamp(0.86rem, 1.8vw, 0.98rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 26rem;
}

.hero__punchlines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 1rem;
}

.hero__punch {
  margin: 0;
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
}

.hero__punch + .hero__punch {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.78rem, 1.8vw, 0.86rem);
}

.hero__beats {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__beats li {
  margin: 0;
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
}

.hero__beats--inline {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.35rem;
}

.hero__beats--inline li {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero__punch--lead {
  margin: 0;
  font-size: clamp(0.78rem, 1.85vw, 0.88rem);
  line-height: 1.55;
  color: rgba(148, 163, 184, 0.95);
}

.lp-hero-cta {
  position: relative;
  z-index: 4;
  padding: 0 0 3.5rem;
  background: var(--bg);
}

.lp-hero-cta__inner {
  max-width: 24rem;
  margin-inline: auto;
  text-align: center;
}

.lp-hero-cta .hero__punch--lead {
  margin-bottom: 1.1rem;
}

.lp-hero-cta .hero__actions {
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 0.35rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  width: 100%;
}

.hero__trust li {
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__trust--cta {
  margin-top: 0.75rem;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: 4rem;
  padding: 0.45rem 0.3rem;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.22);
  font-size: 0.52rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.2;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.hero-feat:hover,
.hero-feat.is-active {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(139, 92, 246, 0.16);
  color: var(--text);
}

.hero-feat.is-active {
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.25);
}

.hero-feat__icon {
  font-size: 0.95rem;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

.hero__phone-col::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  width: 120%;
  height: 110%;
  background: radial-gradient(ellipse 50% 55% at 50% 50%, rgba(124, 58, 237, 0.28), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__phone-col--spotlight::before {
  width: 115%;
  height: 85%;
  max-height: 580px;
  top: 48%;
  background:
    radial-gradient(ellipse 52% 58% at 50% 45%, rgba(124, 58, 237, 0.32), transparent 72%);
}

.hero__phone-col--spotlight .phone--hero {
  transform: translateY(0);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
}

.hero__phone-col .phone {
  position: relative;
  z-index: 1;
}

/* ── Phone mockup ── */
.phone {
  width: min(268px, 82vw);
  aspect-ratio: 9 / 19.2;
  min-height: 520px;
  border-radius: 34px;
  padding: 9px;
  background: linear-gradient(160deg, #1c1c30 0%, #0a0a14 100%);
  border: 2px solid rgba(139, 92, 246, 0.35);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 100px rgba(124, 58, 237, 0.25);
}

.phone--hero {
  width: min(348px, 96vw);
  min-height: 620px;
}

.phone__screen {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #06070e;
  display: flex;
  flex-direction: column;
}

.phone__status {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 1rem 0.2rem;
  font-size: 0.58rem;
  color: var(--text-dim);
}

.phone-home-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem 0.55rem;
}

.phone-home-profile__avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.phone-home-profile__body {
  flex: 1;
  min-width: 0;
}

.phone-home-profile__name-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.phone-home-profile__name-row strong {
  display: block;
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-home-profile__handle {
  display: block;
  font-size: 0.48rem;
  color: var(--text-dim);
}

.phone-league-badge {
  flex-shrink: 0;
  font-family: var(--font-display, 'Orbitron', sans-serif);
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.14rem 0.34rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.phone-league-badge--a {
  color: #fde68a;
  border-color: rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.12);
}

.phone-league-badge--b {
  color: #bfdbfe;
  border-color: rgba(147, 197, 253, 0.45);
  background: rgba(59, 130, 246, 0.12);
}

.phone-league-badge--c {
  color: #fed7aa;
  border-color: rgba(251, 146, 60, 0.45);
  background: rgba(234, 88, 12, 0.12);
}

.phone-league-badge--d {
  color: #d4a574;
  border-color: rgba(196, 136, 106, 0.45);
  background: rgba(146, 64, 14, 0.12);
}

.phone-league-period {
  margin: -0.15rem 0.65rem 0.45rem;
  font-size: 0.44rem;
  color: var(--text-dim);
}

.phone-league-hero {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0.65rem 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-league-hero__badge {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  transform: rotate(45deg);
  border: 2px solid var(--league-color, #fb923c);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 14px color-mix(in srgb, var(--league-color, #fb923c) 35%, transparent);
}

.phone-league-hero__badge--c { --league-color: #fb923c; }
.phone-league-hero__badge--a { --league-color: #fbbf24; }
.phone-league-hero__badge--b { --league-color: #93c5fd; }
.phone-league-hero__badge--d { --league-color: #c4886a; }

.phone-league-hero__gem,
.phone-league-hero__tier,
.phone-league-hero__level {
  transform: rotate(-45deg);
  line-height: 1;
}

.phone-league-hero__gem {
  font-size: 0.32rem;
  color: var(--league-color);
}

.phone-league-hero__tier {
  font-family: var(--font-display, 'Orbitron', sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
}

.phone-league-hero__level {
  font-family: var(--font-display, 'Orbitron', sans-serif);
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--text-dim);
}

.phone-league-hero__meta {
  min-width: 0;
}

.phone-league-hero__meta strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.12rem;
}

.phone-league-hero__meta span {
  font-size: 0.46rem;
  color: var(--text-dim);
}

.phone-league-ladder {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem 0.1rem;
  margin: 0 0.65rem 0.55rem;
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-league-pill {
  font-family: var(--font-display, 'Orbitron', sans-serif);
  font-size: 0.42rem;
  font-weight: 700;
  padding: 0.18rem 0.32rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-league-pill--current {
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.18);
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.2);
}

.phone-league-ladder--a .phone-league-pill--current {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.22);
}

.phone-league-pill-arrow {
  width: 0.28rem;
  height: 0.28rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.phone-stat-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.phone-league-progress {
  margin: 0 0.65rem 0.4rem;
}

.phone-league-progress__bar {
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.phone-league-progress__bar::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, #f97316, #fb923c);
}

.phone-league-progress--a .phone-league-progress__bar::after {
  background: linear-gradient(90deg, #f59e0b, #fde68a);
}

.phone-league-progress__hint {
  margin: 0;
  font-size: 0.44rem;
  color: var(--text-dim);
}

.phone-league-progress__hint strong {
  color: #fed7aa;
}

.phone-league-progress--a .phone-league-progress__hint strong {
  color: #fde68a;
}

.phone-home-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0 0.65rem;
}

.phone-kpi {
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 3.2rem;
}

.phone-kpi__label {
  display: block;
  font-size: 0.42rem;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}

.phone-kpi__val {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--cyan);
}

.phone-kpi__val--sm { font-size: 0.62rem; }

.phone-kpi__val--num {
  font-size: clamp(0.62rem, 2.8vw, 0.82rem);
  letter-spacing: -0.03em;
}

.phone-kpi__sub {
  font-size: 0.42rem;
  color: var(--text-dim);
}

.phone-kpi--rate .phone-kpi__gauge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.phone-kpi--rate svg {
  width: 1.6rem;
  height: 1.6rem;
}

.phone-kpi--rate em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--purple-bright);
}

.phone-kpi__spark {
  display: block;
  height: 12px;
  margin-top: 0.2rem;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.4), transparent);
  border-radius: 2px;
  opacity: 0.6;
}

.phone-section-label {
  margin: 0.55rem 0.65rem 0.35rem;
  font-size: 0.48rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.phone-pk-scroll {
  display: flex;
  gap: 0.35rem;
  padding: 0 0.65rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.phone-pk-scroll::-webkit-scrollbar { display: none; }

.phone-pk-card {
  flex: 0 0 52%;
  padding: 0.4rem 0.45rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.phone-pk-card--win { border-color: rgba(74, 222, 128, 0.25); }
.phone-pk-card--lose { border-color: rgba(248, 113, 113, 0.2); opacity: 0.85; }

.phone-pk-card__badge {
  display: block;
  font-size: 0.42rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.phone-pk-card--win .phone-pk-card__badge { color: var(--win); }
.phone-pk-card--lose .phone-pk-card__badge { color: var(--lose); }

.phone-pk-card__score {
  display: block;
  font-size: clamp(0.48rem, 2.2vw, 0.58rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.phone-pk-card__score small {
  font-weight: 500;
  color: var(--text-dim);
  font-size: 0.48rem;
}

.phone-pk-card__meta {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.4rem;
  color: var(--text-dim);
}

.phone-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  padding: 0 0.65rem 0.5rem;
  margin-top: 0.25rem;
}

.phone-summary div {
  text-align: center;
  padding: 0.35rem 0.15rem;
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.phone-summary span {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
}

.phone-summary small {
  font-size: 0.38rem;
  color: var(--text-dim);
}

.phone-summary--3 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0.5rem;
}

.phone-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  padding: 0 0.65rem;
  margin-bottom: 0.15rem;
}

.phone-stat-row--4 {
  grid-template-columns: repeat(4, 1fr);
}

.phone-stat-row div {
  text-align: center;
  padding: 0.35rem 0.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-stat-row span {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--cyan);
}

.phone-stat-row small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.38rem;
  color: var(--text-dim);
}

.phone-bar-labels {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem 0.75rem 0.35rem;
  font-size: 0.38rem;
  color: var(--text-dim);
}

.phone-bar-labels--4 span {
  flex: 1;
  text-align: center;
}

.phone-kpi__sub--up {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.4rem;
  font-weight: 600;
  color: var(--win);
}

.phone-opponent-list--compact {
  margin-bottom: 0.35rem;
}

.phone-coming-soon {
  margin: 0.75rem 0.5rem;
  padding: 0.85rem 0.75rem;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.phone__nav {
  display: flex;
  justify-content: space-around;
  margin-top: auto;
  padding: 0.5rem 0.35rem calc(0.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(139, 92, 246, 0.12);
  font-size: 0.85rem;
  opacity: 0.7;
}

.phone__nav .is-active { opacity: 1; filter: drop-shadow(0 0 6px rgba(168,85,247,.6)); }

/* ── Interactive phone demo ── */
.phone--demo {
  touch-action: manipulation;
}

.phone-demo-body {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-demo-panel {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 0 0.25rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.phone-demo-panel::-webkit-scrollbar { display: none; }

.phone-demo-panel[hidden] {
  display: none !important;
}

.phone-demo-fallback {
  margin: 1rem 0.75rem;
  font-size: 0.62rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

#lp-phone-demo .phone-demo-home,
#lp-phone-demo .phone-tab-page {
  color: rgba(255, 255, 255, 0.92);
}

.phone__nav--demo {
  /* 見た目は shared/ui-shell/nav.css */
}

.phone-tab-title {
  margin: 0.15rem 0.65rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
}

.phone-kpi--wide {
  margin: 0 0.65rem 0.5rem;
}

.phone-home-kpis--2 {
  grid-template-columns: 1fr 1fr;
}

.phone-rank-list {
  margin: 0 0.65rem 0.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.phone-rank-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.52rem;
}

.phone-rank-list em {
  margin-left: auto;
  font-style: normal;
  color: var(--text-dim);
  font-size: 0.48rem;
}

.phone-mini-bars--demo {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 2.5rem;
  margin: 0 0.65rem 0.35rem;
}

.phone-mini-bars--demo span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--purple-bright), rgba(124, 58, 237, 0.2));
}

.phone-hero-stat {
  margin: 0 0.65rem 0.55rem;
  padding: 0.5rem;
  text-align: center;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.phone-hero-stat__val {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.phone-hero-stat__label {
  font-size: 0.48rem;
  color: var(--text-dim);
}

.phone-pk-list {
  margin: 0 0.65rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.phone-pk-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.45rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.52rem;
}

.phone-pk-row span:first-child {
  grid-row: 1 / 3;
  align-self: center;
}

.phone-pk-row span:nth-child(2) {
  font-size: clamp(0.42rem, 1.9vw, 0.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.phone-pk-row small {
  grid-column: 2;
  font-size: 0.44rem;
  color: var(--text-dim);
}

.phone-pk-row--win {
  border-color: rgba(74, 222, 128, 0.25);
}

.phone-pk-row--win span:first-child {
  color: var(--win);
  font-weight: 800;
}

.phone-pk-row--lose span:first-child {
  color: var(--lose);
  font-weight: 800;
}

.phone-opponent-list {
  list-style: none;
  margin: 0 0 0.65rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.phone-opponent-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.52rem;
}

.phone-opponent-list span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-opponent-list em {
  flex-shrink: 0;
  font-style: normal;
  font-size: 0.48rem;
  font-weight: 700;
}

.phone-opponent-list b {
  font-weight: 700;
}

.phone-demo-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.85rem auto 0;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  max-width: 100%;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(34, 211, 238, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.55);
  box-shadow:
    0 0 24px rgba(124, 58, 237, 0.35),
    0 4px 16px rgba(0, 0, 0, 0.25);
  animation: phoneHintPulse 2.4s ease-in-out infinite;
}

.phone-demo-hint__icon {
  font-size: 1rem;
  animation: phoneHintBounce 1.2s ease-in-out infinite;
}

.phone-demo-hint__text {
  background: linear-gradient(90deg, #e9d5ff, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes phoneHintPulse {
  0%, 100% {
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.35), 0 4px 16px rgba(0, 0, 0, 0.25);
    border-color: rgba(168, 85, 247, 0.55);
  }
  50% {
    box-shadow: 0 0 36px rgba(124, 58, 237, 0.55), 0 4px 20px rgba(34, 211, 238, 0.15);
    border-color: rgba(34, 211, 238, 0.65);
  }
}

@keyframes phoneHintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.lp-screen-tabs {
  display: none !important;
}

.lp-screen-tab {
  margin: 0;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}

.lp-screen-tab:hover {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(168, 85, 247, 0.35);
  background: rgba(139, 92, 246, 0.1);
}

.lp-screen-tab.is-active {
  color: #fff;
  border-color: rgba(168, 85, 247, 0.55);
  background: rgba(139, 92, 246, 0.18);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.22);
}

.phone--demo.phone-tab-pulse {
  animation: phonePulse 0.35s ease;
}

@keyframes phonePulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 32px 80px rgba(0,0,0,0.6), 0 0 100px rgba(124, 58, 237, 0.25); }
  50% { box-shadow: 0 0 0 1px rgba(168,85,247,0.35), 0 32px 80px rgba(0,0,0,0.6), 0 0 120px rgba(124, 58, 237, 0.4); }
}

/* ── Stats banner ── */
.ref-stats {
  padding: 0 0 3.5rem;
  position: relative;
  z-index: 1;
}

.ref-stats__title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ref-stats__bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
  padding: 1.35rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.12);
}

.ref-stat {
  text-align: center;
  padding: 0.5rem 0.25rem;
}

.ref-stat__icon {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.35));
}

.ref-stat__val {
  display: block;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ref-stat__label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.ref-stat--gauge {
  grid-column: span 1;
}

.ref-gauge {
  position: relative;
  width: 4.75rem;
  height: 4.75rem;
  margin: 0 auto 0.35rem;
}

.ref-gauge svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.4));
}

.ref-gauge__val {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Feature sections ── */
.ref-feature {
  padding: 3.25rem 0;
  position: relative;
  z-index: 1;
}

.ref-feature--01 {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.ref-feature--dual {
  background: rgba(255, 255, 255, 0.012);
  border-block: 1px solid rgba(255,255,255,0.04);
}

.ref-feature__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.ref-feature__grid--single {
  max-width: 40rem;
}

.ref-feature__num {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--purple-bright);
}

.ref-feature__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ref-feature__badge-soon {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.12rem 0.45rem;
  font-size: 0.62em;
  font-weight: 700;
  vertical-align: middle;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.ref-dual-col--coming-soon .ref-feature__desc {
  margin-bottom: 0;
}

.ref-feature__desc {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28rem;
}

.ref-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ref-checklist li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.ref-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.ref-checklist--compact li {
  font-size: 0.82rem;
  padding: 0.3rem 0 0.3rem 1.25rem;
}

.ref-feature__cards {
  display: grid;
  gap: 1rem;
}

.ref-feature__cards--2 {
  grid-template-columns: 1fr;
}

.ref-feature__cards--battle {
  grid-template-columns: 1fr;
}

.ref-feature__cards--battle .ui-card--pk {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .ref-feature__cards--battle {
    grid-template-columns: 1fr 1fr;
  }
}

/* UI cards */
.ui-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.ui-card__title {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.ui-card__tag {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--purple-bright);
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.ui-card__big {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 3.2vw, 1.45rem);
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.02em;
}

.ui-card__big small { font-size: 1rem; }

.ui-card__gauge-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ui-mini-gauge {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
}

.ui-mini-gauge svg { width: 100%; height: 100%; }

.ui-mini-gauge span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--purple-bright);
}

.ui-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  flex: 1;
  height: 4rem;
}

.ui-bars span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--purple-bright), rgba(124,58,237,0.25));
}

.ui-bars--tall { height: 3.5rem; margin-top: 0.5rem; }

.ui-card__stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  text-align: center;
}

.ui-card__stats-row strong {
  display: block;
  font-size: 1.1rem;
}

.ui-card__stats-row small {
  font-size: 0.65rem;
  color: var(--text-dim);
}

.ui-battle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ui-battle {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ui-battle--win {
  border-color: rgba(74, 222, 128, 0.18);
}

.ui-battle--lose {
  border-color: rgba(248, 113, 113, 0.15);
  opacity: 0.9;
}

.ui-battle__result {
  flex-shrink: 0;
  width: 2.4rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.ui-battle--win .ui-battle__result { color: var(--win); }
.ui-battle--lose .ui-battle__result { color: var(--lose); }

.ui-battle__body {
  flex: 1;
  min-width: 0;
}

.ui-battle__score {
  display: block;
  font-size: clamp(0.72rem, 2.2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ui-battle__score small {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-dim);
  margin: 0 0.15rem;
}

.ui-battle__meta {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.65rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-opponent-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ui-opponent {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.ui-opponent__info {
  min-width: 0;
}

.ui-opponent__name {
  display: block;
  font-size: 0.76rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-opponent__record {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.62rem;
  color: var(--text-dim);
}

.ui-opponent__record em {
  font-style: normal;
  font-weight: 700;
}

.ui-opponent__bar {
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  margin-top: 0.35rem;
}

.ui-opponent__av {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.ui-opponent__rate {
  font-style: normal;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--cyan);
  align-self: start;
  margin-top: 0.1rem;
}

.ui-opponent__bar i {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--gradient-cta);
}

.ui-opponent em:not(.ui-opponent__rate) {
  font-style: normal;
}

/* VS feature card */
.ui-card--vs {
  border-color: rgba(96, 165, 250, 0.25);
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.08), rgba(168, 85, 247, 0.05));
}

.ui-vs-hero {
  text-align: center;
  padding: 0.85rem 0.5rem;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.ui-vs-hero__label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.ui-vs-hero__count {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.ui-vs-hero__count small {
  font-size: 1rem;
  font-weight: 700;
  margin-left: 0.15rem;
  opacity: 0.75;
}

.ui-vs-spotlight {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ui-vs-spotlight__label {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.ui-vs-spotlight strong {
  font-size: 0.95rem;
  color: #fff;
}

.ui-vs-spotlight span:last-child {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ui-vs-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.ui-vs-mini {
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.72rem;
}

.ui-vs-mini span {
  font-weight: 700;
}

.ui-vs-mini em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ui-vs-mini--strong {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.18);
}

.ui-vs-mini--weak {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.18);
}

.ui-sparkline {
  height: 2.5rem;
}

.ui-sparkline svg {
  width: 100%;
  height: 100%;
}

.ui-rank-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ui-rank {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.ui-rank__medal { font-size: 0.9rem; }

.ui-rank em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* Dual column 02+03 */
.ref-dual-grid {
  display: grid;
  gap: 3rem;
}

.ref-dual-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.ref-dual-head .ref-feature__title { margin: 0; }

.ref-dual-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.45));
}

.ref-dual-cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.ui-card--compact { padding: 1rem 1.15rem; }

/* AI section 04 */
.ref-ai-grid {
  display: grid;
  gap: 1.25rem;
}

.ui-ai-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ui-ai-metric__label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.ui-ai-metric__val {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
}

.ui-ai-metric__pct {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ── Sample data labels ── */
.sample-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.5rem;
  z-index: 2;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fde68a;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.sample-note {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.sample-note--center {
  margin-top: 0.85rem;
  text-align: center;
}

.sample-note--hero {
  margin-top: 1.5rem;
  text-align: center;
  max-width: 36rem;
}

.sample-note--phone {
  margin-top: 0.65rem;
  text-align: center;
  width: 100%;
}

[data-sample] {
  position: relative;
}

[data-sample]::after {
  content: 'イメージ';
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(253, 230, 138, 0.9);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.28);
  pointer-events: none;
}

.ref-stats__bar[data-sample]::after {
  top: 0.75rem;
  right: 1rem;
  font-size: 0.62rem;
}

/* ── Privacy & Permissions (Trust) ── */
.ref-privacy {
  padding: 3.75rem 0;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124, 58, 237, 0.1) 0%, transparent 55%),
    rgba(255, 255, 255, 0.012);
  border-block: 1px solid rgba(168, 85, 247, 0.12);
}

.ref-privacy__subtitle {
  margin: 0 0 0.45rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(192, 132, 252, 0.85);
}

.ref-privacy__title {
  margin: 0 0 1.35rem;
  text-align: center;
  font-size: clamp(1.55rem, 4vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ref-privacy__hero {
  max-width: 38rem;
  margin: 0 auto 1.35rem;
  text-align: center;
}

.ref-privacy__lead {
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.ref-privacy__claim {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  line-height: 1.55;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.22) 0%, rgba(59, 130, 246, 0.14) 100%);
  border: 1px solid rgba(168, 85, 247, 0.42);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.18);
}

.ref-privacy__claim strong {
  color: #f5d0fe;
  font-weight: 800;
}

.ref-privacy__body {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.ref-privacy__body p {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.82);
}

.ref-privacy__body p:last-child {
  margin-bottom: 0;
}

.ref-privacy__body strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.ref-privacy__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.ref-privacy-card {
  display: flex;
  flex-direction: column;
  padding: 1rem 0.95rem 0.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.ref-privacy-card--ops {
  border-color: rgba(96, 165, 250, 0.38);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, var(--bg-card) 45%);
  box-shadow: 0 0 32px rgba(59, 130, 246, 0.1);
}

.ref-privacy-card--owner { border-color: rgba(251, 191, 36, 0.28); }
.ref-privacy-card--manager { border-color: rgba(52, 211, 153, 0.28); }
.ref-privacy-card--liver { border-color: rgba(244, 114, 182, 0.28); }

.ref-privacy-card__title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.ref-privacy-card__role {
  margin: 0 0 0.85rem;
  padding-bottom: 0.7rem;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.ref-privacy-card__block {
  margin-bottom: 0;
}

.ref-privacy-card__block--can,
.ref-privacy-card__block--cannot {
  padding: 0.62rem 0.68rem 0.72rem;
  border-radius: calc(var(--radius-lg) - 6px);
}

.ref-privacy-card__block--can {
  background: linear-gradient(
    180deg,
    rgba(34, 197, 94, 0.11) 0%,
    rgba(34, 197, 94, 0.03) 100%
  );
  border: 1px solid rgba(74, 222, 128, 0.22);
  box-shadow: inset 0 1px 0 rgba(134, 239, 172, 0.1);
}

.ref-privacy-card__block--cannot {
  margin-top: 0.55rem;
  padding-top: 0.72rem;
  background: linear-gradient(
    180deg,
    rgba(239, 68, 68, 0.1) 0%,
    rgba(239, 68, 68, 0.03) 100%
  );
  border: 1px solid rgba(248, 113, 113, 0.22);
  box-shadow: inset 0 1px 0 rgba(252, 165, 165, 0.08);
  position: relative;
}

.ref-privacy-card__block--cannot::before {
  content: '';
  position: absolute;
  top: -0.3rem;
  left: 0.35rem;
  right: 0.35rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(148, 163, 184, 0.35) 18%,
    rgba(148, 163, 184, 0.35) 82%,
    transparent 100%
  );
}

.ref-privacy-card__label {
  margin: 0 0 0.5rem;
  padding-top: 0.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ref-privacy-card__label--can {
  color: #86efac;
  text-shadow: 0 0 18px rgba(74, 222, 128, 0.35);
}

.ref-privacy-card__label--cannot {
  color: #fca5a5;
  text-shadow: 0 0 18px rgba(248, 113, 113, 0.28);
}

.ref-privacy-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.ref-privacy-card__list li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.76rem;
  line-height: 1.48;
  color: rgba(226, 232, 240, 0.88);
}

.ref-privacy-card__list--can li {
  color: rgba(220, 252, 231, 0.92);
}

.ref-privacy-card__list--cannot li {
  color: rgba(254, 226, 226, 0.9);
}

.ref-privacy-card__list li::before {
  position: absolute;
  left: 0;
  font-size: 0.55rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.ref-privacy-card__list--can li::before { content: '●'; color: rgba(134, 239, 172, 0.75); }
.ref-privacy-card__list--cannot li::before { content: '●'; color: rgba(252, 165, 165, 0.75); }

.ref-privacy-card__br-sm {
  display: none;
}

.ref-privacy-card__list--invite {
  gap: 0.42rem;
}

.ref-privacy-card__list-item--group-start {
  margin-top: 0.28rem;
  padding-top: 0.48rem;
  border-top: 1px solid rgba(134, 239, 172, 0.16);
}

.ref-privacy__note {
  max-width: 640px;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(0, 0, 0, 0.28);
  text-align: center;
}

.ref-privacy__note p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-dim);
}

.ref-privacy__note-link {
  margin-top: 0.45rem !important;
}

.ref-privacy__note a {
  color: #c084fc;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ref-privacy__note a:hover {
  color: #e9d5ff;
}

@media (max-width: 960px) {
  .ref-privacy__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .ref-privacy {
    padding: 3rem 0;
  }

  .ref-privacy__cards {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .ref-privacy-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.42rem 0.48rem;
    padding: 0.82rem 0.72rem 0.78rem;
    align-items: stretch;
  }

  .ref-privacy-card__title,
  .ref-privacy-card__role {
    grid-column: 1 / -1;
  }

  .ref-privacy-card__role {
    margin-bottom: 0.48rem;
    padding-bottom: 0.52rem;
  }

  .ref-privacy-card__block--can,
  .ref-privacy-card__block--cannot {
    margin-top: 0;
    padding: 0.52rem 0.48rem 0.56rem;
    min-width: 0;
    height: 100%;
  }

  .ref-privacy-card__block--cannot {
    padding-top: 0.52rem;
  }

  .ref-privacy-card__block--cannot::before {
    display: none;
  }

  .ref-privacy-card__label {
    margin-bottom: 0.38rem;
    font-size: 0.66rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
  }

  .ref-privacy-card__list {
    gap: 0.28rem;
  }

  .ref-privacy-card__list li {
    font-size: 0.76rem;
    line-height: 1.38;
    padding-left: 0.78rem;
  }

  .ref-privacy-card__list li::before {
    font-size: 0.48rem;
    line-height: 1.55;
  }

  .ref-privacy-card__br-sm {
    display: block;
    margin-top: 0.04rem;
  }

  .ref-privacy-card__list--invite {
    gap: 0.3rem;
  }

  .ref-privacy-card__list-item--group-start {
    margin-top: 0.22rem;
    padding-top: 0.34rem;
  }
}

/* ── FAQ ── */
.ref-faq {
  padding: 3.25rem 0;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.012);
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.ref-faq__eyebrow {
  text-align: center;
  margin-bottom: 0.35rem;
}

.ref-faq__title {
  margin: 0 0 0.65rem;
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ref-faq__desc {
  margin: 0 auto 2rem;
  max-width: 32rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  color: var(--text-dim);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item__body {
  padding: 0 1.15rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item__body a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ref-faq__more {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.ref-faq__more a {
  color: var(--text-muted);
}

.ref-faq__more a:hover {
  color: var(--cyan);
}

/* ── Final CTA ── */
.ref-cta {
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ref-cta__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.ref-cta__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ref-cta__sub {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.ref-cta__phones {
  position: relative;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone--cta {
  width: 140px;
  position: absolute;
  transform: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.phone--cta-back {
  left: 50%;
  transform: translateX(calc(-50% - 50px)) rotate(-8deg);
  opacity: 0.75;
  z-index: 1;
}

.phone--cta-front {
  left: 50%;
  transform: translateX(calc(-50% + 30px)) rotate(4deg);
  z-index: 2;
}

.phone__screen--mini {
  padding: 0.75rem;
  gap: 0.5rem;
}

.phone-mini-block {
  height: 2.5rem;
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.phone-mini-block--short { height: 1.25rem; width: 60%; }

.phone-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 3rem;
  margin-top: auto;
}

.phone-mini-bars span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--purple-bright), transparent);
}

.phone-mini-bars span:nth-child(1) { height: 40%; }
.phone-mini-bars span:nth-child(2) { height: 70%; }
.phone-mini-bars span:nth-child(3) { height: 55%; }

.phone-mini-gauge {
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid var(--purple-bright);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--purple-bright);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.35);
}

.phone-mini-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.phone-mini-kpis span {
  height: 1.5rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.ref-cta__diamond {
  display: none;
  justify-content: center;
  align-items: center;
}

.ref-cta__diamond svg {
  width: min(280px, 40vw);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(124, 58, 237, 0.45));
}

/* ── Footer ── */
.lp-footer {
  padding: 2.5rem 0 calc(2rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}

.lp-footer__grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

.lp-footer__tagline {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.25rem;
}

.lp-footer__links a {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.lp-footer__links a:hover { color: var(--cyan); }

.lp-footer__social {
  display: flex;
  gap: 0.65rem;
}

.lp-social {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: border-color 0.15s, color 0.15s;
}

.lp-social:hover {
  border-color: var(--border-bright);
  color: var(--text);
}

.lp-footer__legal {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.65;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin: 0;
}

.lp-footer__copy {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
}

/* ── Mobile (reference-first) ── */
@media (max-width: 767px) {
  html {
    font-size: calc(14px * var(--lp-type-scale));
  }

  .container {
    padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
  }

  .lp-header {
    padding: 0.5rem 0;
  }

  .lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .lp-header__cta {
    margin-left: auto;
  }

  .lp-header__cta .btn--sm {
    display: inline-flex;
    padding: 0.45rem 0.7rem;
    font-size: 0.68rem;
    gap: 0.35rem;
  }

  .lp-header__cta .btn__tiktok {
    width: 0.85rem;
    height: 0.85rem;
  }

  .lp-menu-btn {
    flex-shrink: 0;
  }

  .hero {
    padding-top: calc(5rem + env(safe-area-inset-top, 0px));
    padding-right: 0;
    padding-bottom: 2rem;
    padding-left: 0;
  }

  .hero--final {
    padding-top: calc(5.75rem + env(safe-area-inset-top, 0px));
  }

  .hero__grid {
    gap: 1.35rem;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__eyebrow {
    margin-bottom: 0.6rem;
    font-size: 0.68rem;
  }

  .hero__title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
    margin-bottom: 0.65rem;
    line-height: 1.2;
  }

  .hero__sub {
    margin-bottom: 1rem;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 2.55rem;
  }

  .hero__actions .btn--lg {
    padding: 0.72rem 1rem;
    font-size: 0.86rem;
  }

  .hero__features {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.35rem;
    width: 100%;
  }

  .hero-feat {
    width: auto;
    min-width: 0;
    padding: 0.4rem 0.15rem;
    border-radius: 8px;
    font-size: 0.46rem;
  }

  .hero-feat__icon {
    font-size: 0.85rem;
  }

  .hero__phone-col {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    margin-top: 0.25rem;
  }

  .hero__phone-col::before {
    width: 130%;
    height: 105%;
    transform: translate(-50%, -48%);
    left: 50%;
  }

  .sample-badge {
    top: 0.35rem;
    right: 0.15rem;
    font-size: 0.58rem;
  }

  .phone--hero {
    width: min(348px, 96vw);
    min-height: 620px;
  }

  .phone-demo-hint {
    font-size: 0.72rem;
    padding: 0.5rem 0.85rem 0.5rem 0.75rem;
    margin-top: 0.75rem;
  }

  .lp-screen-tabs {
    max-width: 100%;
    gap: 0.28rem;
  }

  .lp-screen-tab {
    font-size: 0.64rem;
    padding: 0.34rem 0.58rem;
  }

  .ui-shell-nav--embedded .ui-shell-nav__icon {
    font-size: 1.05rem;
  }

  .phone__nav--demo {
    padding: 0.5rem 0.4rem calc(0.55rem + env(safe-area-inset-bottom));
    gap: 0.15rem;
  }

  .phone-kpi__label { font-size: 0.46rem; }
  .phone-kpi__val { font-size: 0.9rem; }
  .phone-kpi__val--sm { font-size: 0.66rem; }
  .phone-section-label { font-size: 0.52rem; }
  .phone-pk-card { flex: 0 0 58%; }
  .phone-pk-card__score { font-size: 0.62rem; }

  .sample-note--hero {
    margin-top: 1rem;
    font-size: 0.68rem;
    padding: 0 0.25rem;
  }

  .ref-stats {
    padding: 0 0 2.25rem;
  }

  .ref-stats__title {
    margin-bottom: 0.85rem;
    font-size: clamp(1.05rem, 4.8vw, 1.25rem);
  }

  .ref-stats__bar {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.25rem;
    padding: 0.75rem 0.45rem 0.65rem;
    border-radius: var(--radius);
  }

  .ref-stat {
    padding: 0.25rem 0.1rem;
  }

  .ref-stat__icon {
    font-size: 0.75rem;
    margin-bottom: 0.15rem;
  }

  .ref-stat--gauge {
    padding: 0.15rem 0;
  }

  .ref-gauge {
    width: 2.85rem;
    height: 2.85rem;
    margin: 0 auto;
  }

  .ref-gauge__val {
    font-size: 0.62rem;
  }

  .ref-stat__val {
    font-size: 0.82rem;
  }

  .ref-stat__label {
    font-size: 0.5rem;
    line-height: 1.2;
  }

  .ref-stats__bar[data-sample]::after {
    top: 0.55rem;
    right: 0.65rem;
    font-size: 0.55rem;
  }

  .ref-feature {
    padding: 2.1rem 0;
  }

  .ref-feature__grid,
  .ref-dual-grid,
  .ref-ai-grid {
    gap: 1.35rem;
  }

  .ref-feature__title {
    font-size: clamp(1.15rem, 4.8vw, 1.4rem);
  }

  .ref-feature__desc {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .ref-checklist li {
    font-size: 0.84rem;
    padding: 0.3rem 0 0.3rem 1.25rem;
  }

  .ui-card {
    padding: 1rem;
    border-radius: var(--radius);
  }

  .ui-card--compact {
    padding: 0.95rem 1rem;
  }

  [data-sample]::after {
    top: 0.55rem;
    right: 0.6rem;
    font-size: 0.52rem;
  }

  .ref-dual-grid {
    gap: 2.5rem;
  }

  .ref-dual-cards {
    margin-top: 1rem;
  }

  .ui-opponent {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 0.35rem 0.45rem;
    font-size: 0.74rem;
  }

  .ui-opponent__bar {
    grid-column: 2 / 3;
  }

  .ui-opponent em {
    grid-row: 1;
    grid-column: 3;
  }

  .ref-faq {
    padding: 2.1rem 0;
  }

  .ref-faq__title {
    font-size: clamp(1.15rem, 4.8vw, 1.4rem);
  }

  .ref-faq__desc {
    font-size: 0.86rem;
    margin-bottom: 1.35rem;
  }

  .faq-item summary {
    padding: 0.95rem 1rem;
    font-size: 0.88rem;
    min-height: 3rem;
    line-height: 1.45;
    padding-right: 2rem;
  }

  .faq-item summary::after {
    margin-top: 0.1rem;
  }

  .faq-item__body {
    padding: 0 1rem 0.95rem;
    font-size: 0.84rem;
  }

  .ref-cta {
    padding: 2.1rem 0 2.35rem;
  }

  .ref-cta__grid {
    gap: 1.15rem;
    text-align: center;
  }

  .ref-cta__phones {
    height: 165px;
    order: 2;
  }

  .ref-cta__copy {
    order: 1;
  }

  .ref-cta__title {
    font-size: clamp(1.3rem, 5.5vw, 1.65rem);
  }

  .ref-cta__sub {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .ref-cta__copy .btn {
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }

  .phone--cta {
    width: 108px;
  }

  .phone--cta-back {
    transform: translateX(calc(-50% - 36px)) rotate(-8deg);
  }

  .phone--cta-front {
    transform: translateX(calc(-50% + 20px)) rotate(4deg);
  }

  .ref-cta__diamond {
    display: flex;
    order: 3;
    opacity: 0.55;
    margin-top: -0.5rem;
  }

  .ref-cta__diamond svg {
    width: min(160px, 48vw);
  }

  .lp-footer {
    padding: 2rem 0 calc(1.75rem + env(safe-area-inset-bottom));
  }

  .lp-footer__grid {
    text-align: center;
    gap: 1.25rem;
  }

  .lp-footer__links {
    justify-content: center;
    gap: 0.5rem 1rem;
  }

  .lp-footer__social {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .lp-nav { display: flex; }
  .lp-menu-btn { display: none; }

  .lp-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .lp-nav {
    justify-self: center;
  }

  .hero__grid--centered {
    max-width: 26rem;
  }

  .hero__grid--demo-hero {
    max-width: min(100%, 520px);
  }

  .phone--hero {
    width: min(460px, 92vw);
    max-width: 460px;
    min-height: 700px;
  }

  .phone--demo .phone-kpi__label { font-size: 0.48rem; }
  .phone--demo .phone-section-label { font-size: 0.52rem; }
  .phone--demo .phone-kpi__val { font-size: 0.92rem; }
  .phone--demo .phone-tab-title { font-size: 0.82rem; }
  .phone--demo .phone-demo-hint { font-size: 0.85rem; }

  .ref-stats__bar {
    grid-template-columns: repeat(5, 1fr);
    padding: 1.5rem 2rem;
    gap: 0.4rem;
  }

  .ref-gauge {
    width: 5.5rem;
    height: 5.5rem;
  }

  .ref-gauge__val { font-size: 1.15rem; }

  .ref-feature__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
    align-items: center;
  }

  .ref-feature__cards--2,
  .ref-feature__cards--battle {
    grid-template-columns: 1fr 1fr;
  }

  .ref-dual-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
  }

  .ref-ai-grid {
    grid-template-columns: 0.9fr 1fr 1fr;
    gap: 1.25rem;
    align-items: start;
  }

  .ref-cta__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    text-align: center;
  }

  .ref-cta__phones {
    height: 240px;
    justify-content: center;
  }

  .phone--cta { width: 140px; }

  .phone--cta-back {
    transform: translateX(-20px) rotate(-10deg);
  }

  .phone--cta-front {
    transform: translateX(60px) rotate(5deg);
  }

  .ref-cta__diamond { display: flex; }

  .lp-footer__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .lp-footer__links {
    justify-content: center;
  }

  .lp-footer__social {
    justify-content: center;
  }
}

@media (min-width: 960px) {
  .hero { padding-top: 6rem; }

  .hero--final {
    padding-top: calc(5.85rem + env(safe-area-inset-top));
  }

  .hero-feat {
    width: 4.25rem;
    padding: 0.5rem 0.35rem;
    font-size: 0.56rem;
  }
}

/* ── Premium LP sections (Linear / Apple tone) ── */
.lp-section-title {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.lp-metrics {
  position: relative;
  z-index: 5;
  padding: 2.75rem 0 2rem;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-metrics__inner {
  position: relative;
  z-index: 1;
}

.lp-metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.15rem;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.14), rgba(34, 211, 238, 0.08));
}

.lp-metrics__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 5.75rem;
  padding: 0.9rem 0.55rem;
  border-radius: var(--radius-lg);
  background: rgba(8, 10, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.lp-metrics__label {
  order: -1;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lp-metrics__val {
  font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.lp-metrics__suffix {
  font-size: 0.72em;
  font-weight: 700;
  margin-left: 0.06em;
}

.lp-compare {
  padding: 3.5rem 0;
  position: relative;
  z-index: 4;
  background: var(--bg);
}

.lp-compare__lead {
  margin: -0.65rem auto 1.25rem;
  max-width: 22rem;
  text-align: center;
  font-size: clamp(0.72rem, 3vw, 0.84rem);
  line-height: 1.65;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.95);
}

.lp-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  align-items: stretch;
}

.lp-compare__grid--split {
  grid-template-columns: 1fr 1fr;
}

.lp-compare__col {
  padding: 0.85rem 0.65rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  min-width: 0;
}

.lp-compare__col--without {
  border-color: rgba(248, 113, 113, 0.15);
}

.lp-compare__col--with {
  border-color: rgba(168, 85, 247, 0.28);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.1), rgba(8, 10, 18, 0.85));
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.08);
}

.lp-compare__head {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.lp-compare__col--without .lp-compare__head { color: rgba(248, 113, 113, 0.9); }
.lp-compare__col--with .lp-compare__head { color: rgba(192, 132, 252, 0.95); }

.lp-compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lp-compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  padding-left: 0;
  font-size: 0.62rem;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.78);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lp-compare__list li::before {
  display: none;
}

.lp-compare__mark {
  flex-shrink: 0;
  line-height: 1.35;
}

.lp-compare__item--bad .lp-compare__mark {
  opacity: 0.85;
}

.lp-compare__item--good .lp-compare__mark {
  filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.35));
}

.lp-features {
  padding: 3.5rem 0 4rem;
  position: relative;
  z-index: 4;
  background: var(--bg);
}

.lp-features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.lp-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-height: 6.5rem;
  padding: 0.95rem 0.85rem;
  border-radius: var(--radius-lg);
  background: rgba(14, 16, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-feature-card:hover {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.lp-feature-card--soon {
  opacity: 0.72;
}

.lp-feature-card__icon {
  font-size: 1.05rem;
  line-height: 1;
}

.lp-feature-card__title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lp-feature-card__desc {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.45;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .lp-metrics__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .lp-compare__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .lp-features__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.lp-metrics__val--cyan {
  color: var(--cyan);
}

@media (max-width: 767px) {
  .hero__title--minimal {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .hero__phone-stage {
    padding-bottom: 1rem;
  }

  .lp-metrics {
    padding-top: 2.25rem;
  }

  .lp-section-title {
    margin-bottom: 1rem;
  }

  .hero__beats li {
    font-size: 0.8rem;
  }

  .lp-metrics__val {
    font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  }

  .lp-feature-card__desc {
    font-size: 0.64rem;
  }
}

/* ── LP Final (2026-06-20) ── */
.hero--final {
  /* Longhands — avoid shorthand + later padding-bottom wiping top clearance */
  padding-top: calc(5.35rem + env(safe-area-inset-top, 0px));
  padding-right: 0;
  padding-bottom: 0.75rem;
  padding-left: 0;
  background: var(--bg);
}

.hero__intro {
  max-width: 24rem;
  margin-inline: auto;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.hero__title--final {
  margin: 0 0 0.5rem;
  font-size: clamp(1.28rem, 5.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.hero__title--value {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 0.85rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

.hero__title--value .hero__line {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(1.05rem, 4.8vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__em {
  white-space: nowrap;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub--value {
  margin: 0 0 0.55rem;
  font-size: clamp(0.82rem, 3.4vw, 0.98rem);
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.hero__sub--final {
  margin: 0 0 0.45rem;
  font-size: clamp(0.76rem, 3.1vw, 0.9rem);
  line-height: 1.55;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.88);
}

.hero__punch--accent {
  margin: 0 0 0.35rem;
  font-size: clamp(0.88rem, 3.8vw, 1.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero premium: 価値カード + CTA + デモ ── */
.hero--premium {
  padding-bottom: 0.25rem;
}

.hero__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 26rem;
  margin-inline: auto;
}

.lp-value-cards {
  list-style: none;
  margin: 0.65rem 0 0.85rem;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lp-value-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.12), rgba(8, 10, 20, 0.82));
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow:
    0 0 24px rgba(124, 58, 237, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lp-value-card__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.25), rgba(8, 145, 178, 0.12));
  border: 1px solid rgba(192, 132, 252, 0.45);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.35);
  color: #e9d5ff;
}

.lp-value-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  filter: drop-shadow(0 0 6px rgba(192, 132, 252, 0.55));
}

.lp-value-card__body {
  min-width: 0;
  text-align: left;
}

.lp-value-card__title {
  margin: 0 0 0.28rem;
  font-size: clamp(0.82rem, 3.4vw, 0.92rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.lp-value-card__em {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(129, 140, 248, 0.35));
}

.lp-value-card__desc {
  margin: 0;
  font-size: clamp(0.62rem, 2.6vw, 0.7rem);
  line-height: 1.45;
  color: rgba(148, 163, 184, 0.92);
}

.hero__cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
  margin-bottom: 0.15rem;
}

.hero__cta .btn {
  width: min(100%, 20rem);
}

.hero__cta .hero__trust {
  margin: 0;
}

.lp-hero-demo {
  position: relative;
  width: 100%;
  padding: 0.5rem 0 0;
  isolation: isolate;
}

.lp-hero-demo__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.lp-hero-demo__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.85;
}

.lp-hero-demo__glow--purple {
  left: 50%;
  top: 42%;
  width: min(95vw, 340px);
  height: 55%;
  transform: translate(-58%, -50%);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.55) 0%, transparent 68%);
}

.lp-hero-demo__glow--blue {
  left: 50%;
  top: 58%;
  width: min(80vw, 280px);
  height: 45%;
  transform: translate(-42%, -50%);
  background: radial-gradient(circle, rgba(34, 211, 238, 0.28) 0%, transparent 70%);
}

.lp-hero-demo__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(192, 132, 252, 0.35);
  box-shadow: 0 0 12px rgba(129, 140, 248, 0.45);
}

.lp-hero-demo__particle--1 {
  width: 4px;
  height: 4px;
  left: 18%;
  top: 28%;
  opacity: 0.7;
}

.lp-hero-demo__particle--2 {
  width: 3px;
  height: 3px;
  right: 16%;
  top: 38%;
  opacity: 0.55;
}

.lp-hero-demo__particle--3 {
  width: 5px;
  height: 5px;
  left: 72%;
  bottom: 22%;
  opacity: 0.45;
  background: rgba(34, 211, 238, 0.4);
}

.lp-hero-demo__stage {
  position: relative;
  z-index: 1;
  width: min(88vw, 380px);
  max-width: 100%;
  margin-inline: auto;
}

.lp-hero-demo__stage::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 115%;
  height: 78%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.35) 0%, rgba(56, 189, 248, 0.15) 45%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}

.lp-hero-demo__phone,
.lp-hero-demo #lp-phone-demo {
  width: 100%;
  max-width: 100%;
  height: min(72vh, 640px);
  min-height: min(480px, 68vh);
  max-height: 78vh;
  margin-inline: auto;
  box-sizing: border-box;
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.25),
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(124, 58, 237, 0.22);
}

@media (min-width: 768px) {
  .hero__stack {
    max-width: 42rem;
  }

  .lp-value-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .lp-hero-demo__stage {
    width: min(360px, 42vw);
  }
}

@media (min-width: 1024px) {
  .lp-value-cards:not(.lp-value-cards--band) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-value-cards:not(.lp-value-cards--band) .lp-value-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.85rem 0.65rem;
  }

  .lp-value-cards:not(.lp-value-cards--band) .lp-value-card__body {
    text-align: center;
  }
}

/* ── 成果訴求（デモ直下） ── */
.lp-outcome {
  position: relative;
  z-index: 4;
  padding: 2rem 0 1.75rem;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-outcome__inner {
  text-align: center;
  max-width: 22rem;
  margin-inline: auto;
}

.lp-outcome__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-outcome__lead {
  margin: 0;
  font-size: clamp(0.95rem, 4.2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

/* ── 4価値バンド（添付デザイン・常に4列同時表示） ── */
.lp-value-band {
  position: relative;
  z-index: 4;
  padding: 1rem 0 1.75rem;
  background: #030308;
  border-bottom: 1px solid rgba(168, 85, 247, 0.12);
  overflow: hidden;
}

.lp-value-band__strip {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(0.28rem, 1.2vw, 1rem);
  box-sizing: border-box;
}

.lp-value-cards--band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.22rem, 0.9vw, 0.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  overflow: visible;
}

.lp-value-cards--band .lp-value-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(0.18rem, 0.75vw, 0.55rem);
  min-width: 0;
  height: 100%;
  padding: clamp(0.32rem, 1.1vw, 0.85rem) clamp(0.22rem, 0.85vw, 0.9rem);
  border-radius: clamp(8px, 1.8vw, 16px);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.14), rgba(4, 6, 14, 0.88));
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow:
    0 0 24px rgba(124, 58, 237, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-sizing: border-box;
}

.lp-value-cards--band .lp-value-card__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(1.35rem, 5.8vw, 2.85rem);
  height: clamp(1.35rem, 5.8vw, 2.85rem);
  border-radius: clamp(6px, 1.4vw, 14px);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.25), rgba(8, 145, 178, 0.12));
  border: 1px solid rgba(192, 132, 252, 0.45);
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.3);
  color: #e9d5ff;
}

.lp-value-cards--band .lp-value-card__icon svg {
  width: clamp(0.68rem, 2.8vw, 1.35rem);
  height: clamp(0.68rem, 2.8vw, 1.35rem);
  filter: drop-shadow(0 0 5px rgba(192, 132, 252, 0.45));
}

.lp-value-cards--band .lp-value-card__body {
  container-type: inline-size;
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.lp-value-cards--band .lp-value-card__title {
  --lp-value-title-lh: 1.26;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  min-height: calc(var(--lp-value-title-lh) * 2em);
  margin: 0 0 clamp(0.08rem, 0.35vw, 0.28rem);
  font-size: clamp(0.34rem, 11cqi, 0.78rem);
  font-weight: 700;
  line-height: var(--lp-value-title-lh);
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.95);
}

.lp-value-cards--band .lp-value-card__line {
  display: block;
  white-space: nowrap;
}

.lp-value-cards--band .lp-value-card__line.lp-value-card__em {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(129, 140, 248, 0.3));
}

.lp-value-cards--band .lp-value-card__desc {
  margin: 0;
  flex: 1;
  font-size: clamp(0.32rem, 9.5cqi, 0.62rem);
  line-height: 1.32;
  color: rgba(148, 163, 184, 0.92);
  word-break: keep-all;
}

@media (min-width: 768px) {
  .lp-value-band {
    padding: 1.25rem 0 2rem;
  }

  .lp-value-cards--band .lp-value-card__title {
    --lp-value-title-lh: 1.32;
  }
}

/* ── 通算成績（LP見せ場） ── */
.lp-career {
  position: relative;
  z-index: 5;
  padding: 3.5rem 0 3.75rem;
  overflow: hidden;
  border-block: 1px solid rgba(251, 191, 36, 0.18);
}

.lp-career__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(251, 191, 36, 0.08) 0%, transparent 22%),
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(124, 58, 237, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 100%, rgba(34, 211, 238, 0.12) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255, 255, 255, 0.025) 39px,
      rgba(255, 255, 255, 0.025) 40px
    ),
    linear-gradient(180deg, #0a0814 0%, #05060c 48%, #060912 100%);
  pointer-events: none;
}

.lp-career__inner {
  position: relative;
  z-index: 1;
  max-width: 26rem;
}

.lp-career__intro {
  text-align: center;
  margin-bottom: 1.75rem;
}

.lp-career__tag {
  margin: 0 0 0.65rem;
  font-size: clamp(0.58rem, 2.4vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 191, 36, 0.88);
}

.lp-career__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.55rem, 7vw, 2.15rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.98);
}

.lp-career__em {
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 35%, #fcd34d 55%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(251, 191, 36, 0.35));
}

.lp-career__hook {
  margin: 0 0 1.15rem;
  font-size: clamp(0.82rem, 3.5vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(226, 232, 240, 0.9);
}

.lp-career__story {
  max-width: 22rem;
  margin-inline: auto;
}

.lp-career__story-line {
  margin: 0 0 0.65rem;
  font-size: clamp(0.72rem, 3vw, 0.82rem);
  line-height: 1.65;
  color: rgba(148, 163, 184, 0.92);
}

.lp-career__story-line--em {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.lp-career__story-line--em strong {
  color: rgba(251, 191, 36, 0.95);
  font-weight: 700;
}

/* 通算成績パネル本体 → shared/ui-shell/career-record.css (.cr-record) */

@media (min-width: 640px) {
  .lp-career__inner {
    max-width: 36rem;
  }
}

@media (min-width: 900px) {
  .lp-career {
    padding: 4.5rem 0 4.75rem;
  }

  .lp-career__inner {
    max-width: 52rem;
  }
}

/* ── 感情訴求フル幅 ── */
.lp-emotion-band {
  position: relative;
  z-index: 5;
  padding: 3.25rem 0;
  overflow: hidden;
  border-block: 1px solid rgba(168, 85, 247, 0.2);
}

.lp-emotion-band__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(124, 58, 237, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 80% 100%, rgba(34, 211, 238, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 10% 80%, rgba(236, 72, 153, 0.25) 0%, transparent 45%),
    linear-gradient(165deg, #12082a 0%, #050510 45%, #081828 100%);
  pointer-events: none;
}

.lp-emotion-band__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%, rgba(0, 0, 0, 0.25) 100%);
}

.lp-emotion-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 24rem;
  margin-inline: auto;
}

.lp-emotion-band__title {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 6.5vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.lp-emotion-band__em {
  display: inline-block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(129, 140, 248, 0.45));
}

.lp-emotion-band__lead {
  margin: 0;
  font-size: clamp(0.72rem, 3vw, 0.82rem);
  line-height: 1.65;
  color: rgba(203, 213, 225, 0.88);
}

@media (min-width: 768px) {
  .lp-outcome__inner,
  .lp-emotion-band__inner {
    max-width: 32rem;
  }

  .lp-emotion-band {
    padding: 4rem 0;
  }
}

.lp-demo {
  position: relative;
  z-index: 3;
  padding: 0 0 2.5rem;
  background: var(--bg);
}

.lp-demo__inner {
  display: flex;
  justify-content: center;
}

.lp-demo .hero__phone-col {
  width: 100%;
  max-width: 78vw;
}

.lp-demo .hero__phone-col::before {
  width: 100%;
  height: 85%;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -48%);
}

.lp-demo .phone--hero {
  width: 100%;
  max-width: 100%;
  min-height: min(76vh, 660px);
  max-height: 80vh;
}

.lp-metrics {
  padding: 3.5rem 0;
  border-top: none;
}

.lp-metrics__grid--five {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-metrics__grid--five .lp-metrics__cell--highlight {
  grid-column: 1 / -1;
}

.lp-metrics__cell--highlight {
  border-color: rgba(74, 222, 128, 0.22);
  background: linear-gradient(160deg, rgba(74, 222, 128, 0.08), rgba(8, 10, 18, 0.92));
}

.lp-compare {
  padding: 3.5rem 0;
}

.lp-compare__mark {
  font-weight: 700;
  font-size: 0.85em;
}

.lp-compare__item--bad .lp-compare__mark {
  color: rgba(248, 113, 113, 0.9);
}

.lp-compare__item--good .lp-compare__mark {
  color: rgba(74, 222, 128, 0.95);
}

.lp-explore {
  padding: 3.5rem 0;
  background: var(--bg);
  position: relative;
  z-index: 4;
}

.lp-explore__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.lp-explore-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 4.5rem;
  padding: 0.75rem 0.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: rgba(124, 58, 237, 0.08);
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.lp-explore-card:hover,
.lp-explore-card:focus-visible {
  border-color: rgba(168, 85, 247, 0.45);
  background: rgba(124, 58, 237, 0.14);
  transform: translateY(-1px);
  outline: none;
}

.lp-explore-card__icon {
  font-size: 1.15rem;
}

.lp-explore-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-trust {
  padding: 3.5rem 0;
  background: var(--bg);
  position: relative;
  z-index: 4;
}

.lp-trust__inner {
  max-width: 28rem;
  margin-inline: auto;
  text-align: center;
}

.lp-trust__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.05rem, 4vw, 1.3rem);
  font-weight: 700;
}

.lp-trust__lead {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.lp-trust__details {
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.85rem 1rem;
}

.lp-trust__details summary {
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  list-style: none;
}

.lp-trust__details summary::-webkit-details-marker {
  display: none;
}

.lp-trust__cards {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.lp-trust-card {
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 10, 18, 0.6);
}

.lp-trust-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
}

.lp-trust-card p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.lp-trust__more {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  text-align: center;
}

.lp-trust__more a {
  color: var(--text-muted);
}

.lp-trust__more a:hover {
  color: var(--cyan);
}

.ref-cta--clean {
  padding: 3.5rem 0 calc(3.5rem + env(safe-area-inset-bottom));
  overflow: visible;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ref-cta__inner {
  max-width: 22rem;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.ref-cta--clean .ref-cta__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.25rem, 5vw, 1.65rem);
}

.ref-cta--clean .btn {
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
}

.lp-footer__sample {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .lp-demo .phone--hero,
  .lp-demo__phone {
    width: 100%;
    min-height: min(74vh, 620px);
    max-height: 80vh;
  }

  .lp-demo__stage,
  .lp-demo .hero__phone-col {
    width: min(78vw, 360px);
    max-width: 78vw;
  }

  .lp-explore__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ref-cta--clean {
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
  }

  .ref-cta__diamond,
  .ref-cta__phones {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .lp-demo .phone--hero {
    width: min(420px, 42vw);
    min-height: min(75vh, 720px);
  }

  .lp-metrics__grid--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lp-metrics__grid--five .lp-metrics__cell--highlight {
    grid-column: auto;
  }

  .lp-compare__grid,
  .lp-compare__grid--split {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .lp-compare__col {
    padding: 1.1rem 1rem;
  }

  .lp-compare__head {
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
  }

  .lp-compare__list li {
    font-size: 0.78rem;
    line-height: 1.45;
    gap: 0.45rem;
  }
}

/* ── LP 95pt polish (2026-06-20) ── */
.hero__badge-br {
  display: none;
}

@media (max-width: 767px) {
  .hero__badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.55rem;
    line-height: 1.35;
  }

  .hero__badge-br {
    display: block;
  }
}

.lp-scene {
  padding: 0 0 1.25rem;
  background: var(--bg);
  position: relative;
  z-index: 3;
}

.lp-scene__inner {
  max-width: 22rem;
  margin-inline: auto;
  padding: 1rem 1.1rem;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168, 85, 247, 0.2);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.1), rgba(8, 10, 18, 0.88));
}

.lp-scene__title {
  margin: 0 0 0.55rem;
  font-size: clamp(0.95rem, 4.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.lp-scene__body {
  margin: 0;
  font-size: clamp(0.72rem, 3vw, 0.82rem);
  line-height: 1.55;
  color: rgba(148, 163, 184, 0.95);
}

/* ── LP asset narrative (2026-06-21) ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__tagline {
  margin: 0.65rem 0 0;
  font-size: clamp(0.62rem, 2.6vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(148, 163, 184, 0.88);
}

.lp-questions {
  padding: 1.25rem 0 1.5rem;
  background: var(--bg);
  position: relative;
  z-index: 3;
}

.lp-questions__inner {
  max-width: 22rem;
  margin-inline: auto;
}

.lp-questions__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lp-questions__item {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: clamp(0.72rem, 3.1vw, 0.82rem);
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-questions__item strong {
  color: rgba(192, 132, 252, 0.95);
  font-weight: 700;
}

.lp-questions__payoff {
  margin: 0.85rem 0 0;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.1), rgba(8, 10, 18, 0.88));
  text-align: center;
}

.lp-questions__payoff-line {
  margin: 0 0 0.28rem;
  font-size: clamp(0.72rem, 3vw, 0.82rem);
  line-height: 1.45;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.9);
}

.lp-questions__payoff-em {
  margin: 0.55rem 0 0;
  font-size: clamp(0.88rem, 3.8vw, 1.02rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-questions__cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.lp-questions__cta .btn {
  width: min(100%, 20rem);
}

.lp-questions__answer {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: clamp(0.88rem, 3.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.lp-questions__answer strong {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-world {
  padding: 0 0 1.25rem;
  background: var(--bg);
  position: relative;
  z-index: 3;
}

.lp-world__inner {
  max-width: 24rem;
  margin-inline: auto;
  padding: 1.1rem 1rem;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.12), rgba(8, 10, 18, 0.9));
}

.lp-world__title {
  margin: 0 0 0.75rem;
  font-size: clamp(0.92rem, 3.8vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.lp-world__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.lp-world__check {
  padding: 0.38rem 0.55rem;
  border-radius: 10px;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.22);
}

.lp-world__hook {
  margin: 0 0 0.85rem;
  font-size: clamp(0.88rem, 3.8vw, 1.05rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.lp-world__hook strong {
  color: rgba(34, 211, 238, 0.95);
}

.lp-world__saves {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-world__saves li {
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(168, 85, 247, 0.28);
}

.lp-world__note {
  margin: 0.75rem 0 0;
  font-size: clamp(0.68rem, 2.8vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(148, 163, 184, 0.92);
}

.lp-asset {
  position: relative;
  z-index: 5;
  padding: 2.75rem 0 2.5rem;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-asset__inner {
  max-width: 24rem;
  margin-inline: auto;
}

.lp-asset__lead {
  margin: -0.65rem 0 1.25rem;
  text-align: center;
  font-size: clamp(0.68rem, 2.8vw, 0.76rem);
  line-height: 1.5;
  color: rgba(148, 163, 184, 0.92);
}

.lp-asset__groups {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-asset__group-title {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(192, 132, 252, 0.9);
}

.lp-asset__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.lp-asset__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-asset__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 4.75rem;
  padding: 0.75rem 0.45rem;
  border-radius: var(--radius-lg);
  background: rgba(8, 10, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.lp-asset__card--highlight {
  border-color: rgba(74, 222, 128, 0.22);
  background: linear-gradient(160deg, rgba(74, 222, 128, 0.08), rgba(8, 10, 18, 0.92));
}

/* KPI強化 — 数字を主役に */
.lp-asset--kpi {
  padding: 3rem 0 2.75rem;
}

.lp-section-title--kpi {
  margin-bottom: 1.35rem;
  font-size: clamp(1rem, 4.5vw, 1.25rem);
}

.lp-asset--kpi .lp-asset__inner {
  max-width: 26rem;
}

.lp-asset--kpi .lp-asset__group-title {
  font-size: 0.62rem;
  margin-bottom: 0.55rem;
  opacity: 0.85;
}

.lp-asset--kpi .lp-asset__grid {
  gap: 0.55rem;
}

.lp-asset--kpi .lp-asset__card {
  min-height: 5.75rem;
  padding: 0.95rem 0.5rem 0.85rem;
  border-radius: 16px;
  border-color: rgba(168, 85, 247, 0.12);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.06), rgba(8, 10, 18, 0.94));
}

.lp-asset--kpi .lp-asset__card--highlight {
  border-color: rgba(74, 222, 128, 0.35);
  background: linear-gradient(160deg, rgba(74, 222, 128, 0.12), rgba(8, 10, 18, 0.92));
  box-shadow: 0 0 24px rgba(74, 222, 128, 0.08);
}

.lp-asset--kpi .lp-asset__label {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
  order: 2;
  margin-top: 0.15rem;
}

.lp-asset--kpi .lp-asset__val {
  order: 1;
  font-size: clamp(1.35rem, 6.5vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.lp-asset--kpi .lp-asset__val--sm {
  font-size: clamp(1rem, 4.5vw, 1.35rem);
}

.lp-asset--kpi .lp-asset__unit {
  font-size: 0.55em;
}

.lp-asset--kpi .lp-asset__meta {
  order: 3;
  font-size: 0.5rem;
  margin-top: 0.1rem;
}

.lp-asset--kpi .lp-asset__card {
  flex-direction: column;
}

.lp-asset__label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lp-asset__val {
  font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.95);
}

.lp-asset__val--sm {
  font-size: clamp(0.72rem, 3vw, 0.82rem);
  font-weight: 700;
  line-height: 1.35;
}

.lp-asset__unit {
  font-size: 0.72em;
  font-weight: 700;
  margin-left: 0.06em;
}

.lp-asset__meta {
  font-size: 0.56rem;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.88);
}

.lp-asset__group:first-child .lp-asset__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-asset__group:first-child .lp-asset__card--highlight {
  grid-column: 1 / -1;
}

@media (min-width: 480px) {
  .lp-asset__group:first-child .lp-asset__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-asset__group:first-child .lp-asset__card--highlight {
    grid-column: auto;
  }
}

.lp-compare__num {
  display: inline;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.95);
  margin-left: 0.12em;
}

.lp-compare__col--with .lp-compare__num {
  color: rgba(74, 222, 128, 0.95);
}

.lp-compare__col--with .lp-compare__item:last-child .lp-compare__mark {
  align-self: flex-start;
}

/* ── Brand blocks (2026-06-20) ── */
.lp-logo--header .lp-logo__icon {
  width: 2rem;
  height: 2rem;
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.4);
}

.lp-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lp-brand__mark {
  margin-bottom: 0.55rem;
}

.lp-brand__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: #000;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 0 32px rgba(124, 58, 237, 0.35);
}

.lp-brand__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-brand__name {
  margin: 0;
  font-size: clamp(1.55rem, 7vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-brand__kana {
  margin: 0.15rem 0 0.45rem;
  font-size: clamp(0.72rem, 3vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
}

.lp-brand__scope {
  margin: 0;
  font-size: clamp(0.68rem, 2.8vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.88);
}

.lp-brand__type {
  margin: 0.2rem 0 0;
  font-size: clamp(0.64rem, 2.6vw, 0.72rem);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(148, 163, 184, 0.95);
}

.lp-brand--hero {
  margin-bottom: 1rem;
}

.lp-brand--hero .lp-brand__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
}

.lp-brand--preface {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto 1.15rem;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168, 85, 247, 0.18);
  background: rgba(124, 58, 237, 0.06);
}

.lp-brand--preface .lp-brand__icon {
  width: 2.35rem;
  height: 2.35rem;
}

.lp-brand--preface .lp-brand__name {
  font-size: clamp(1.25rem, 5.5vw, 1.45rem);
}

.lp-brand__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 0.45rem;
  list-style: none;
  margin: 0.65rem 0 0.35rem;
  padding: 0;
}

.lp-brand__features li {
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-brand__save {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(34, 211, 238, 0.92);
}

.lp-brand--cta {
  margin-bottom: 1rem;
}

.lp-brand--cta .lp-brand__icon {
  width: 2.5rem;
  height: 2.5rem;
}

.lp-brand--cta .lp-brand__name {
  font-size: clamp(1.35rem, 6vw, 1.65rem);
}

.ref-cta--clean .ref-cta__title {
  margin-top: 0;
}

.hero--final {
  padding-bottom: 0.5rem;
}

.hero--premium.hero--final {
  padding-bottom: 0.25rem;
}

.lp-demo {
  padding-top: 0.5rem;
}

/* ── LP 95pt: overflow guard + compact pricing (2026-06-20) ── */
body.lp-page,
.lp-main,
.lp-value-cards,
.lp-hero-demo,
.lp-questions,
.lp-world,
.lp-demo,
.lp-asset,
.lp-asset__inner,
.lp-demo__inner,
.lp-demo__stage,
.hero__phone-col,
.hero__phone-col--spotlight {
  overflow-x: hidden;
  max-width: 100%;
}

/* Hero excluded from shared overflow-x group — setting overflow-x:hidden alone
   forces overflow-y to compute to auto in WebKit and clips the glass card. */
.hero,
.hero--final,
.hero--premium {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

#lp-phone-demo,
#lp-phone-demo .phone__screen,
#lp-phone-demo .phone-demo-body,
#lp-phone-demo .phone-demo-panel,
#lp-phone-demo .phone-demo-home,
#lp-phone-demo .phone-tab-page,
#lp-phone-demo [id^="lp-phone-"],
.lp-hero-demo__phone .phone__screen,
.lp-hero-demo__phone .phone-demo-body {
  overflow-x: hidden;
  max-width: 100%;
}

.lp-hero-demo #lp-phone-demo.phone--hero,
.lp-hero-demo .lp-hero-demo__phone {
  display: flex;
  flex-direction: column;
  height: min(72vh, 640px);
  min-height: min(480px, 68vh);
  max-height: 78vh;
  box-sizing: border-box;
}

.lp-hero-demo #lp-phone-demo .phone__screen {
  position: relative;
  flex: 1;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.lp-demo {
  padding: 0.5rem 0 2.5rem;
}

.lp-demo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.lp-demo__stage {
  width: min(80vw, 360px);
  max-width: 80vw;
  margin-inline: auto;
  position: relative;
  isolation: isolate;
}

.lp-demo__stage::before,
.lp-demo .hero__phone-col::before {
  display: none !important;
}

.lp-demo .phone--hero,
.lp-demo__phone {
  width: 100%;
  max-width: 100%;
  height: min(76vh, 660px);
  min-height: min(520px, 76vh);
  max-height: 80vh;
  margin-inline: auto;
  box-sizing: border-box;
}

/* LP phone demo — 本番アプリ同等: モック内で下部5タブを常時固定 */
#lp-phone-demo.phone--hero,
.lp-demo #lp-phone-demo {
  display: flex;
  flex-direction: column;
  height: min(76vh, 660px);
  min-height: min(520px, 76vh);
  max-height: 80vh;
  box-sizing: border-box;
}

/* LP phone demo — 本番アプリ同等: モック内で下部5タブを常時固定 */
#lp-phone-demo .phone__screen {
  position: relative;
  flex: 1;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

#lp-phone-demo .phone-demo-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

#lp-phone-demo .phone-demo-panel {
  padding-bottom: calc(3.45rem + env(safe-area-inset-bottom));
  overscroll-behavior-y: contain;
}

/* CAREER RECORD 通算PK — 842/847 クリップ防止（2,847 全体表示） */
#lp-phone-demo .cr-record,
#lp-phone-demo .cr-record__spotlight,
#lp-phone-demo .cr-record__spotlight-stat,
#lp-phone-demo .cr-record__spotlight-copy,
#lp-phone-demo .cr-record__spotlight-val,
.phone--demo .cr-record__spotlight,
.phone--demo .cr-record__spotlight-val {
  overflow: visible !important;
}

#lp-phone-demo .phone__nav,
#lp-phone-demo #lp-phone-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  flex-shrink: 0;
  margin-top: 0;
  opacity: 1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

#lp-phone-demo .home-pk-scroll,
#lp-phone-demo .phone-pk-scroll {
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
  max-width: 100%;
  -webkit-overflow-scrolling: auto;
}

#lp-phone-demo .home-pk-card {
  flex: 0 0 78%;
  max-width: 78%;
}

#lp-phone-demo .home-dashboard,
#lp-phone-demo .home-block,
#lp-phone-demo .home-kpi-grid {
  max-width: 100%;
}

.ref-pricing--compact {
  padding: 2.5rem 0;
}

.ref-pricing--compact .ref-pricing__desc {
  display: none;
}

.pricing-grid--lp {
  gap: 0.5rem;
}

#lp-pricing-personal-mount .price-card--lp-shelf .price-card__top,
#lp-pricing-personal-mount .price-card--lp-shelf .price-card__bottom,
#lp-pricing-personal-mount .price-card--lp-shelf .price-card__ribbon,
#lp-pricing-personal-mount .price-card--product-shelf .price-card__top,
#lp-pricing-personal-mount .price-card--product-shelf .price-card__bottom,
#lp-pricing-personal-mount .price-card--compare .price-card__top,
#lp-pricing-personal-mount .price-card--compare .price-card__bottom,
#lp-pricing-personal-mount .price-card--product-shelf .price-card__visual--store,
#lp-pricing-personal-mount .price-card--compare .price-card__visual--store,
#lp-pricing-personal-mount .price-card--product-shelf .price-card__value-chips,
#lp-pricing-personal-mount .price-card--compare .price-card__value-chips,
#lp-pricing-personal-mount .price-card--product-shelf .price-card__tier--hero,
#lp-pricing-personal-mount .price-card--compare .price-card__tier--hero,
#lp-pricing-personal-mount .price-card--product-shelf .price-card__product-details,
#lp-pricing-personal-mount .price-card--compare .price-card__product-details,
#lp-pricing-personal-mount .price-card--compare .price-card__compare-hook {
  display: none !important;
}

.hero__trust--four {
  max-width: 22rem;
}

.hero__trust--four li {
  font-size: 0.58rem;
  padding: 0.26rem 0.5rem;
}

/* Assurance — understated trust strip before the final CTA. Measurable facts only. */
.lp-assurance {
  padding: clamp(2.4rem, 6vw, 4rem) 0 clamp(1.2rem, 3vw, 2rem);
}
.lp-assurance__inner {
  max-width: 940px;
  text-align: center;
}
.lp-assurance__eyebrow {
  margin: 0 0 1.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.lp-assurance__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-assurance__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.lp-assurance__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--purple-bright);
  background: rgba(168, 85, 247, 0.10);
  border: 1px solid var(--border-bright);
}
.lp-assurance__icon svg { width: 20px; height: 20px; }
.lp-assurance__label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.005em;
}
.lp-assurance__note {
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 26ch;
}
.lp-assurance__legal {
  margin: 1.6rem 0 0;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.lp-assurance__legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.lp-assurance__legal a:hover { color: var(--purple-bright); text-decoration: underline; text-underline-offset: 3px; }
.lp-assurance__disclaimer {
  margin: 0.7rem 0 0;
  font-size: 0.7rem;
  line-height: 1.6;
  color: var(--text-dim);
}
@media (max-width: 680px) {
  .lp-assurance__grid { grid-template-columns: 1fr; gap: 10px; }
  .lp-assurance__item { flex-direction: row; text-align: left; justify-content: flex-start; }
  .lp-assurance__note { max-width: none; }
}
