/* Landing page only. Other pages (support, terms, privacy, /e/) use style.css. */
:root {
  --bg: #0E0D12;
  --surface: #16151C;
  --surface2: #1E1D26;
  --line: #26252F;
  --line-strong: #373640;
  --ink: #F4F3F7;
  --muted: #9A97A6;
  --faint: #6E6B7A;
  --accent: #FF5A94;
  --on-accent: #FFFFFF;
  --wrap: 1120px;
  --r-card: 14px;
  --r-btn: 12px;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont,
    "Hiragino Sans", "Noto Sans JP", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
  font-size: 16px;
  font-feature-settings: "palt";
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.num { font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
@media (min-width: 720px) { .wrap { padding: 0 32px; } }
.accent { color: var(--accent); transition: color .35s; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- type ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--muted); margin: 0 0 18px;
}
.kicker .n {
  font-size: 12px; letter-spacing: .08em; color: var(--accent);
  font-variant-numeric: tabular-nums; transition: color .35s;
}
.kicker .n::after {
  content: ""; display: inline-block; width: 22px; height: 1px;
  background: var(--line-strong); vertical-align: middle; margin-left: 10px;
}
h1, h2, h3 { font-weight: 800; letter-spacing: -.03em; margin: 0; }
h1 { font-size: clamp(38px, 9.4vw, 76px); line-height: 1.1; }
h2 { font-size: clamp(28px, 6vw, 46px); line-height: 1.22; margin-bottom: 18px; }
h3 { font-size: 18px; line-height: 1.4; letter-spacing: -.02em; }
.lead { color: var(--muted); font-size: clamp(15px, 2.2vw, 17px); margin: 0; max-width: 34em; }
.note { color: var(--faint); font-size: 12px; line-height: 1.7; }

/* ---------- header ---------- */
.top {
  position: sticky; top: 0; z-index: 20;
  background: rgba(14, 13, 18, .82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.top.scrolled { border-bottom-color: var(--line); }
.top .wrap { display: flex; align-items: center; gap: 28px; height: 60px; }
.logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-weight: 800; letter-spacing: -.02em; font-size: 17px;
}
.logo img { width: 28px; height: 28px; border-radius: 7px; }
.top nav { display: none; gap: 24px; margin-left: auto; }
.top nav a { color: var(--muted); font-size: 13px; font-weight: 700; text-decoration: none; }
.top nav a:hover { color: var(--ink); }
.top .cta { margin-left: auto; }
@media (min-width: 860px) {
  .top nav { display: flex; }
  .top .cta { margin-left: 0; }
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 6px 12px; font-size: 12px; font-weight: 700; color: var(--muted);
  text-decoration: none; white-space: nowrap;
}
.pill i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  display: block; transition: background .35s;
}

/* ---------- buttons / store chips (app.js renders into #stores) ---------- */
.stores { display: flex; flex-wrap: wrap; gap: 10px; }
.btn, .chip {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--r-btn); padding: 14px 20px; min-height: 50px;
  font-weight: 800; font-size: 14px; text-decoration: none;
}
.btn { background: var(--accent); color: var(--on-accent); border: 1px solid var(--accent); transition: background .35s, border-color .35s; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.chip { border: 1px solid var(--line-strong); color: var(--muted); }
.chip.off { opacity: .7; }

/* ---------- phone mock ---------- */
.phone {
  position: relative; width: 100%; max-width: 290px;
  aspect-ratio: 1179 / 2556;
  border-radius: 44px; padding: 9px;
  background: #050507;
  border: 1px solid #2E2D36;
  box-shadow: inset 0 0 0 2px #121117;
}
.phone img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 36px;
  background: var(--surface);
}

