/* ============================================================
   Toki — 宣伝用ランディングページ専用スタイル
   トークンは styles.css（@import）から。ここはLPの版面のみ。
   light/dark はトークンの再マップで自動対応。
   ============================================================ */

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

/* LP background scale — light-first. base is a warm near-white; beige becomes the
   tint band; clay-soft carries the closing CTA. Dark remaps to the warm low-light. */
:root { --lp-page: #faf7f0; --lp-band: #f1ece0; --lp-cta: #f0e6d4; }
.toki-dark { --lp-page: #211d17; --lp-band: #1b1712; --lp-cta: #262019; }

body {
  font-family: var(--font-sans);
  background: var(--lp-page);
  color: var(--text-strong);
  font-size: 17px;
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: color .3s ease;
}

::selection { background: var(--brand-soft); color: var(--brand-strong); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* density (Tweaks) — section rhythm */
:root { --section-pad: 116px; --shell: 1180px; }
[data-density="compact"] { --section-pad: 80px; }
[data-density="comfy"]   { --section-pad: 152px; }

/* ---------------- shell / section ---------------- */
.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 40px; }
section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.band-rail { background: var(--lp-band); }
.band-sunken { background: var(--lp-cta); }

.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand);
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px;
}
.eyebrow::before {
  content: "✦"; font-size: 12px; letter-spacing: 0;
  opacity: .9;
}
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow.center { justify-content: center; }

h2.s-title {
  font-size: clamp(30px, 4vw, 44px); font-weight: 900; line-height: 1.12;
  letter-spacing: -0.02em; margin: 0 0 18px; text-wrap: balance;
}
.s-lead { font-size: 18px; color: var(--text-muted); margin: 0; line-height: 1.7; text-wrap: pretty; }

/* tabular numerals helper already from toki base; alias */
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }
.unit { font-size: .62em; color: var(--text-muted); font-weight: 700; margin-left: 1px; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: 15.5px; font-weight: 700; line-height: 1;
  padding: 14px 22px; border-radius: var(--radius-md); cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .14s var(--ease-out), box-shadow .16s ease,
              background .16s ease, border-color .16s ease, filter .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--brand); color: var(--brand-ink);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { filter: brightness(1.05); box-shadow: var(--shadow-btn-hover); }
.btn-primary:active { filter: brightness(.97); box-shadow: var(--shadow-btn); }
.btn-ghost {
  background: transparent; color: var(--text-strong);
  border-color: var(--hair-strong);
}
.btn-ghost:hover { background: rgba(154,96,56,.07); border-color: var(--hair-strong); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn .ic { font-size: 16px; line-height: 0; }

/* ---------------- header ---------------- */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--lp-page) 82%, transparent);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .3s ease;
}
.lp-header.is-stuck { border-bottom-color: var(--border-hair); }
.lp-header .shell { display: flex; align-items: center; gap: 28px; height: 70px; }
.wordmark {
  display: inline-flex; align-items: baseline; gap: 9px;
  font-size: 22px; font-weight: 900; letter-spacing: .02em;
}
.wordmark .star { color: var(--brand); font-size: 18px; }
.wordmark .sub { font-size: 12px; font-weight: 500; color: var(--text-muted); letter-spacing: .04em; }
.lp-nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.lp-nav a {
  font-size: 14.5px; font-weight: 500; color: var(--text-muted);
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: color .15s ease, background .15s ease;
}
.lp-nav a:hover { color: var(--text-strong); background: rgba(154,96,56,.06); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 40px; height: 40px; flex: 0 0 auto; display: grid; place-items: center;
  border-radius: var(--radius-md); border: 1px solid var(--hair-strong);
  background: transparent; color: var(--text-strong); cursor: pointer; font-size: 17px;
  transition: background .15s ease, border-color .15s ease, transform .14s var(--ease-out);
}
.theme-toggle:hover { background: rgba(154,96,56,.07); transform: translateY(-1px); }
.theme-toggle .moon { display: none; }
.toki-dark .theme-toggle .sun { display: none; }
.toki-dark .theme-toggle .moon { display: inline; }

