/* =====================================================================
   トレマネ LP — styles
   Design tokens are sourced from the app theme (FlexColorScheme indigo +
   TcgPalette semantic colors). Cards = filled white + 1px border + soft
   shadow (r16). Only the primary CTA carries an indigo glow. Numerals use
   Bangers; Japanese body uses Noto Sans JP.
   ===================================================================== */

:root {
  /* brand */
  --primary: #6C5CE7;
  --primary-dark: #4B3FC4;
  --navy: #1B2A52;
  /* semantic (from TcgPalette) */
  --win: #C62828;
  --loss: #3547AC;
  --first: #FF6F00;
  --first-strong: #B35400;   /* AA: 先攻バッジの白文字用に濃色化（白で約5:1） */
  --second: #1565C0;
  --gold: #F4B740;
  /* surfaces & text */
  --bg: #F7F7FD;
  --surface: #FFFFFF;
  --surface-2: #F2F1FC;
  --surface-3: #EAE8FB;
  --text: #1B2440;
  --muted: #586074;        /* darkened from brief #6B7280 to clear WCAG-AA on tinted bg */
  --muted-on-dark: #C9CCE6;
  --border: #E4E4F2;
  --border-strong: #D5D5EC;
  /* effects */
  --hero-grad: linear-gradient(120deg, #1B2A52 0%, #3A2E8F 45%, #6C5CE7 100%);
  --cta-grad: linear-gradient(135deg, #6C5CE7 0%, #4B3FC4 100%);
  --shadow-card: 0 1px 2px rgba(27, 36, 64, .04), 0 6px 18px rgba(27, 36, 64, .06);
  --shadow-cta: 0 8px 22px rgba(108, 92, 231, .38);
  --radius-card: 16px;
  --radius-sm: 10px;
  --maxw: 1140px;
  --font-jp: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-display: "Bangers", var(--font-jp);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3 { line-height: 1.32; letter-spacing: .005em; margin: 0; font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ------------------------------------------------------------------ */
/* Header                                                              */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 247, 253, .82);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner { display: flex; align-items: center; gap: 18px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; color: var(--navy); }
.brand__logo { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-card); background: #fff; }
.brand__name { font-size: 18px; letter-spacing: .02em; }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { text-decoration: none; color: var(--text); font-size: 14.5px; font-weight: 500; opacity: .82; transition: opacity .15s; }
.nav a:hover { opacity: 1; }
.header-cta { margin-left: 22px; }

/* ------------------------------------------------------------------ */
/* Buttons / Store badges                                              */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-jp); font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none; white-space: nowrap; transition: transform .18s ease-out, box-shadow .18s ease-out, background .18s ease-out;
}
.btn--primary { background: var(--cta-grad); color: #fff; box-shadow: var(--shadow-cta); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(108,92,231,.46); }
.btn--ghost { background: var(--surface); color: var(--primary-dark); border: 1px solid var(--border-strong); }
.btn--ghost:hover { background: var(--surface-2); }
.btn--sm { padding: 9px 18px; font-size: 14px; }

.store-badges { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.store-badge {
  display: inline-block; border-radius: 12px; transition: transform .18s ease-out, filter .18s ease-out;
  line-height: 0; outline-offset: 3px;
}
.store-badge:hover { transform: translateY(-2px); filter: brightness(1.06); }
.store-badge img { height: 54px; width: auto; display: block; }
.store-note { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13.5px; font-weight: 500; }
.store-note--on-dark { color: var(--muted-on-dark); }
.store-note .dot { width: 7px; height: 7px; border-radius: 50%; background: #28C76F; box-shadow: 0 0 0 3px rgba(40,199,111,.22); }

/* ------------------------------------------------------------------ */
/* Hero                                                                */
/* ------------------------------------------------------------------ */
.hero { position: relative; background: var(--hero-grad); color: #fff; overflow: hidden; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; pointer-events: none;
}
.hero::before { width: 540px; height: 540px; right: -160px; top: -200px;
  background: radial-gradient(circle at center, rgba(244,183,64,.45), transparent 62%); }
.hero::after { width: 480px; height: 480px; left: -180px; bottom: -220px;
  background: radial-gradient(circle at center, rgba(108,92,231,.55), transparent 60%); }
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding: 78px 22px 92px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.26);
  color: #fff; font-weight: 700; font-size: 12.5px; letter-spacing: .06em;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(30px, 4.6vw, 50px); line-height: 1.18; font-weight: 900;
  letter-spacing: .01em; margin-bottom: 18px;
}
.hero h1 .accent { color: var(--gold); }
.hero__sub { font-size: 16.5px; color: rgba(255,255,255,.9); margin-bottom: 26px; max-width: 38ch; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 11px; }
.hero__bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: #fff; font-weight: 500; }
.hero__bullets .ck { flex: none; width: 22px; height: 22px; margin-top: 1px; color: var(--gold); }
.hero__cta { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.hero__art { position: relative; display: flex; justify-content: center; }
.hero__art::after {
  content: ""; position: absolute; inset: auto 0 -6% 0; height: 70%; z-index: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.22), transparent 65%);
  filter: blur(6px);
}
.hero__art img {
  position: relative; z-index: 1; width: min(100%, 480px);
  filter: drop-shadow(0 28px 50px rgba(10, 14, 40, .5));
}
.hero__caption { position: relative; z-index: 1; text-align: center; margin-top: 8px; color: rgba(255,255,255,.85); font-size: 13px; }
.hero__sample-tag {
  position: absolute; z-index: 2; top: 12px; right: 12px;
  background: rgba(27,42,82,.82); color: #fff; font-size: 11.5px; font-weight: 700;
  letter-spacing: .03em; padding: 5px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
}

/* ------------------------------------------------------------------ */
/* Section scaffolding                                                 */
/* ------------------------------------------------------------------ */
.section { padding: 84px 0; }
.section[id] { scroll-margin-top: 80px; }
.section--tint { background: var(--surface-2); }
.section--surface { background: var(--surface); }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head .kicker { color: var(--primary-dark); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.section-head h2 { font-size: clamp(24px, 3.3vw, 36px); margin: 12px 0 14px; color: var(--navy); }
.section-head p { color: var(--muted); font-size: 16px; margin: 0; }

/* card grids */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 28px 26px; box-shadow: var(--shadow-card);
}
.card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.card p { margin: 0; color: var(--muted); font-size: 14.7px; line-height: 1.78; }
.card__icon {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--surface-3); color: var(--primary-dark); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }

/* problem cards get a warm accent icon */
.card--problem .card__icon { background: #FDEDE9; color: var(--win); }

/* ------------------------------------------------------------------ */
/* Stats showcase                                                      */
/* ------------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.stats__visual {
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  box-shadow: var(--shadow-card); padding: 30px; display: grid; gap: 24px;
}
.stat-sample-tag {
  display: inline-flex; align-items: center; gap: 6px; align-self: start;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--border); padding: 4px 10px; border-radius: 999px;
}
.donut-row { display: flex; align-items: center; gap: 22px; }
.donut {
  --val: 62; flex: none; width: 132px; height: 132px; border-radius: 50%;
  background: var(--surface-3); /* conic 非対応ブラウザのフォールバック */
  background: conic-gradient(var(--primary) calc(var(--val) * 1%), var(--surface-3) 0);
  display: grid; place-items: center; position: relative;
}
.donut::after { content: ""; position: absolute; inset: 16px; background: var(--surface); border-radius: 50%; }
.donut__label { position: relative; z-index: 1; text-align: center; }
.donut__val { font-family: var(--font-display); font-size: 34px; letter-spacing: .04em; color: var(--navy); line-height: 1; }
.donut__cap { font-size: 11px; color: var(--muted); font-weight: 600; }
.donut-row .legend { display: grid; gap: 9px; font-size: 13.5px; }
.legend-item { display: flex; align-items: center; gap: 8px; color: var(--text); }
.legend-item .sw { width: 11px; height: 11px; border-radius: 3px; }