/* ---------- hero ---------- */
.hero { padding: 40px 0 72px; }
.hero .wrap { display: grid; gap: 44px; }
.hero .kicker { color: var(--ink); }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 30px; }
.hero-facts {
  display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 18px 0 0; padding: 0;
  list-style: none; font-size: 13px; color: var(--muted);
}
.hero-facts li { display: flex; align-items: center; gap: 7px; }
.hero-facts li::before {
  content: ""; width: 12px; height: 7px; margin-top: -3px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg); transition: border-color .35s;
}
.stage { position: relative; min-height: 520px; }
.stage .art {
  position: absolute; inset: 0 0 60px 18%;
  border-radius: var(--r-card); overflow: hidden;
  border: 1px solid var(--line);
}
.stage .art picture { display: block; width: 100%; height: 100%; }
.stage .art img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.stage .art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,13,18,0) 55%, rgba(14,13,18,.7) 100%);
}
.stage .phone { position: absolute; left: 0; bottom: 0; width: 56%; max-width: 250px; }
.stage .stub {
  position: absolute; right: 12px; bottom: 84px; z-index: 1;
  background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: 10px; padding: 12px 16px; text-align: right;
}
.stub .d {
  display: block; font-size: 40px; line-height: 1; font-weight: 800;
  letter-spacing: -.05em; color: var(--accent); transition: color .35s;
}
.stub .l { font-size: 10px; letter-spacing: .14em; color: var(--muted); font-weight: 700; }
@media (min-width: 900px) {
  .hero { padding: 64px 0 104px; }
  .hero .wrap { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; }
  .stage { min-height: 640px; }
  .stage .art img { object-position: 85% 50%; }
  .stage .phone { max-width: 280px; }
}

/* ---------- penlight / accent picker ---------- */
.picker { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); max-width: 480px; }
.picker p { margin: 0 0 12px; font-size: 13px; color: var(--muted); }
.picker .row { display: flex; gap: 8px; flex-wrap: wrap; }
.picker button {
  appearance: none; cursor: pointer; border: 1px solid var(--line-strong);
  background: transparent; border-radius: 8px; padding: 8px 10px 8px 8px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font: inherit; font-size: 12px; font-weight: 700;
}
.picker button i { width: 22px; height: 6px; border-radius: 3px; display: block; }
.picker button[aria-pressed="true"] { border-color: var(--ink); color: var(--ink); }
.picker button:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

/* ---------- sections ---------- */
.sec { padding: 88px 0; border-top: 1px solid var(--line); }
@media (min-width: 900px) { .sec { padding: 120px 0; } }
.sec-head { max-width: 720px; margin-bottom: 48px; }

/* before / after */
.swap { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.swap-row {
  display: grid; grid-template-columns: 1fr; gap: 6px;
  padding: 18px 20px; border-top: 1px solid var(--line); background: var(--surface);
}
.swap-row:first-child { border-top: 0; }
.swap-row .what { font-weight: 800; font-size: 15px; }
.swap-row .was { color: var(--faint); font-size: 13px; text-decoration: line-through; text-decoration-color: var(--line-strong); }
.swap-row .now { font-size: 13px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.swap-row .now::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  flex: none; transition: background .35s;
}
.swap-head { display: none; }
@media (min-width: 760px) {
  .swap-row, .swap-head { grid-template-columns: 180px 1fr 1fr; gap: 24px; align-items: center; }
  .swap-head {
    display: grid; padding: 12px 20px; background: var(--bg);
    font-size: 11px; letter-spacing: .12em; color: var(--faint); font-weight: 700;
  }
}
.swap-foot { margin-top: 20px; font-size: 15px; color: var(--muted); }
.swap-foot b { color: var(--ink); }

/* feature chapters */
.chapter { display: grid; gap: 40px; align-items: center; padding: 56px 0; border-top: 1px solid var(--line); }
.chapter:first-of-type { border-top: 0; padding-top: 0; }
.chapter .shot { display: flex; justify-content: center; }
.chapter .shot .phone { max-width: 270px; }
.chapter h3 { font-size: clamp(24px, 4.6vw, 34px); line-height: 1.28; letter-spacing: -.03em; margin-bottom: 14px; }
.chapter .lead { margin-bottom: 24px; }
.specs { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); max-width: 460px; }
.specs li {
  display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; color: #CFCDD8;
}
.specs li b { width: 76px; flex: none; font-size: 11px; letter-spacing: .08em; color: var(--faint); padding-top: 3px; }
@media (min-width: 900px) {
  .chapter { grid-template-columns: 1fr 1fr; gap: 72px; padding: 88px 0; }
  .chapter.flip .shot { order: 2; }
}

/* hotel callout */
.hotel-note {
  margin-top: 20px; padding: 14px 16px; border: 1px solid var(--line);
  border-radius: 10px; font-size: 12px; color: var(--muted); max-width: 460px;
}