/* language toggle (JA / EN) */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 2px; flex: 0 0 auto;
  height: 40px; padding: 4px; border-radius: var(--radius-md);
  border: 1px solid var(--hair-strong); background: transparent; cursor: pointer;
  font-family: inherit; transition: border-color .15s ease;
}
.lang-toggle:hover { border-color: var(--brand); }
.lang-toggle .lg {
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; line-height: 1;
  padding: 6px 9px; border-radius: var(--radius-sm); color: var(--text-faint);
  transition: background .15s ease, color .15s ease;
}
html[data-lang="ja"] .lang-toggle .ja,
html[data-lang="en"] .lang-toggle .en { background: var(--brand); color: var(--brand-ink); }

/* ---------------- hero (shared) ---------------- */
.hero { position: relative; overflow: hidden; padding-top: 72px; }
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 13px; font-weight: 700; color: var(--brand-strong);
  background: var(--brand-soft); padding: 7px 14px; border-radius: var(--radius-pill);
  margin-bottom: 26px; letter-spacing: .01em;
}
.hero .pill .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--status-live);
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 72px); font-weight: 900; line-height: 1.04;
  letter-spacing: -0.03em; margin: 0 0 24px; text-wrap: balance;
}
.hero h1 .accent { color: var(--brand); }
.hero .hero-lead {
  font-size: clamp(17px, 1.6vw, 20px); color: var(--text-muted);
  line-height: 1.72; margin: 0 0 34px; max-width: 30em; text-wrap: pretty;
}
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero-note { font-size: 13.5px; color: var(--text-faint); margin-top: 18px; display: flex; align-items: center; gap: 7px; }
.hero-note::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--text-faint); }

/* variant visibility */
.hero-variant { display: none; }
body[data-hero="a"] #hero-a,
body[data-hero="b"] #hero-b,
body[data-hero="c"] #hero-c { display: block; }

/* hero A — split, screen on the right */
.heroA-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr); gap: 64px; align-items: center; }
.heroA-shot { position: relative; }
.heroA-shot .win { transform: rotate(.4deg); }

/* hero B — centered, quiet, screen below */
.heroB { text-align: center; }
.heroB .inner { max-width: 760px; margin: 0 auto; }
.heroB .hero-lead { margin-left: auto; margin-right: auto; }
.heroB .hero-cta { justify-content: center; }
.heroB .hero-note { justify-content: center; }
.heroB-shot { margin-top: 64px; }
.heroB-shot .win { max-width: 980px; margin: 0 auto; }
.heroB .mascot-wrap { margin: 0 auto 22px; }

/* hero C — data forward, asymmetric panel */
.heroC-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: stretch; }
.heroC-left {
  background: var(--surface-card); border: 1px solid var(--border-hair);
  border-radius: var(--radius-2xl); padding: 48px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; justify-content: center;
}
.heroC-stat { display: flex; align-items: flex-end; gap: 28px; margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--border-hair); }
.heroC-big { font-size: clamp(64px, 8vw, 104px); font-weight: 900; line-height: .9; letter-spacing: -0.04em; }
.heroC-big .pct { color: var(--brand); font-size: .42em; font-weight: 900; margin-left: 4px; }
.heroC-stat .cap { font-size: 14px; color: var(--text-muted); line-height: 1.5; padding-bottom: 8px; }
.heroC-right { display: flex; align-items: center; }
.heroC-right .win { width: 100%; transform: rotate(-.5deg); }