.bars { display: grid; gap: 16px; }
.bar-block { display: grid; gap: 7px; }
.bar-block .bar-top { display: flex; justify-content: space-between; align-items: baseline; }
.bar-block .bar-name { font-weight: 700; font-size: 13.5px; }
.bar-block .bar-name .badge-turn { font-size: 11px; padding: 2px 8px; border-radius: 999px; color: #fff; margin-right: 7px; }
.bar-block .bar-val { font-family: var(--font-display); font-size: 22px; letter-spacing: .03em; color: var(--navy); }
.bar-track { height: 12px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; }

.stats__list { display: grid; gap: 18px; }
.stats__list .row { display: flex; gap: 14px; align-items: flex-start; }
.stats__list .row .ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--surface-3); color: var(--primary-dark); display: grid; place-items: center; }
.stats__list .row .ic svg { width: 22px; height: 22px; }
.stats__list .row h3 { font-size: 16.5px; color: var(--navy); margin-bottom: 3px; }
.stats__list .row p { margin: 0; color: var(--muted); font-size: 14.3px; }

/* ------------------------------------------------------------------ */
/* Steps (how)                                                         */
/* ------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 30px 26px; box-shadow: var(--shadow-card); }
.step__num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--cta-grad); color: #fff;
  font-family: var(--font-display); font-size: 24px; letter-spacing: .04em;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { font-size: 17px; color: var(--navy); margin-bottom: 9px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ------------------------------------------------------------------ */
/* CTA band (mid-page + final)                                         */
/* ------------------------------------------------------------------ */
.cta-band { background: var(--hero-grad); color: #fff; border-radius: 26px; padding: 52px 44px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 60ch; margin: 0 auto 26px; font-size: 16px; }
.cta-band .store-badges { justify-content: center; }
.cta-band .store-note { justify-content: center; margin-top: 16px; }

/* ------------------------------------------------------------------ */
/* Tournament (coming soon)                                            */
/* ------------------------------------------------------------------ */
.soon-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold); color: #5A4300; font-weight: 800; font-size: 12.5px; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.note-inline { display: flex; gap: 9px; align-items: flex-start; color: var(--muted); font-size: 13px; margin-top: 18px; }
.note-inline svg { flex: none; width: 17px; height: 17px; margin-top: 2px; color: var(--muted); }