/* small features */
.tiles { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.tile { background: var(--surface); padding: 22px 20px; }
.tile svg { width: 22px; height: 22px; color: var(--accent); margin-bottom: 14px; transition: color .35s; }
.tile b { display: block; font-size: 15px; margin-bottom: 4px; }
.tile p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.7; }
@media (min-width: 560px) { .tiles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .tiles { grid-template-columns: repeat(4, 1fr); } }

/* privacy */
.local { display: grid; gap: 28px; }
.local-card {
  border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px 22px;
  background: var(--surface);
}
.local-card .big { font-size: 13px; color: var(--muted); margin: 0 0 6px; }
.local-card .v { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 8px; }
.local-card p { margin: 0; font-size: 13px; color: var(--muted); }
@media (min-width: 900px) { .local { grid-template-columns: repeat(3, 1fr); } }

/* faq */
.faq { max-width: 820px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary {
  cursor: pointer; list-style: none; font-weight: 800; font-size: 16px;
  display: flex; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--muted); font-weight: 400; font-size: 20px; line-height: 1.2; flex: none; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.faq-more { margin-top: 22px; font-size: 14px; }
.faq-more a { color: var(--accent); text-underline-offset: 3px; transition: color .35s; }

/* closing ticket */
.ticket {
  max-width: 760px; margin: 0 auto; border-radius: var(--r-card); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface);
}
.ticket .band {
  background: var(--accent); color: var(--on-accent); padding: 26px 24px 30px;
  transition: background .35s, color .35s;
}
.ticket .band .top-row { display: flex; justify-content: space-between; font-size: 12px; font-weight: 800; opacity: .9; }
.ticket .band h2 { margin: 28px 0 0; font-size: clamp(28px, 6vw, 44px); }
.ticket .stub-area { position: relative; padding: 26px 24px 28px; }
.ticket .stub-area::before, .ticket .stub-area::after {
  content: ""; position: absolute; top: -11px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--bg); border: 1px solid var(--line);
}
.ticket .stub-area::before { left: -12px; }
.ticket .stub-area::after { right: -12px; }
.perf {
  height: 1px; margin: 0 0 22px;
  background: repeating-linear-gradient(to right, var(--line-strong) 0 5px, transparent 5px 11px);
}
.ticket .stub-area p { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.ticket .meta { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; }
.barcode {
  width: 96px; height: 24px;
  background: repeating-linear-gradient(to right,
    var(--line-strong) 0 2px, transparent 2px 4px,
    var(--line-strong) 4px 5px, transparent 5px 8px,
    var(--line-strong) 8px 11px, transparent 11px 12px);
}
.ticket .meta span { font-size: 10px; letter-spacing: .12em; color: var(--faint); font-weight: 700; }

/* ---------- footer ---------- */
.site-foot { border-top: 1px solid var(--line); margin-top: 88px; }
.site-foot footer { padding: 34px 0 48px; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; padding: 0; margin: 0 0 18px; }
.foot-nav a, .foot-meta a { color: var(--muted); font-size: 12px; text-decoration: none; }
.foot-nav a:hover, .foot-meta a:hover { color: var(--ink); }
.foot-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; justify-content: space-between; }
.foot-meta .small { color: var(--faint); font-size: 12px; }

/* ---------- reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .accent, .btn, .pill i, .kicker .n, .stub .d, .ticket .band, .tile svg { transition: none; }
}

/* ---------- additions ---------- */
h1 .line { display: block; white-space: nowrap; }
h1 { font-size: clamp(34px, 9vw, 64px); }
@media (min-width: 900px) and (max-width: 1100px) { h1 { font-size: 52px; } }
.trio {
  display: grid; gap: 56px; padding: 56px 0; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); margin: 0 0 56px;
}
.trio article { display: flex; flex-direction: column; align-items: flex-start; }
.trio .phone { max-width: 250px; margin: 0 auto 28px; }
.trio h3 { font-size: 20px; margin-bottom: 8px; }
.trio p:not(.kicker) { margin: 0; color: var(--muted); font-size: 14px; }
.trio .kicker { margin-bottom: 10px; }
@media (min-width: 900px) {
  .trio { grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 88px 0; margin-bottom: 88px; }
  .trio .phone { max-width: 240px; }
}
.trio + .chapter { border-top: 0; padding-top: 0; }