/* ---------------- window frame (screenshots) ---------------- */
.win {
  background: var(--surface-card); border: 1px solid var(--border-hair);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 2px 6px rgba(60,45,25,.06), 0 30px 60px -24px rgba(60,45,25,.30);
}
.win-bar {
  display: flex; align-items: center; gap: 12px; height: 38px; padding: 0 14px;
  background: var(--surface-rail); border-bottom: 1px solid var(--border-hair);
}
.win-bar .wm { font-size: 13px; font-weight: 700; color: var(--text-muted); display: inline-flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.win-bar .wm .star { color: var(--brand); }
.win-ctrls { margin-left: auto; display: flex; align-items: center; gap: 16px; color: var(--text-faint); font-size: 13px; }
.win-ctrls span { font-family: var(--font-sans); }
.win-shot { display: block; width: 100%; height: auto; background: var(--surface-page); }
.win-shot.crop { aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; }

/* ---------------- mascot ---------------- */
.mascot {
  image-rendering: pixelated; width: 72px; height: auto; flex: 0 0 auto;
  filter: drop-shadow(0 6px 10px rgba(60,45,25,.14));
}
.mascot-wrap { display: flex; align-items: center; gap: 16px; }
.mascot-say {
  position: relative; background: var(--surface-card); border: 1px solid var(--border-hair);
  border-radius: 14px; padding: 12px 16px; font-size: 14.5px; color: var(--text-strong);
  box-shadow: var(--shadow-card); max-width: 280px; line-height: 1.55;
}
.mascot-say::before {
  content: ""; position: absolute; left: -7px; top: 22px; width: 12px; height: 12px;
  background: var(--surface-card); border-left: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair); transform: rotate(45deg);
}

/* ---------------- features ---------------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat {
  background: var(--surface-card); border: 1px solid var(--border-hair);
  border-radius: var(--radius-xl); padding: 30px 28px; box-shadow: var(--shadow-card);
  transition: transform .18s var(--ease-out), box-shadow .18s ease;
}
.feat:hover { transform: translateY(-3px); box-shadow: 0 2px 6px rgba(60,45,25,.06), 0 22px 40px -22px rgba(60,45,25,.30); }
.feat .glyph {
  width: 46px; height: 46px; border-radius: var(--radius-md); display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-strong); font-size: 22px; margin-bottom: 20px;
  font-weight: 700;
}
.feat h3 { font-size: 18px; font-weight: 700; margin: 0 0 9px; letter-spacing: -.01em; }
.feat p { font-size: 14.5px; color: var(--text-muted); margin: 0; line-height: 1.66; text-wrap: pretty; }
.feat.wide { grid-column: span 2; }

/* companion strip */
.companion {
  display: flex; align-items: center; gap: 22px; justify-content: center;
  margin-top: 40px; padding: 22px 28px;
  background: var(--surface-card); border: 1px solid var(--border-hair);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-card);
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.companion .mascot { width: 56px; }
.companion p { margin: 0; font-size: 15.5px; color: var(--text-muted); line-height: 1.6; text-wrap: pretty; }

/* ---------------- how (3 steps) ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step .n {
  font-size: 15px; font-weight: 900; color: var(--brand); letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.step .n::before {
  counter-increment: step; content: "0" counter(step);
  font-size: 13px; color: var(--brand-ink); background: var(--brand);
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
}
.step h3 { font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.step p { font-size: 14.5px; color: var(--text-muted); margin: 0; line-height: 1.66; }
.step::after {
  content: ""; position: absolute; top: 33px; left: calc(100% - 14px); width: 28px;
  border-top: 2px dotted var(--hair-strong);
}
.step:last-child::after { display: none; }

/* ---------------- gallery ---------------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.gallery .win { transition: transform .2s var(--ease-out); }
.gallery .win:hover { transform: translateY(-4px); }
.gallery figcaption { margin: 16px 4px 0; }
.gallery figcaption b { font-size: 16px; font-weight: 700; display: block; margin-bottom: 4px; }
.gallery figcaption span { font-size: 14px; color: var(--text-muted); }
figure { margin: 0; }

/* gallery — wide projects frame + placeholder */
.gallery figure.wide { grid-column: 1 / -1; }
.shot-placeholder {
  aspect-ratio: 16 / 6; display: grid; place-items: center;
  background-color: var(--surface-page);
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 11px,
    color-mix(in oklab, var(--brand) 12%, transparent) 11px,
    color-mix(in oklab, var(--brand) 12%, transparent) 12px);
}
.shot-placeholder .ph-mono {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px; letter-spacing: .04em; color: var(--text-muted);
  background: var(--surface-card); border: 1px solid var(--border-hair);
  padding: 8px 16px; border-radius: var(--radius-pill);
}