/* ------------------------------------------------------------------ */
/* FAQ                                                                 */
/* ------------------------------------------------------------------ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 4px 24px; box-shadow: var(--shadow-card);
}
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 30px 18px 0; position: relative;
  font-weight: 700; color: var(--navy); font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 2px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform: translateY(-65%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-35%) rotate(225deg); }
.faq details p { margin: 0 0 18px; color: var(--muted); font-size: 14.7px; }

/* ------------------------------------------------------------------ */
/* Comparison table (Free vs Premium)                                  */
/* ------------------------------------------------------------------ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.compare-wrap { max-width: 880px; margin: 0 auto; }
.compare {
  width: 100%; border-collapse: collapse; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.compare th, .compare td { padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 14.5px; vertical-align: middle; }
.compare thead th { background: var(--surface-2); color: var(--navy); font-weight: 700; }
.compare tbody th { text-align: left; font-weight: 500; color: var(--text); }
.compare th:not(:first-child), .compare td:not(:first-child) { text-align: center; width: 24%; }
.compare th:nth-child(3), .compare td:nth-child(3) { background: rgba(108,92,231,.07); }
.compare thead th:nth-child(3) { color: var(--primary-dark); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare .yes { display: inline-flex; color: #1E8E4A; }
.compare .yes svg { width: 20px; height: 20px; }
.compare .no { color: var(--muted); font-weight: 700; }
.compare .lim { color: var(--text); font-size: 13px; font-weight: 600; }
.compare-note { display: flex; gap: 9px; align-items: flex-start; justify-content: center; max-width: 760px; margin: 18px auto 0; color: var(--muted); font-size: 13.5px; text-align: left; }
.compare-note svg { flex: none; width: 18px; height: 18px; color: var(--primary-dark); margin-top: 1px; }
@media (max-width: 560px) {
  .compare th, .compare td { padding: 11px 10px; font-size: 13px; }
  .compare th:not(:first-child), .compare td:not(:first-child) { width: 26%; }
}

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--navy); color: #C9CCE6; padding: 56px 0 40px; }
.site-footer .ft-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.site-footer .brand__name { color: #fff; }
.site-footer .ft-tagline { color: #AEB2D6; font-size: 14px; max-width: 46ch; margin: 16px 0 0; line-height: 1.8; }
.site-footer .ft-links { display: grid; gap: 12px; }
.site-footer .ft-links a { color: #C9CCE6; text-decoration: none; font-size: 14.5px; opacity: .9; }
.site-footer .ft-links a:hover { opacity: 1; text-decoration: underline; }
.site-footer .ft-store { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.site-footer .ft-store .store-badge img { height: 40px; }
.site-footer .ft-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; font-size: 12.5px; color: #8E93BE; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ------------------------------------------------------------------ */
/* Sticky mobile download bar                                          */
/* ------------------------------------------------------------------ */
.mobile-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px; justify-content: center; box-shadow: 0 -6px 20px rgba(27,36,64,.08);
}
.mobile-bar .store-badge { flex: 0 1 auto; }
.mobile-bar .store-badge img { height: 40px; width: auto; }