/* ---------------- mini (widget + bar showcase) ---------------- */
.band-warm { background: var(--lp-cta); }
.mini-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.mini-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.mini-list li { list-style: none; display: flex; gap: 13px; font-size: 15.5px; color: var(--text-muted); line-height: 1.6; }
.mini-list .tick { color: var(--brand); flex: 0 0 auto; font-weight: 900; margin-top: 1px; }

.mini-stage { display: flex; flex-direction: column; align-items: center; gap: 30px; padding: 16px 0; }
.mini-stage .mini-bar { transform: rotate(-1.2deg); }
.mini-stage .mini-w { transform: rotate(1.2deg); }
.mini-cap { font-size: 12.5px; color: var(--text-faint); letter-spacing: .04em; margin-top: 2px; }

/* 128px floating widget */
.mini-w {
  width: 192px; background: var(--surface-card); border: 1px solid var(--border-hair);
  border-radius: var(--radius-xl); padding: 14px; box-shadow: 0 2px 6px rgba(60,45,25,.08), 0 22px 40px -18px rgba(60,45,25,.34);
  display: flex; flex-direction: column; gap: 11px;
}
.mw-head { display: flex; align-items: center; justify-content: space-between; }
.mw-brand { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 900; letter-spacing: .04em; }
.mw-brand .star { color: var(--brand); font-size: 11px; }
.mw-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--viz-2); margin-left: 1px; }
.mw-pills { display: flex; gap: 6px; }
.mw-pill { font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: var(--radius-pill); border: 1px solid var(--hair-strong); color: var(--text-muted); }
.mw-time { text-align: center; font-size: 34px; font-weight: 800; line-height: 1; letter-spacing: .01em; }
.mw-sub { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: -6px; }
.mw-div { height: 1px; background: var(--border-hair); }
.mw-actions { display: flex; gap: 7px; }
.mw-go {
  flex: 1; font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
  padding: 8px 0; border-radius: var(--radius-sm); border: 1px solid transparent;
  background: var(--brand); color: var(--brand-ink); box-shadow: var(--shadow-btn);
}
.mw-reset {
  flex: 0 0 36px; font-family: inherit; font-size: 14px; cursor: pointer; padding: 8px 0;
  border-radius: var(--radius-sm); border: 1px solid var(--hair-strong); background: transparent; color: var(--text-muted);
}

/* horizontal always-on-top bar */
.mini-bar {
  display: inline-flex; align-items: center; gap: 18px;
  background: var(--surface-card); border: 1px solid var(--border-hair);
  border-radius: var(--radius-xl); padding: 11px 16px;
  box-shadow: 0 2px 6px rgba(60,45,25,.08), 0 22px 40px -18px rgba(60,45,25,.34);
}
.mb-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--status-live); flex: 0 0 auto; }
.mb-top { display: flex; align-items: baseline; gap: 7px; }
.mb-top b { font-size: 17px; font-weight: 700; }
.mb-pct { font-size: 17px; font-weight: 700; color: var(--brand); }
.mb-sub { font-size: 12.5px; color: var(--text-muted); margin-top: 1px; }
.mb-div { width: 1px; align-self: stretch; background: var(--border-hair); margin: 3px 0; }
.mb-timer { display: flex; align-items: baseline; gap: 8px; }
.mb-lab { font-size: 12.5px; color: var(--text-muted); }
.mb-time { font-size: 24px; font-weight: 800; letter-spacing: .01em; line-height: 1; }
.mb-go {
  font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; padding: 8px 16px;
  border-radius: var(--radius-md); border: 1px solid transparent; background: var(--brand); color: var(--brand-ink);
  box-shadow: var(--shadow-btn); white-space: nowrap;
}
.mb-expand {
  font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; padding: 8px 16px;
  border-radius: var(--radius-md); border: 1px solid var(--hair-strong); background: transparent; color: var(--text-strong); white-space: nowrap;
}

/* ---------------- privacy ---------------- */
.privacy-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.privacy-statement {
  font-size: clamp(26px, 3vw, 38px); font-weight: 900; line-height: 1.3; letter-spacing: -.02em;
  margin: 0 0 28px; text-wrap: balance;
}
.privacy-statement .hl { color: var(--brand); }
.privacy-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.privacy-list li { list-style: none; display: flex; gap: 13px; font-size: 15.5px; color: var(--text-muted); line-height: 1.6; }
.privacy-list .tick { color: var(--status-live); flex: 0 0 auto; font-weight: 900; margin-top: 1px; }
.privacy-card {
  background: var(--surface-card); border: 1px solid var(--border-hair);
  border-radius: var(--radius-2xl); padding: 40px; box-shadow: var(--shadow-card); text-align: center;
}
.privacy-card .lock { font-size: 38px; margin-bottom: 18px; }
.privacy-card .big { font-size: 21px; font-weight: 900; margin: 0 0 10px; }
.privacy-card p { font-size: 14.5px; color: var(--text-muted); margin: 0; line-height: 1.66; }
ul { padding: 0; margin: 0; }

/* ---------------- pricing (pay what you want) ---------------- */
.pwyw {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--surface-card); border: 1px solid var(--brand);
  border-radius: var(--radius-2xl); padding: 48px 44px;
  box-shadow: 0 2px 6px rgba(60,45,25,.06), 0 24px 48px -26px rgba(154,96,56,.5);
  display: flex; flex-direction: column; align-items: center;
}
.pwyw-name { font-size: 15px; font-weight: 700; color: var(--text-muted); margin: 0 0 24px; }

/* amount chips (PureRef-style suggested amounts) */
.pwyw-select { width: 100%; max-width: 420px; margin: 0 auto 28px; }
.pwyw-select-lab { display: block; font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--text-muted); text-align: left; margin-bottom: 14px; }
.amt-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.amt-chip {
  position: relative; font-family: inherit; cursor: pointer;
  padding: 20px 8px; border-radius: var(--radius-md);
  border: 1px solid var(--hair-strong); background: var(--surface-card);
  font-size: 21px; font-weight: 900; color: var(--text-strong); letter-spacing: -.01em;
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .14s var(--ease-out);
}
.amt-chip:hover { border-color: var(--brand); transform: translateY(-1px); }
.amt-chip .ac-cur { font-size: .68em; margin-right: 1px; color: var(--text-muted); font-weight: 800; }
.amt-chip.is-on { border-color: var(--brand); background: var(--brand-soft); color: var(--brand-strong); box-shadow: inset 0 0 0 1px var(--brand); }
.amt-chip.is-on .ac-cur { color: var(--brand-strong); }
.amt-chip.custom { font-size: 14px; font-weight: 700; color: var(--text-muted); }
.amt-chip.custom.is-on { color: var(--brand-strong); }
.amt-chip .ac-tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-size: 10.5px; font-weight: 700; letter-spacing: .03em; white-space: nowrap;
  background: var(--brand); color: var(--brand-ink); padding: 3px 9px; border-radius: var(--radius-pill);
}
.pwyw-zero { font-size: 13px; color: var(--text-muted); margin: 16px 0 0; text-align: center; line-height: 1.6; }
.pwyw ul.pl {
  display: flex; flex-direction: column; gap: 12px; margin: 0 0 30px; text-align: left;
  width: 100%; max-width: 380px;
}
.pwyw ul.pl li { list-style: none; display: flex; gap: 11px; font-size: 14.5px; line-height: 1.5; }
.pwyw ul.pl .tick { color: var(--brand); font-weight: 900; flex: 0 0 auto; }
.pwyw .btn { width: 100%; max-width: 380px; }
.pwyw-foot { font-size: 13px; color: var(--text-faint); margin: 18px 0 0; line-height: 1.6; }