/* ------------------------------------------------------------------ */
/* Responsive                                                          */
/* ------------------------------------------------------------------ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 60px 22px 72px; text-align: center; }
  .hero__sub { max-width: none; margin-inline: auto; }
  .hero__bullets { justify-items: center; }
  .hero__bullets li { text-align: left; }
  .hero__cta { align-items: center; }
  .hero__art { order: -1; }
  .stats { grid-template-columns: 1fr; }
  .grid--3, .steps { grid-template-columns: repeat(2, 1fr); }
  .site-footer .ft-top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .grid--3, .grid--2, .steps { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .cta-band { padding: 40px 22px; border-radius: 20px; }
  .donut-row { flex-direction: column; align-items: flex-start; }
  .store-badges { justify-content: center; }
  .hero__cta .store-badges { justify-content: center; }
  .mobile-bar { display: flex; }
  body { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
}

/* Accessibility: focus + reduced motion */
a:focus-visible, .btn:focus-visible, .store-badge:focus-visible, summary:focus-visible {
  outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 8px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ------------------------------------------------------------------ */
/* Ratings (store social proof)                                        */
/* ------------------------------------------------------------------ */
.ratings-section { padding: 64px 0; }
.ratings-section .section-head { margin-bottom: 30px; }
.ratings__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 680px; margin: 0 auto; }
.rating-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 28px 24px; box-shadow: var(--shadow-card); text-decoration: none; color: var(--text);
  transition: transform .18s ease-out, box-shadow .18s ease-out;
}
.rating-card:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(27,36,64,.10); }
.rating-card__store { font-weight: 700; color: var(--muted); font-size: 14px; letter-spacing: .02em; }
.rating-card__score { font-family: var(--font-display); font-size: 52px; line-height: 1; color: var(--navy); letter-spacing: .04em; }
.rating-card__count { color: var(--muted); font-size: 13px; }
.stars { position: relative; display: inline-block; line-height: 0; height: 20px; }
.stars__row { display: inline-flex; gap: 3px; white-space: nowrap; }
.stars__row svg { width: 20px; height: 20px; }
.stars__bg { color: #E2E0F0; }
.stars__fg { color: var(--gold); position: absolute; top: 0; left: 0; overflow: hidden; }
.ratings__note { text-align: center; color: var(--muted); font-size: 12.5px; margin: 22px auto 0; max-width: 600px; }
@media (max-width: 560px) { .ratings__grid { grid-template-columns: 1fr; max-width: 320px; } }

/* ------------------------------------------------------------------ */
/* App screenshots (実機スクショの埋め込み)                            */
/* ダークなアプリ画面を端末フレームで包み、ライト面に浮かないようにする */
/* ------------------------------------------------------------------ */
.device-frame {
  position: relative;
  width: min(100%, 300px);
  margin-inline: auto;
  padding: 7px;
  background: #0E1226;
  border-radius: 30px;
  box-shadow: 0 24px 50px rgba(10, 14, 40, .30), inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.device-frame__screen { border-radius: 23px; overflow: hidden; line-height: 0; background: #000; }
.device-frame__screen img { display: block; width: 100%; height: auto; aspect-ratio: 760 / 1652; filter: none; }
.device-frame--crop .device-frame__screen img { aspect-ratio: 760 / 1180; object-fit: cover; object-position: top; }
.device-frame--tilt { transform: rotate(-2deg); }
.hero__art .device-frame { position: relative; z-index: 1; }

.shot-backdrop {
  background: linear-gradient(135deg, rgba(27, 42, 82, .06), rgba(108, 92, 231, .05));
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
}
.section--tint .shot-backdrop { background: var(--surface); }

.shot-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.shot-eyebrow { color: var(--primary-dark); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.shot-showcase__copy h3 { font-size: clamp(20px, 2.6vw, 27px); color: var(--navy); margin: 10px 0 12px; line-height: 1.36; }
.shot-showcase__copy p { color: var(--muted); font-size: 15.5px; line-height: 1.8; margin: 0; }

.shot-pair { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.shot-pair .device-frame { width: min(100%, 244px); }
.shot-pair__arrow { color: var(--primary-dark); font-weight: 700; font-size: 14px; line-height: 1.45; text-align: center; }

.shot-cap { text-align: center; margin: 12px 0 0; color: var(--muted); font-size: 13px; }

@media (max-width: 960px) {
  .shot-showcase { grid-template-columns: 1fr; gap: 28px; }
  .shot-showcase .device-frame { order: 2; }
  .shot-pair { grid-template-columns: 1fr; gap: 14px; }
  .shot-pair__arrow { transform: rotate(90deg); justify-self: center; }
  .shot-pair .device-frame { width: min(100%, 280px); }
}
@media (max-width: 640px) {
  .device-frame { width: min(100%, 264px); }
  .device-frame--tilt { transform: none; }
  .shot-backdrop { padding: 20px; border-radius: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .device-frame--tilt { transform: none; }
}

/* ===== マイルストーン（2万人突破）アピール ===== */
.milestone-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 14px; letter-spacing: .02em; line-height: 1.2;
  padding: 8px 16px; border-radius: var(--radius-sm);
  box-shadow: 0 6px 18px rgba(244, 183, 64, .35);
}
.milestone-badge svg { width: 18px; height: 18px; }
.hero__milestone { margin-bottom: 18px; }

/* social proof セクションの大型スタット */
.milestone-stat {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 4px; margin: 0 auto 32px; padding: 22px 28px; max-width: 540px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.milestone-stat__num {
  font-family: var(--font-display); font-weight: 400; line-height: 1; letter-spacing: .02em;
  font-size: clamp(48px, 9vw, 76px); color: var(--primary-dark);
}
.milestone-stat__num .plus { color: var(--gold); }
.milestone-stat__label { font-weight: 800; font-size: 15px; color: var(--navy); }
.milestone-stat__sub { font-size: 13px; color: var(--muted); }