/* ---------------- download ---------------- */
.dl-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.dl-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.dl-actions .btn { font-size: 16.5px; padding: 16px 30px; }
.dl-sysreq {
  font-size: 13.5px; color: var(--text-faint); margin: 0 auto; max-width: 36em; line-height: 1.6;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.dl-sysreq::before { content: none; }
.dl-note {
  display: flex; gap: 18px; text-align: left; margin-top: 36px;
  background: var(--surface-card); border: 1px solid var(--border-hair);
  border-radius: var(--radius-xl); padding: 26px 28px; box-shadow: var(--shadow-card);
}
.dl-note .ico {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-strong); font-size: 18px; font-weight: 900;
}
.dl-note h4 { font-size: 16px; font-weight: 700; margin: 2px 0 8px; }
.dl-note p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.7; text-wrap: pretty; }

/* ---------------- faq ---------------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq {
  border-bottom: 1px solid var(--border-hair);
}
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px;
  padding: 24px 4px; font-size: 17px; font-weight: 700; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { flex: 1; text-wrap: pretty; }
.faq summary .chev {
  flex: 0 0 auto; color: var(--brand); font-size: 20px; transition: transform .2s var(--ease-out);
  width: 24px; text-align: center;
}
.faq[open] summary .chev { transform: rotate(45deg); }
.faq .a { padding: 0 44px 26px 4px; font-size: 15px; color: var(--text-muted); line-height: 1.72; margin: 0; }

/* ---------------- footer CTA ---------------- */
.cta-final { text-align: center; }
.cta-final .win-tiny { display: inline-block; margin-bottom: 30px; }
.cta-final h2 {
  font-size: clamp(34px, 5vw, 58px); font-weight: 900; line-height: 1.06; letter-spacing: -.03em;
  margin: 0 0 22px; text-wrap: balance;
}
.cta-final p { font-size: 18px; color: var(--text-muted); margin: 0 auto 34px; max-width: 30em; }
.cta-final .hero-cta { justify-content: center; }

/* ---------------- footer ---------------- */
.lp-foot { border-top: 1px solid var(--border-hair); padding: 54px 0 64px; }
.lp-foot .shell { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: flex-start; }
.foot-brand { max-width: 320px; }
.foot-brand .wordmark { margin-bottom: 12px; }
.foot-brand p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 14px; }
.foot-col a { display: block; font-size: 14px; color: var(--text-muted); padding: 5px 0; transition: color .15s ease; }
.foot-col a:hover { color: var(--brand); }
.foot-legal { width: 100%; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--border-hair); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-legal span, .foot-legal a { font-size: 13px; color: var(--text-faint); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------------- responsive ---------------- */
@media (max-width: 960px) {
  :root { --section-pad: 84px; }
  .shell { padding: 0 24px; }
  .heroA-grid, .heroC-grid, .privacy-grid, .mini-grid { grid-template-columns: 1fr; gap: 44px; }
  .heroC-left { padding: 36px 30px; }
  .feat-grid, .steps, .gallery, .price-grid { grid-template-columns: 1fr; }
  .feat.wide { grid-column: auto; }
  .step::after { display: none; }
  .lp-nav { display: none; }
  .heroA-shot .win, .heroC-right .win { transform: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .shell { padding: 0 18px; }
  .lp-header .shell { gap: 12px; }
  .wordmark .sub { display: none; }
  .hero-cta .btn { flex: 1 1 auto; }
  .foot-cols { gap: 36px; }
  .companion { flex-direction: column; text-align: center; gap: 14px; }
  .dl-note { flex-direction: column; gap: 14px; }
  .pwyw { padding: 36px 26px; }
}
