/*
 * CASHFON public design foundation.
 * Static, same-origin, and photography-independent until rights-approved media exists.
 */
:root {
    --ink: #090a0c;
    --paper: #f7f7f4;
    --paper-rgb: 247 247 244;
    --well: #eceeec;
    --line: rgb(12 14 18 / 0.10);
    --sub: #64676d;
    --cash: #ffc400;
    --success: #547760;
    --glass-clear: rgb(255 255 255 / 0.42);
    --glass-frosted: rgb(250 250 247 / 0.70);
    --glass-dark: rgb(11 13 16 / 0.62);
    --glass-dense: rgb(248 248 245 / 0.88);
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --ease-standard: cubic-bezier(0.2, 0, 0, 1);
    /* Money figures on light surfaces — the dark reading of --cash. */
    --cash-ink: #8A6A00;
    /* iPhone home-indicator clearance for fixed bottom chrome. */
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --radius-control: 12px;
    --radius-panel: 20px;
    --radius-stage: 24px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-pill: 999px;
    --shell-width: 1160px;
}

.glass-clear {
    background: var(--glass-clear);
    -webkit-backdrop-filter: saturate(140%) blur(22px);
    backdrop-filter: saturate(140%) blur(22px);
}

.glass-control {
    background: var(--glass-frosted);
    -webkit-backdrop-filter: saturate(125%) blur(16px);
    backdrop-filter: saturate(125%) blur(16px);
}

.glass-dark {
    background: var(--glass-dark);
    -webkit-backdrop-filter: saturate(120%) blur(28px);
    backdrop-filter: saturate(120%) blur(28px);
    color: white;
}

.glass-dense {
    background: var(--glass-dense);
    -webkit-backdrop-filter: saturate(120%) blur(26px);
    backdrop-filter: saturate(120%) blur(26px);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .glass-clear, .glass-control, .glass-dense { background: #f7f7f4; }
    .glass-dark, .trust-ledger-stage, .condition-explainer { background: #111317; }
    .trust-certificate { background: #111317; color: #fff; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    /* Transparent over the fixed gold wash (body::before). */
    background: transparent;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "PingFang SC", "Noto Sans SC", "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 17px;
    line-height: 1.6;
    /* The full-bleed section bands below stretch to 50vw each
       side; 100vw includes the scrollbar on desktop. Make the
       document scroll container own and hide that overhang so
       scrollWidth stays equal to clientWidth in non-overlay
       scrollbar environments as well as on touch devices. */
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, summary:focus-visible, button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgb(9 10 12 / 0.86);
    border-radius: 4px;
}

.skip-link {
    position: fixed;
    top: max(10px, env(safe-area-inset-top));
    left: max(10px, env(safe-area-inset-left));
    z-index: 100;
    padding: 10px 14px;
    border-radius: var(--radius-control);
    background: var(--ink);
    color: var(--paper);
    font-size: 14px;
    font-weight: 700;
    transform: translateY(calc(-100% - 20px));
}
.skip-link:focus-visible { transform: none; }

.shell {
    width: min(100%, var(--shell-width));
    margin: 0 auto;
    padding-right: max(24px, env(safe-area-inset-right));
    padding-left: max(24px, env(safe-area-inset-left));
}

/* ---- header: sticky, frosted ---- */
.site-head {
    position: sticky;
    top: 0;
    z-index: 50;
    padding-top: env(safe-area-inset-top);
    border-bottom: 1px solid rgb(12 14 18 / 0.08);
    box-shadow: 0 8px 30px rgb(9 10 12 / 0.04);
}
.head-row {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 68px;
    max-width: var(--shell-width);
    margin: 0 auto;
    padding: 12px max(24px, env(safe-area-inset-right)) 12px max(24px, env(safe-area-inset-left));
}
.logo { display: inline-flex; align-items: center; }
.site-nav { display: flex; gap: 20px; font-size: 14px; font-weight: 500; color: var(--sub); }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--ink); }
.head-toggles { display: flex; gap: 8px; align-items: center; margin-left: auto; flex-wrap: wrap; }
.pills { display: flex; border: 1px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; font-size: 12px; font-weight: 600; }
.pills a { padding: 6px 12px; color: var(--sub); }
.pills a.on { background: var(--ink); color: var(--paper); }
/* The region badge (2026-08-19): one anchor-as-pill whose
   inner span carries the active look — the legacy selectors
   above only style direct <a> children, which left the
   script-upgraded market-and-district label unpadded and
   clipped at the pill edge. */
.region-pill { display: inline-flex; }
.region-pill span { display: inline-block; padding: 6px 12px; background: var(--ink); color: var(--paper); white-space: nowrap; }
/* appearance/border reset is load-bearing: real <button class="btn"> elements
   (the hero search submit) otherwise keep the UA's 2px outset bevel — the
   "plastic" look the owner flagged 2026-08-22. <a class="btn"> never had it. */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border: 0; border-radius: var(--radius-pill); appearance: none; font: inherit; font-size: 16px; font-weight: 600; cursor: pointer; transition: opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease; }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-cash { background: var(--cash); color: var(--ink); box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.5), 0 8px 22px rgb(9 10 12 / 0.14); }
.btn-cash:hover { box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.5), 0 10px 26px rgb(9 10 12 / 0.18); }
.btn-ghost { border: 1.5px solid var(--ink); background: transparent; color: var(--ink); }
.btn:hover { opacity: 0.85; }
.btn:active { transform: scale(0.98); }
/* The header's login entry (coherence pass): a quiet text
   link between the toggles and the CTA — sub at rest, ink on
   hover/focus, deliberately not a second button. */
.login-link { font-size: 13px; font-weight: 600; color: var(--sub); transition: color 0.15s ease; }
.login-link:hover, .login-link:focus-visible { color: var(--ink); }

.desktop-only { display: flex; }
.mobile-actions, .mobile-menu, .mobile-noscript-nav { display: none; }
.mobile-menu { position: relative; z-index: 40; }
.mobile-region-summary {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
}
.mobile-region-summary span {
    overflow: hidden;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--ink);
    background: var(--glass-frosted);
    cursor: pointer;
}
.menu-toggle-icon, .menu-toggle-icon::before, .menu-toggle-icon::after {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    content: "";
    transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}
.menu-toggle-icon::before { transform: translateY(-5px); }
.menu-toggle-icon::after { transform: translateY(3.5px); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before { transform: translateY(0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after { transform: translateY(-1.5px) rotate(-45deg); }
.mobile-menu[hidden] { display: none; }
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgb(9 10 12 / 0.22);
}
.mobile-menu-panel {
    position: fixed;
    top: calc(76px + env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    left: max(12px, env(safe-area-inset-left));
    max-height: calc(100dvh - 92px - env(safe-area-inset-top));
    overflow-y: auto;
    border: 1px solid rgb(255 255 255 / 0.58);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgb(9 10 12 / 0.20);
}
.mobile-menu-nav {
    display: grid;
    gap: 4px;
    padding: 10px;
}
.mobile-menu-nav > a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 650;
}
.mobile-menu-nav > a:hover, .mobile-menu-nav > a:focus-visible { background: rgb(255 255 255 / 0.62); }
.mobile-menu-settings {
    display: grid;
    gap: 16px;
    padding: 18px 20px max(20px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
}
.mobile-menu-settings .pills { width: max-content; }
.mobile-menu-login { width: 100%; }
.mobile-noscript-nav {
    margin: 12px max(24px, env(safe-area-inset-right)) 0 max(24px, env(safe-area-inset-left));
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-panel);
    background: var(--paper);
}
.mobile-noscript-links { display: grid; gap: 4px; }
.mobile-noscript-links a { padding: 9px 10px; border-radius: var(--radius-control); font-size: 15px; font-weight: 650; }
.mobile-noscript-settings { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

picture { display: block; }
picture img { display: block; width: 100%; height: auto; object-fit: cover; }

/* ---- type + section rhythm ---- */
.eyebrow {
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--sub);
    text-transform: uppercase;
}

.section { padding: 112px 0 0; }

/* ---- full-bleed section bands (coherence pass) ----
   The locked background rhythm — hero paper, steps WELL,
   evidence INK, price board paper, FAQ well, stores paper,
   footer well — needs backgrounds that bleed edge-to-edge
   while content stays in the 1080 shell column. The negative
   50vw margin + matching padding pair is the standard
   full-bleed-inside-a-centered-column move (body clips the
   scrollbar-width overhang). Bands keep a paper gap above
   (margin-top) so the page reads as composed sections, not a
   continuous stripe stack. */
.section.band {
    margin-top: 112px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 88px calc(50vw - 50%) 96px;
}
.band-well { background: var(--well); }
.band-ink { background: var(--ink); color: var(--paper); }
/* Dark-band type: paper headings inherit; secondary copy
   steps down to #A1A1A6 (AA on #0A0A0A). */
.band-ink > .eyebrow { color: #b6b8bc; }
.band-ink .sub { color: #a1a1a6; }
/* The global ink focus ring vanishes on ink — flip to paper. */
.band-ink a:focus-visible, .band-ink summary:focus-visible, .band-ink button:focus-visible { outline-color: var(--paper); }

.section > .eyebrow { margin-bottom: 14px; }
.section h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    max-width: 720px;
}
.section .sub { color: var(--sub); font-size: 17px; margin: 14px 0 0; max-width: 560px; }
.section-body { margin-top: 44px; }

main { padding-bottom: 40px; }

/* ---- hero ---- */
.hero { padding: 96px 0 8px; }
.hero .eyebrow { margin-bottom: 18px; }
.hero h1 {
    font-size: clamp(44px, 6.5vw, 84px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    max-width: 780px;
}
.hero p { color: var(--sub); font-size: clamp(17px, 2vw, 21px); margin: 22px 0 0; max-width: 560px; }
.hero-search { position: relative; display: flex; gap: 10px; max-width: 580px; margin: 36px auto 0; padding: 8px; border: 1px solid rgb(255 255 255 / 0.72); border-radius: var(--radius-panel); box-shadow: 0 18px 55px rgb(9 10 12 / 0.08); }
.hero-search-input {
    flex: 1;
    min-width: 0;
    padding: 0 22px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-control);
    background: rgb(var(--paper-rgb) / 0.82);
    font: inherit;
    font-size: 16px;
    color: var(--ink);
    transition: border-color 0.15s ease;
}
.hero-search-input::placeholder { color: var(--sub); }
.hero-search-input:focus { outline: none; border-color: var(--ink); }

/* Live device suggestions under the hero search (owner
   2026-08-18: 输入了能够 detect 字典里面的设备) — a plain
   list the hero-suggest script fills from the SAME guest
   search API the wizard uses. Hidden by default; the form
   keeps working as a zero-JS GET without it. */
.hero-suggest-wrap { flex: 1; min-width: 0; display: flex; }
.hero-suggest {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    text-align: left;
}
.hero-suggest[hidden] { display: none; }
.hero-suggest button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border: 0;
    border-radius: 12px;
    background: none;
    font: inherit;
    font-size: 15px;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}
.hero-suggest button:hover, .hero-suggest button.active { background: var(--well); }
.hero-suggest-label { padding: 8px 14px 4px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sub); text-align: left; }
.hero-suggest .s-name { flex: 1; min-width: 0; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 1.3; font-weight: 650; }
.hero-suggest .s-brand { color: var(--sub); font-size: 13px; }
.hero-suggest .s-badge {
    flex: none;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: var(--well);
    font-size: 12px;
    font-weight: 600;
    color: var(--sub);
}
.hero-suggest .s-badge.instant { background: var(--ink); color: var(--paper); }
.hero-suggest .s-badge.s-price { background: rgb(255 243 196 / 0.85); color: var(--cash-ink); font-variant-numeric: tabular-nums; }

/* Desktop: the hero block sits centered — the left-ragged
   composition read as dead space at 1440 (design review). */
@media (min-width: 721px) {
    .hero { text-align: center; }
    .hero h1 { max-width: 17ch; margin-left: auto; margin-right: auto; }
    .hero p { margin-left: auto; margin-right: auto; }
}

.chip { font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: var(--radius-pill); background: var(--well); color: var(--sub); transition: color 0.15s ease; }
.chip:hover, .chip:focus-visible { color: var(--ink); }

/* ---- cards / price board ---- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.card {
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    background: var(--paper);
    transition: box-shadow 0.2s ease;
}
.card:hover { box-shadow: 0 12px 40px rgba(10, 10, 10, 0.08); }
.card-name { font-size: 14px; color: var(--sub); font-weight: 500; }
.card-upto { margin-top: 14px; font-size: 12px; }

/* The money moment: real engine figures carry the cash
   underline-highlight — the ONLY yellow outside btn-cash. */
.price-figure { font-size: 22px; font-weight: 800; letter-spacing: -0.015em; margin-top: 2px; font-variant-numeric: tabular-nums; }
.price-figure em { font-style: normal; background: linear-gradient(transparent 58%, var(--cash) 58%); padding: 0 3px; }
.price-figure--big { font-size: clamp(30px, 4vw, 44px); }
.manual-cta { margin-top: 12px; font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; display: inline-block; }

/* The board's segmented capsule (owner 2026-08-20: 要高级
   选择胶囊) - the wizard type-rail language on the public
   page: one well pill, the active segment an ink capsule. */
.seg-rail { display: inline-flex; max-width: 100%; overflow-x: auto; align-items: center; gap: 4px; padding: 4px; border-radius: var(--radius-pill); background: var(--well); }
.seg { flex: none; font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: var(--radius-pill); color: var(--sub); white-space: nowrap; transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.seg:hover, .seg:focus-visible { color: var(--ink); }
.seg-active, .seg-active:hover { background: var(--ink); color: var(--paper); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18); }
button.chip { border: 0; cursor: pointer; font: inherit; font-size: 13px; font-weight: 600; }
[data-board-grid] { transition: opacity 0.18s ease; }
[data-board-grid].board-fading { opacity: 0; }

/* ---- recent-activity ticker (hidden until real rows) ---- */
.activity-list { list-style: none; }
.activity-list li { display: flex; gap: 14px; align-items: baseline; border-bottom: 1px solid var(--line); padding: 16px 0; flex-wrap: wrap; }
.activity-list li:first-child { border-top: 1px solid var(--line); }
.activity-when { font-size: 13px; color: var(--sub); font-variant-numeric: tabular-nums; white-space: nowrap; min-width: 108px; }
.activity-what { font-size: 16px; font-weight: 550; }

/* ---- evidence cards (native details/summary) ---- */
.evidence-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: start; }
.evidence-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--well); }
/* Weighted for the signature section (design review):
   roomier cards, one type notch up on the mechanism names. */
.evidence-card summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px;
    cursor: pointer;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.012em;
}
.evidence-card summary::-webkit-details-marker { display: none; }
.evidence-card summary::marker { content: ""; }
.evidence-card summary svg { flex: none; }
.evidence-card summary .th-ic { width: 26px; height: 26px; }
.evidence-head { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.evidence-hook { font-size: 13px; font-weight: 500; letter-spacing: 0; color: var(--sub); }
.band-ink .evidence-hook { color: #a1a1a6; }
.evidence-chev { margin-left: auto; align-self: center; transition: transform 0.2s ease; }
.evidence-card[open] .evidence-chev { transform: rotate(180deg); }
.evidence-card p { padding: 0 28px 28px 66px; font-size: 15.5px; color: var(--sub); }

/* On the INK band (the signature evidence section, coherence
   pass): near-black card fills, rgba-light hairlines, paper
   mechanism names, #A1A1A6 body copy (AA on #0A0A0A), and
   quiet paper mechanism marks. The chevron stays in the body tone. */
.band-ink .evidence-card { background: #17171a; border-color: rgba(255, 255, 255, 0.09); }
.band-ink .evidence-card summary { color: var(--paper); }
.band-ink .evidence-card summary svg:not(.evidence-chev) { color: var(--paper); }
.band-ink .evidence-card .evidence-chev { color: #a1a1a6; }
.band-ink .evidence-card p { color: #a1a1a6; }

/* ---- faq teaser / faq page ---- */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; }
.faq-item p { font-size: 16px; color: var(--sub); }

/* ---- stores ---- */
.store-addr { margin-top: 10px; font-size: 15px; color: var(--sub); }
.store-hours { margin-top: 18px; display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; font-size: 14px; }
.store-hours dt { color: var(--sub); }
.store-hours dd { font-variant-numeric: tabular-nums; }
.generated-visual-note {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    max-width: calc(100% - 40px);
    padding: 8px 11px;
    border: 1px solid rgb(255 255 255 / 0.5);
    border-radius: var(--radius-control);
    color: #35393b;
    font-size: 11px;
    font-weight: 680;
    letter-spacing: 0.015em;
}

.media-fallback {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 280px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 36px;
    color: #555b5d;
    background:
        linear-gradient(90deg, rgb(255 255 255 / 0.32) 1px, transparent 1px) 0 0 / 48px 48px,
        linear-gradient(rgb(255 255 255 / 0.32) 1px, transparent 1px) 0 0 / 48px 48px,
        #dce1de;
    font-size: 13px;
    font-weight: 620;
    letter-spacing: 0.015em;
    text-align: center;
}
.media-fallback-mark { font-size: clamp(52px, 7vw, 88px); font-weight: 800; letter-spacing: -0.08em; color: rgb(9 10 12 / 0.13); }
.media-fallback svg { color: rgb(9 10 12 / 0.42); }
.media-fallback .th-ic { width: 46px; height: 46px; }
.media-fallback--process .th-ic { width: 52px; height: 52px; }
.content-media-fallback .th-ic { width: 76px; height: 76px; }
.value-stage-copy .eyebrow { grid-column: 1 / -1; }
.value-stage-copy .sub { margin: 0; }
.value-live-mark { width: 7px; height: 7px; border-radius: 50%; background: #7b9b85; box-shadow: 0 0 0 5px rgb(123 155 133 / 0.14); }
[data-board-grid] { transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out); }
[data-board-grid].board-fading { opacity: 0; transform: translateY(5px); }

.process-story-intro { display: grid; grid-template-columns: 1fr minmax(280px, 0.75fr); gap: 10px 52px; align-items: end; }
.process-story-intro .eyebrow { grid-column: 1 / -1; }
.process-story-intro .sub { margin: 0; }
.generated-service-note { grid-column: 2; margin-top: 8px; color: #6a6e70; font-size: 12px; line-height: 1.45; }
.process-scenes { display: grid; gap: 28px; margin-top: 48px; }
.process-scene {
    display: grid;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-stage);
    background: #edf0ee;
}
.process-scene--store { grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr); }
.process-scene--mail { grid-template-areas: "copy media"; grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr); background: #e2e6e8; }
.process-scene--mail .process-scene-media { grid-area: media; }
.process-scene--mail .process-scene-copy { grid-area: copy; }
.process-scene--pickup { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); background: #141619; color: var(--paper); }
.process-scene-media { min-height: 440px; overflow: hidden; }
.process-scene-picture, .process-scene-picture img { width: 100%; height: 100%; }
.process-scene-copy { display: flex; flex-direction: column; justify-content: center; padding: 48px; }
.process-index { margin-bottom: auto; color: #51565a; font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums; }
.process-scene-copy h3 { margin-top: 12px; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.035em; }
.process-scene-copy > p:last-child { max-width: 390px; margin-top: 16px; color: #5f6466; }
.process-scene--pickup .process-index, .process-scene--pickup .eyebrow { color: rgb(255 255 255 / 0.52); }
.process-scene--pickup .process-scene-copy > p:last-child { color: rgb(255 255 255 / 0.66); }

.trust-record-intro { display: grid; grid-template-columns: 1fr minmax(280px, 0.75fr); gap: 10px 52px; align-items: end; }
.trust-record-intro .eyebrow { grid-column: 1 / -1; color: #b6b8bc; }
.trust-record-intro .sub { margin: 0; color: #a1a1a6; }
.trust-record-media { position: relative; min-height: 420px; margin-bottom: 28px; overflow: hidden; border: 1px solid rgb(255 255 255 / 0.1); border-radius: var(--radius-stage); background: #1b1d20; }
.trust-record-picture, .trust-record-picture img { width: 100%; height: 100%; }
.trust-record-picture { position: absolute; inset: 0; }
.trust-record-media .generated-visual-note { top: auto; right: 18px; bottom: 18px; left: 18px; width: max-content; max-width: calc(100% - 36px); color: rgb(255 255 255 / 0.78); }
.trust-record-body > .manual-cta { margin-top: 28px; }

.store-stage-intro { max-width: 720px; }
.store-stage-list { display: grid; gap: 48px; margin-top: 48px; }
.store-stage-card { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-stage); background: #dde1de; }
.store-stage-media { position: absolute; inset: 0; }
.store-stage-picture, .store-stage-picture img { width: 100%; height: 100%; }
.store-map-stage {
    position: relative;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7px;
    padding: 42px;
    background:
        radial-gradient(circle at 74% 24%, rgb(255 255 255 / 0.88), transparent 22%),
        linear-gradient(135deg, #d9dfdb, #eef0ec 54%, #cfd8d2);
    color: #34393a;
    text-align: left;
}
.store-map-canvas { position: absolute; inset: 0; overflow: hidden; }
.store-map-canvas::before, .store-map-canvas::after { position: absolute; inset: -20%; border: 1px solid rgb(53 65 59 / 0.12); border-radius: 48%; content: ""; transform: rotate(-13deg); }
.store-map-canvas::after { inset: 18% -10% -24% 24%; transform: rotate(21deg); }
.store-map-route { position: absolute; display: block; height: 2px; border-radius: 2px; background: rgb(62 76 68 / 0.22); transform-origin: left center; }
.store-map-route--one { top: 31%; left: -3%; width: 78%; transform: rotate(18deg); }
.store-map-route--two { top: 56%; left: 18%; width: 92%; transform: rotate(-22deg); }
.store-map-route--three { top: 17%; left: 56%; width: 62%; transform: rotate(74deg); }
.store-map-pin { position: absolute; top: 30%; left: 62%; display: grid; width: 76px; height: 76px; place-items: center; border: 1px solid rgb(255 255 255 / 0.72); border-radius: 50%; background: rgb(245 246 243 / 0.72); box-shadow: 0 16px 40px rgb(40 48 44 / 0.14); color: #333a36; }
.store-map-pin .th-ic { width: 40px; height: 40px; }
.store-map-city, .store-map-stage > strong, .store-map-stage > span:last-child { position: relative; z-index: 1; max-width: 360px; }
.store-map-city { margin-top: 0; color: #59615d; font-size: 12px; font-weight: 720; letter-spacing: 0.08em; text-transform: uppercase; }
.store-map-stage > strong { font-size: clamp(22px, 3vw, 34px); line-height: 1.08; letter-spacing: -0.025em; }
.store-map-stage > span:last-child { color: #5f6763; font-size: 13px; font-weight: 550; }
.store-stage-copy { position: absolute; right: 24px; bottom: 24px; left: 24px; padding: 24px; border: 1px solid rgb(255 255 255 / 0.58); border-radius: var(--radius-panel); }
.store-stage-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.store-stage-heading h3 { font-size: 22px; line-height: 1.2; }
.store-status { flex: none; padding: 5px 9px; border-radius: var(--radius-control); font-size: 11px; font-weight: 700; }
.store-status.is-open { background: rgb(84 119 96 / 0.15); color: #385a43; }
.store-status.is-closed { background: rgb(9 10 12 / 0.08); color: #565b5e; }
.home-text-link { margin-top: 24px; }

.hero-suggest { transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out); }
.hero-suggest.is-entering { opacity: 0; transform: translateY(-5px); }

@keyframes home-camera-drift {
    from { transform: scale(1.01) translate3d(-0.25%, 0, 0); }
    to { transform: scale(1.045) translate3d(0.4%, -0.3%, 0); }
}
.home-motion [data-hero-camera] picture img { animation: home-camera-drift 14s var(--ease-out) alternate infinite; }
.home-motion [data-process-scene] { opacity: 0; transform: translateY(12px); transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out); }
.home-motion [data-process-scene].in { opacity: 1; transform: none; }

/* ---- interior public pages: one language, distinct compositions ---- */
.content-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    min-height: 620px;
    margin-top: 48px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-stage);
    background: #eef0ed;
}
.content-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 6vw, 76px); }
.content-hero-copy h1 { max-width: 11ch; margin-top: 18px; font-size: clamp(44px, 6vw, 76px); line-height: 0.98; letter-spacing: -0.045em; }
.content-hero-copy > p:not(.eyebrow) { max-width: 520px; margin-top: 24px; color: #565b5e; font-size: 18px; }
.content-hero-media { position: relative; min-height: 520px; overflow: hidden; background: #dfe3df; }
.content-stage-picture, .content-stage-picture img { width: 100%; height: 100%; }
.content-stage-picture img { object-fit: cover; }
.content-media-fallback { min-height: 100%; border-radius: 0; background: linear-gradient(145deg, #dde2df, #f4f4ef); }
.content-media-fallback svg { opacity: 0.72; }
.content-media-fallback--dark { background: linear-gradient(145deg, #1b1e21, #0d0f11); color: var(--paper); }
.category-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; max-width: 440px; margin-top: 34px; overflow: hidden; border: 1px solid rgb(255 255 255 / 0.62); border-radius: var(--radius-panel); }
.category-summary div { padding: 16px 18px; background: rgb(255 255 255 / 0.18); }
.category-summary dt { color: var(--sub); font-size: 12px; }
.category-summary dd { margin-top: 4px; font-size: 24px; font-weight: 750; font-variant-numeric: tabular-nums; }
.content-section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); gap: 28px 64px; align-items: end; margin-bottom: 44px; }
.content-section-heading .sub { margin: 0; }

.category-gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.category-gallery-grid .device-price-card { grid-column: span 4; }
.category-gallery-grid .device-price-card:first-child { grid-column: span 8; grid-row: span 2; min-height: 510px; }
.device-price-card { display: flex; min-height: 245px; overflow: hidden; padding: 0; background: #f0f1ee; }
.device-price-media { display: grid; flex: 1; min-width: 42%; place-items: center; overflow: hidden; background: #e4e7e3; }
.device-price-picture, .device-price-picture img { width: 100%; height: 100%; }
.device-price-picture img { object-fit: cover; }
.device-price-fallback { color: #6d7270; }
.device-price-copy { display: flex; flex: 1; flex-direction: column; justify-content: flex-end; padding: 24px; background: var(--paper); }
.category-gallery-grid .device-price-card:first-child { flex-direction: column; }
.category-gallery-grid .device-price-card:first-child .device-price-media { min-height: 320px; }
.category-gallery-grid .device-price-card:first-child .card-name { font-size: 18px; color: var(--ink); }
.category-manual-section { padding-top: 28px; }
.category-manual-band { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: 26px 30px; border: 1px solid rgb(255 255 255 / 0.62); border-radius: var(--radius-panel); }
.category-manual-band h2 { margin-top: 6px; font-size: 20px; line-height: 1.25; }
.category-manual-count { color: #8a8e8c; font-size: 34px; font-weight: 760; font-variant-numeric: tabular-nums; }
.category-empty-stage { padding: clamp(36px, 7vw, 72px); border-radius: var(--radius-stage); }
.category-empty-stage .eyebrow { color: rgb(255 255 255 / 0.58); }
.category-empty-stage h2 { margin-top: 16px; }
.category-empty-stage p:not(.eyebrow) { max-width: 570px; margin: 18px 0 26px; color: rgb(255 255 255 / 0.68); }

.model-stage { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr); min-height: 650px; margin-top: 48px; overflow: hidden; border-radius: var(--radius-stage); background: #151719; }
.model-stage-media { position: relative; min-height: 600px; overflow: hidden; }
.model-stage-quote { display: flex; flex-direction: column; justify-content: center; margin: 20px; padding: clamp(34px, 5vw, 58px); border: 1px solid rgb(255 255 255 / 0.58); border-radius: var(--radius-panel); }
.model-stage-quote .eyebrow, .model-stage-quote .model-manual-state p { color: #51545a; }
.model-stage-quote h1 { max-width: 10ch; margin-top: 18px; font-size: clamp(42px, 5vw, 68px); line-height: 0.98; letter-spacing: -0.045em; }
.model-money { display: flex; flex-direction: column; align-items: flex-start; margin-top: 38px; }
.model-money .price-figure { margin-top: 8px; }
.model-manual-state { margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); }
.model-manual-state strong { font-size: 19px; }
.model-manual-state p { max-width: 420px; margin-top: 10px; color: var(--sub); }
.model-detail-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr); gap: 24px; align-items: start; }
.variant-ledger { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-panel); }
.variant-ledger h2 { margin: 10px 0 32px; }
.condition-explainer { position: sticky; top: 96px; min-height: 430px; padding: 36px; border-radius: var(--radius-panel); background: rgb(11 13 16 / 0.86); }
.condition-explainer .eyebrow { color: rgb(255 255 255 / 0.52); }
.condition-explainer h2 { margin-top: 18px; font-size: clamp(30px, 4vw, 46px); }
.condition-explainer > p:last-child { margin-top: 24px; color: rgb(255 255 255 / 0.68); }
.condition-index { display: block; margin-bottom: 92px; color: rgb(255 255 255 / 0.58); font-size: 14px; font-weight: 700; }

.how-hero { display: grid; grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1.52fr); gap: 48px; align-items: end; min-height: 500px; padding: 72px 0 56px; border-bottom: 1px solid var(--line); }
.how-hero-number { color: #59605f; font-size: clamp(140px, 18vw, 260px); font-weight: 800; line-height: 0.72; letter-spacing: -0.08em; }
.how-hero h1 { margin-top: 18px; font-size: clamp(54px, 7vw, 90px); line-height: 0.95; letter-spacing: -0.05em; }
.how-hero p:not(.eyebrow) { max-width: 520px; margin-top: 24px; color: var(--sub); font-size: 19px; }
.how-step-line { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-step-line article { position: relative; min-height: 290px; padding: 30px 28px; border-right: 1px solid var(--line); }
.how-step-line article:last-child { border-right: 0; }
.how-step-index { color: #51565a; font-size: 12px; font-weight: 700; }
.how-step-icon { position: absolute; top: 26px; right: 26px; }
.how-step-icon .th-ic { width: 40px; height: 40px; }
.how-step-line h2 { max-width: 10ch; margin-top: 90px; font-size: 24px; letter-spacing: -0.025em; }
.how-step-line p { max-width: 260px; margin-top: 12px; color: var(--sub); }
.process-story--how { padding-top: 104px; }
.process-validity { max-width: max-content; margin: 28px 0 0 auto; padding: 12px 16px; border: 1px solid rgb(255 255 255 / 0.62); border-radius: var(--radius-control); color: var(--sub); font-size: 13px; }

.trust-ledger-stage { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); gap: 48px; min-height: 590px; margin-top: 48px; padding: clamp(42px, 7vw, 80px); border-radius: var(--radius-stage); background: rgb(11 13 16 / 0.86); }
.trust-ledger-copy { display: flex; flex-direction: column; justify-content: center; }
.trust-ledger-copy .eyebrow { color: rgb(255 255 255 / 0.74); }
.trust-ledger-copy h1 { max-width: 10ch; margin-top: 18px; font-size: clamp(50px, 7vw, 84px); line-height: 0.95; letter-spacing: -0.05em; }
.trust-ledger-copy > p:last-child { max-width: 520px; margin-top: 24px; color: rgb(255 255 255 / 0.82); font-size: 18px; }
.trust-certificate { align-self: end; min-height: 280px; padding: 30px; border: 1px solid rgb(255 255 255 / 0.18); border-radius: var(--radius-panel); color: var(--paper); }
.trust-certificate-mark { display: grid; width: 56px; height: 56px; place-items: center; margin-bottom: 56px; border: 1px solid rgb(255 255 255 / 0.28); border-radius: 50%; }
.trust-certificate-mark .th-ic { width: 30px; height: 30px; }
.trust-certificate .eyebrow { color: rgb(255 255 255 / 0.74); }
.trust-certificate strong { display: block; margin-top: 8px; font-size: 22px; }
.trust-certificate > span:last-child { display: block; margin-top: 8px; color: rgb(255 255 255 / 0.82); }
.trust-mechanisms .evidence-grid { margin-top: 44px; }
.evidence-grid--ledger { grid-template-columns: 1fr; gap: 14px; }
.evidence-grid--ledger .evidence-card { border: 1px solid rgb(255 255 255 / 0.85); border-radius: var(--radius-panel); background: rgb(255 255 255 / 0.66); box-shadow: 0 18px 44px rgb(10 11 13 / 0.06); }
.evidence-grid--ledger .evidence-card summary { min-height: 116px; padding: 26px; }
.evidence-grid--ledger .evidence-card p { padding: 0 26px 26px 68px; }
.evidence-grid--ledger .evidence-card p { max-width: 690px; padding: 0 0 28px 66px; }

.faq-hero { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr); gap: 64px; align-items: end; min-height: 500px; padding: 72px 0 64px; border-bottom: 1px solid var(--line); }
.faq-hero h1 { max-width: 10ch; margin-top: 18px; font-size: clamp(52px, 7vw, 88px); line-height: 0.95; letter-spacing: -0.05em; }
.faq-hero > div > p:last-child { max-width: 530px; margin-top: 24px; color: var(--sub); font-size: 18px; }
.faq-index { padding: 26px; border: 1px solid rgb(255 255 255 / 0.62); border-radius: var(--radius-panel); }
.faq-index-count { display: block; font-size: 64px; font-weight: 780; line-height: 1; font-variant-numeric: tabular-nums; }
.faq-index > span:nth-child(2) { display: block; margin-top: 8px; font-weight: 700; }
.faq-index p { margin-top: 12px; color: var(--sub); font-size: 14px; }
.faq-reading { padding-top: 40px; }
.faq-empty { padding: 48px 0; color: var(--sub); }
.faq-reading .faq-item { border-radius: var(--radius-panel); padding: 0 26px; }
.faq-reading .faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-reading .faq-item summary { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 18px; align-items: center; min-height: 112px; padding: 24px 0; cursor: pointer; list-style: none; }
.faq-reading .faq-item summary::-webkit-details-marker { display: none; }
.faq-reading .faq-item summary::marker { content: ""; }
.faq-reading .faq-item summary h2 { font-size: clamp(19px, 2.4vw, 28px); letter-spacing: -0.025em; }
.faq-number { color: #51565a; font-size: 12px; font-weight: 700; }
/* Same SVG chevron affordance the trust evidence cards use — one accordion language. */
.faq-chev { flex: none; transition: transform 0.2s var(--ease-out); }
.faq-reading .faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-reading .faq-item > p { max-width: 760px; padding: 0 58px 30px 60px; color: var(--sub); font-size: 16px; }
/* Home FAQ teaser: plain q+a cards, none of the page accordion's number-column geometry. */
.home-faq .faq-item { border-radius: var(--radius-panel); padding: 22px 26px; }
.home-faq .faq-item + .faq-item { margin-top: 14px; }
.home-faq .faq-item > p { margin-top: 8px; color: var(--sub); font-size: 15px; }

.cms-heading { max-width: 820px; padding: 112px 0 54px; }
.cms-heading h1 { text-wrap: balance; margin-top: 18px; font-size: clamp(50px, 7vw, 82px); line-height: 0.98; letter-spacing: -0.045em; }
.cms-reading { position: relative; max-width: 860px; margin: 0 auto 48px; padding: clamp(34px, 6vw, 72px); border: 1px solid rgb(255 255 255 / 0.62); border-radius: var(--radius-panel); }
.cms-reading-rule { position: absolute; top: 0; bottom: 0; left: clamp(18px, 3vw, 34px); width: 1px; background: var(--line); }
.cms-reading-body { max-width: 680px; margin: 0 auto; color: #424649; font-size: 17px; line-height: 1.85; overflow-wrap: anywhere; }

.content-quote-entry { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin: 112px 0 24px; padding: 38px 42px; border: 1px solid rgb(255 255 255 / 0.62); border-radius: var(--radius-panel); }
.content-quote-entry h2 { margin-top: 8px; font-size: clamp(26px, 3.5vw, 38px); letter-spacing: -0.03em; }
.content-quote-entry p:not(.eyebrow) { max-width: 560px; margin-top: 10px; color: var(--sub); }

/* ---- variant table (model page) ---- */
.variant-table { width: 100%; border-collapse: collapse; }
.variant-table th { text-align: left; font-size: 12px; letter-spacing: 0.08em; font-weight: 600; color: var(--sub); text-transform: uppercase; padding: 0 0 12px; }
.variant-table td { border-top: 1px solid var(--line); padding: 18px 0; font-size: 16px; }
.variant-table td:last-child, .variant-table th:last-child { text-align: right; }

.cta-band {
    margin: 112px 0 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--well);
    padding: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -0.02em; }
/* Below 1024px the fixed .th-sticky-cta already stands over the page as
   the always-reachable entry (owner 2026-08-24: the band + sticky bar
   were two identical CTAs stacked). The band stays for desktop, where
   the sticky bar is hidden and this is the only closing CTA. */
@media (max-width: 1023px) { .cta-band { display: none; } }

/* ---- footer (coherence pass: well band, brand + columns) ---- */
.site-foot { margin-top: 96px; border-top: 1px solid var(--line); background: var(--well); }
.foot-main { display: flex; justify-content: space-between; gap: 40px 64px; flex-wrap: wrap; padding: 56px max(24px, env(safe-area-inset-right)) 40px max(24px, env(safe-area-inset-left)); max-width: var(--shell-width); margin: 0 auto; }
.foot-brand { max-width: 300px; }
.foot-brand .mark { display: inline-flex; }
.foot-tagline { margin-top: 14px; font-size: 14px; color: var(--sub); }
.foot-cols { display: flex; gap: 40px 72px; flex-wrap: wrap; }
.foot-col h3 { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--sub); }
.foot-col ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { display: inline-block; padding: 4px 0; font-size: 14px; color: var(--sub); transition: color 0.15s ease; }
.foot-col a:hover, .foot-col a:focus-visible { color: var(--ink); }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px max(24px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left)); max-width: var(--shell-width); margin: 0 auto; font-size: 13px; color: var(--sub); border-top: 1px solid var(--line); }
.foot-row nav { display: flex; gap: 16px; flex-wrap: wrap; }
.foot-row a:hover, .foot-row a:focus-visible { color: var(--ink); }

/* ---- motion: gated on html.js-motion (JS + no reduced-motion
   preference — the layout-end script is the only writer of
   that class). Base state everywhere else: fully visible. ---- */
.js-motion [data-reveal] {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-motion [data-reveal].in { opacity: 1; transform: none; }

.js-motion [data-hero-reveal] {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--d, 0ms);
}
.js-motion.hero-in [data-hero-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal], [data-hero-reveal], .btn, .card, .tile, .evidence-chev {
        opacity: 1 !important;
        transform: none !important;
    }

    [data-process-scene], [data-hero-camera] picture img {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* 390 × 844: compact mobile baseline. */
@media (max-width: 389px) {
    .shell { padding-right: max(16px, env(safe-area-inset-right)); padding-left: max(16px, env(safe-area-inset-left)); }
    .head-row { padding-right: max(12px, env(safe-area-inset-right)); padding-left: max(12px, env(safe-area-inset-left)); }
    .logo svg { width: 118px; height: auto; }
    .mobile-region-summary { max-width: 78px; }
    .hero h1 { font-size: 42px; }
    .hero-search { flex-direction: column; padding: 8px; }
    .hero-search-input { min-height: 52px; }
    .home-hero-copy .hero-search { flex-direction: column; }
}

/* 390–429 px phones. */
@media (min-width: 390px) and (max-width: 429px) {
    .logo svg { width: 124px; height: auto; }
    .mobile-region-summary { max-width: 88px; }
}

/* 430 × 932 and wider phones. */
@media (min-width: 430px) and (max-width: 767px) {
    .logo svg { width: 136px; height: auto; }
    .mobile-region-summary { max-width: 116px; }
}

/* Shared phone and 768 × 1024 tablet shell. */
@media (max-width: 900px) {
    .desktop-only { display: none !important; }
    .mobile-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; min-width: 0; }
    .mobile-noscript-nav { display: block; }
    .mobile-menu:not([hidden]) { display: block; }
    .head-row { gap: 10px; flex-wrap: nowrap; min-height: 64px; }
    .logo { flex: none; }
    .section { padding: 72px 0 0; }
    .section.band { margin-top: 72px; padding-top: 64px; padding-bottom: 72px; }
    .hero { padding: 64px 0 8px; }
    .hero-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 40px; }
    .tile { min-width: 0; padding: 20px 18px 18px; }
    .evidence-grid { grid-template-columns: 1fr; }
    .cta-band { margin-top: 72px; padding: 28px; }
    .foot-main { padding-top: 40px; padding-bottom: 32px; }
    .activity-when { min-width: 0; }
    .home-hero { padding-top: 14px; }
    .home-hero-stage { grid-template-areas: "media" "copy"; grid-template-columns: 1fr; min-height: 0; }
    /* Homepage B: the photo becomes a slim texture band — the first
       phone screen belongs to search + categories, not the visual. The
       capability card would swallow the band, so it sits out here. */
    .home-hero-media { min-height: clamp(160px, 42vw, 240px); }
    .hero-capability { display: none; }
    .home-hero-copy { padding: 24px 20px 30px; }
    .home-hero-copy h1 { max-width: 11ch; font-size: clamp(32px, 8.6vw, 44px); }
    .home-hero .hero-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-hero .tile[data-tile] { grid-column: span 1; min-height: 190px; }
    .home-hero .tile[data-tile="phone"] { grid-row: 1; grid-column: 1 / -1; min-height: 220px; }
    .home-hero .tile--manual { grid-column: span 2; min-height: 190px; }
    .home-hero .tile-consult { grid-area: 1 / 1 / 2 / -1; margin: 0 16px 16px 0; }
    /* Long rotating names must wrap before the corner pill, not run under it. */
    .home-hero .tile[data-tile="phone"] .tile-model { max-width: calc(100% - 136px); }
    .home-value-stage > .value-stage-copy, .process-story-intro, .trust-record-intro { display: block; }
    .home-value-stage .sub, .process-story-intro .sub, .trust-record-intro .sub { margin-top: 14px; }
    .value-stage-scene { grid-template-columns: 1fr; min-height: 0; }
    .value-stage-media { min-height: 420px; }
    .value-stage-panel { max-height: none; margin: 0; border-radius: 0; padding: 24px 18px 28px; }
    .process-scene, .process-scene--store, .process-scene--mail, .process-scene--pickup { grid-template-areas: "media" "copy"; grid-template-columns: 1fr; min-height: 0; }
    .process-scene-media, .process-scene--mail .process-scene-media { grid-area: media; min-height: 360px; }
    .process-scene-copy, .process-scene--mail .process-scene-copy { grid-area: copy; min-height: 300px; padding: 34px 26px; }
    .store-stage-card { min-height: 560px; }
    .store-stage-copy { right: 12px; bottom: 12px; left: 12px; padding: 20px; }
    .content-hero { grid-template-columns: 1fr; min-height: 0; margin-top: 24px; }
    .content-hero-copy { padding: 38px 24px 42px; }
    .content-hero-copy h1 { font-size: clamp(42px, 11vw, 62px); }
    .content-hero-media { grid-row: 1; min-height: 380px; }
    .content-section-heading { display: block; }
    .content-section-heading .sub { margin-top: 14px; }
    .category-gallery-grid { grid-template-columns: 1fr; }
    .category-gallery-grid .device-price-card, .category-gallery-grid .device-price-card:first-child { grid-column: auto; grid-row: auto; min-height: 230px; }
    .category-gallery-grid .device-price-card:first-child { min-height: 420px; }
    .category-manual-band { grid-template-columns: auto minmax(0, 1fr); }
    .category-manual-band .btn { grid-column: 1 / -1; justify-content: center; }
    .model-stage { grid-template-columns: 1fr; min-height: 0; margin-top: 24px; }
    .model-stage-media { min-height: 430px; }
    .model-stage-quote { margin: 0; border-radius: 0; padding: 36px 24px 42px; }
    .model-detail-grid { grid-template-columns: 1fr; }
    .variant-ledger { padding: 28px 20px; }
    .condition-explainer { position: static; min-height: 0; }
    .condition-index { margin-bottom: 64px; }
    .how-hero { grid-template-columns: 1fr; min-height: 0; padding-top: 52px; }
    .how-hero-number { font-size: 130px; }
    .how-step-line { grid-template-columns: 1fr; }
    .how-step-line article { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
    .how-step-line article:last-child { border-bottom: 0; }
    .how-step-line h2 { margin-top: 64px; }
    .process-story--how { padding-top: 72px; }
    .trust-ledger-stage { grid-template-columns: 1fr; min-height: 0; margin-top: 24px; padding: 42px 24px 24px; }
    .trust-certificate { min-height: 240px; }
    .faq-hero { grid-template-columns: 1fr; min-height: 0; padding-top: 52px; }
    .faq-index { max-width: 420px; }
    .faq-item summary { grid-template-columns: 30px minmax(0, 1fr) auto; gap: 10px; min-height: 96px; }
    .faq-item > p { padding-right: 28px; padding-left: 40px; }
    .cms-heading { padding-top: 72px; }
    .cms-reading { padding: 36px 28px 42px; }
    .content-quote-entry { align-items: flex-start; flex-direction: column; margin-top: 72px; padding: 30px 24px; }
}

/* 768 × 1024 tablet content rhythm. */
@media (min-width: 768px) and (max-width: 900px) {
    .logo svg { width: 148px; height: auto; }
    .mobile-region-summary { max-width: 180px; }
    .hero-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .mobile-menu-panel { right: max(24px, env(safe-area-inset-right)); left: auto; width: 380px; }
}

@media (min-width: 901px) {
    .hero { text-align: center; }
    .hero h1 { max-width: 17ch; margin-left: auto; margin-right: auto; }
    .hero p { margin-left: auto; margin-right: auto; }
}

/* 1440 × 900 desktop composition. */
@media (min-width: 1280px) {
    .hero { padding-top: 112px; }
    .section { padding-top: 124px; }
}

/* ============================================================== *
 * Tool home (owner 拍板 2026-08-23: A 骨架 + 渐变 + 毛玻璃 + 立体
 * 插画 + 全局动效). The whole page floats on one ambient gold wash
 * (a fixed backdrop pseudo, so every glass panel frosts against
 * it); every interactive element answers the pointer with light
 * and inner motion — never with hit-geometry movement (the
 * hover-jitter rule holds: shadows and CHILD transforms only).
 * ============================================================== */
.tool-home { position: relative; max-width: 780px; margin: 0 auto; padding: 26px 18px 8px; }
/* The ambient gold wash carries EVERY pre-login page (owner 2026-08-24:
   登录之前的所有UI统一这套设计语言) — one fixed backdrop the glass
   panels frost against. */
body::before {
    position: fixed; z-index: -1; inset: 0; content: "";
    background:
        radial-gradient(52% 30% at 88% 2%, rgb(255 196 0 / 0.15), transparent 70%),
        radial-gradient(60% 34% at 4% 20%, rgb(151 180 201 / 0.17), transparent 70%),
        radial-gradient(46% 26% at 84% 58%, rgb(255 196 0 / 0.07), transparent 70%),
        linear-gradient(175deg, #FBFAF6 0%, #F2F3EF 55%, #F7F6F1 100%);
}
.th-greet { margin: 0; font-size: clamp(23px, 5.6vw, 30px); font-weight: 830; letter-spacing: -0.025em; line-height: 1.12; }
.th-greet span:last-child {
    background: linear-gradient(100deg, #B8860B, #8A6A00 55%, #C9A227);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.th-search {
    display: flex; gap: 8px; max-width: none; margin: 14px 0 0; padding: 5px 5px 5px 16px;
    border: 1px solid rgb(255 255 255 / 0.85); border-radius: var(--radius-pill);
    background: rgb(255 255 255 / 0.72);
    box-shadow: 0 16px 44px rgb(10 11 13 / 0.1), inset 0 1px 0 rgb(255 255 255 / 0.9);
    transition: box-shadow 0.25s var(--ease-standard);
}
@supports (backdrop-filter: blur(1px)) { .th-search { backdrop-filter: blur(18px) saturate(1.4); } }
.th-search:focus-within { box-shadow: 0 20px 54px rgb(10 11 13 / 0.16), inset 0 1px 0 rgb(255 255 255 / 0.9), 0 0 0 3px rgb(255 196 0 / 0.25); }
.th-search .hero-search-input { border: 0; background: none; padding: 12px 0; font-size: 16px; }
.th-search .hero-search-input:focus { border: 0; }
.th-search-btn {
    background: linear-gradient(160deg, #FFD65C, #FFC400 55%, #F2B800);
    box-shadow: 0 6px 18px rgb(255 196 0 / 0.35), inset 0 1px 0 rgb(255 255 255 / 0.5), inset 0 -2px 0 rgb(10 11 13 / 0.08);
    transition: box-shadow 0.25s var(--ease-standard), transform 0.12s var(--ease-standard);
}
.th-search-btn:hover { box-shadow: 0 10px 26px rgb(255 196 0 / 0.5), inset 0 1px 0 rgb(255 255 255 / 0.6), inset 0 -2px 0 rgb(10 11 13 / 0.08); }
.th-search-btn:active { transform: scale(0.97); }
.th-hotwords { display: flex; gap: 7px; margin-top: 12px; overflow-x: auto; scrollbar-width: none; }
.th-hotwords::-webkit-scrollbar { display: none; }
.th-hotwords a {
    flex: none; padding: 6px 12px; border: 1px solid rgb(255 255 255 / 0.8); border-radius: var(--radius-pill);
    background: rgb(255 255 255 / 0.55); color: var(--sub); font-size: 12px; font-weight: 640; text-decoration: none;
    transition: background-color 0.2s var(--ease-standard), color 0.2s var(--ease-standard), box-shadow 0.2s var(--ease-standard);
}
.th-hotwords a:hover { background: #fff; color: var(--ink); box-shadow: 0 6px 16px rgb(10 11 13 / 0.08); }

/* The shared frosted panel — every tool-home surface sits on it. */
.glass-card {
    background: rgb(255 255 255 / 0.62); border: 1px solid rgb(255 255 255 / 0.85); border-radius: 24px;
    box-shadow: 0 26px 60px rgb(10 11 13 / 0.07), inset 0 1px 0 rgb(255 255 255 / 0.9);
}
@supports (backdrop-filter: blur(1px)) { .glass-card { backdrop-filter: blur(22px) saturate(1.4); } }

.th-below { margin-top: 14px; }
.th-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 4px; padding: 20px 10px; }
.th-g {
    display: grid; justify-items: center; gap: 8px; color: var(--ink);
    font-size: 11.5px; font-weight: 660; letter-spacing: 0.01em; text-decoration: none;
}
.th-ic { width: 40px; height: 40px; filter: drop-shadow(0 7px 12px rgb(10 11 13 / 0.14)); transition: transform 0.3s var(--ease-out), filter 0.3s var(--ease-out); }
/* Hover answers with the ICON moving, never the hit target. */
.th-g:hover .th-ic, .th-g:focus-visible .th-ic { transform: translateY(-4px) rotate(-2deg); filter: drop-shadow(0 12px 18px rgb(10 11 13 / 0.2)); }
.th-g:active .th-ic { transform: translateY(-1px) scale(0.96); }

/* Search-open recede: the doors dim while suggestions float. */
.tool-home.hero-searching .th-below[data-hero-reveal], .tool-home.hero-searching .th-below,
.tool-home.hero-searching .th-hotwords[data-hero-reveal], .tool-home.hero-searching .th-hotwords {
    opacity: 0.12; filter: saturate(0.4); pointer-events: none; transition: opacity 0.25s ease;
}
.th-below, .th-hotwords { transition: opacity 0.25s ease; }

/* Board section */
.th-board-section { max-width: 780px; margin: 0 auto; padding: 40px 18px 0; }
.th-sect-h { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; padding: 0 4px 12px; }
.th-kicker { display: flex; align-items: center; gap: 7px; margin: 0; color: var(--sub); font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.th-sect-h h2 { margin: 3px 0 0; font-size: clamp(19px, 4vw, 24px); font-weight: 830; letter-spacing: -0.02em; }
.th-shuffle {
    padding: 8px 14px; border: 1px solid rgb(255 255 255 / 0.85); border-radius: var(--radius-pill);
    background: rgb(255 255 255 / 0.6); color: var(--ink); font: inherit; font-size: 12px; font-weight: 700;
    transition: background-color 0.2s var(--ease-standard), box-shadow 0.2s var(--ease-standard);
}
.th-shuffle:hover { background: #fff; box-shadow: 0 8px 20px rgb(10 11 13 / 0.1); }
.th-segments { margin: 0 0 12px; background: rgb(255 255 255 / 0.55); border: 1px solid rgb(255 255 255 / 0.8); scrollbar-width: none; }
.th-segments::-webkit-scrollbar { display: none; }
.th-rows { padding: 4px 16px; transition: opacity 0.3s var(--ease-standard); }
.th-rows.board-fading { opacity: 0; }
.th-row {
    display: flex; align-items: center; gap: 11px; padding: 13px 0;
    border-bottom: 1px solid rgb(10 11 13 / 0.05); color: var(--ink); text-decoration: none;
    transition: background-color 0.2s var(--ease-standard);
}
.th-row:last-child { border-bottom: 0; }
.th-row-thumb { position: relative; width: 42px; height: 42px; flex: none; display: grid; place-items: center; transition: transform 0.3s var(--ease-out); }
.th-row-picture, .th-row-picture img { width: 42px; height: 42px; object-fit: contain; display: block; }
.th-row-fallback { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; color: var(--sub); font-size: 10px; font-weight: 800; letter-spacing: 0.06em; }
.th-row-name { flex: 1; min-width: 0; }
/* Device names WRAP (max two lines) — the 8aeb20a truncation lesson:
   an ellipsis that eats the model number is a bug, not a style. */
.th-row-name b { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 14px; font-weight: 720; letter-spacing: -0.01em; line-height: 1.25; }
.th-row-name small { display: block; margin-top: 2px; color: var(--sub); font-size: 11px; }
.th-row-price { text-align: right; flex: none; }
.th-row-price em { display: block; font-style: normal; font-size: 14.5px; font-weight: 830; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.th-row-price em { color: var(--cash-ink); }
.th-row-price small { display: block; margin-top: 2px; color: var(--sub); font-size: 9px; letter-spacing: 0.08em; }
.th-row-go {
    display: grid; place-items: center; width: 22px; height: 22px; flex: none;
    border: 1px solid rgb(10 11 13 / 0.12); border-radius: 50%; color: var(--sub); font-size: 12px;
    transition: transform 0.25s var(--ease-out), background-color 0.25s var(--ease-standard), color 0.25s var(--ease-standard), border-color 0.25s var(--ease-standard);
}
.th-row:hover .th-row-thumb { transform: translateY(-2px) scale(1.05); }
.th-row:hover .th-row-go { transform: translateX(3px); background: var(--cash); border-color: var(--cash); color: var(--ink); }
.th-board-empty { padding: 18px 4px 22px; text-align: left; }
.th-board-empty .btn { margin-top: 14px; display: inline-block; }

/* Assurance strip */
.th-assure { display: flex; max-width: min(744px, calc(100% - 36px)); margin: 16px auto 0; }
.th-assure > div {
    flex: 1; display: grid; justify-items: center; gap: 6px; padding: 14px 4px;
    color: var(--sub); font-size: 9.5px; font-weight: 700; letter-spacing: 0.04em; text-align: center;
}
.th-assure .th-ic { width: 21px; height: 21px; flex: none; }

/* Phone-width standing CTA */
.th-sticky-cta {
    position: fixed; z-index: 20; right: 0; bottom: 0; left: 0;
    padding: 12px 18px calc(14px + var(--safe-bottom));
    background: rgb(250 250 246 / 0.62); border-top: 1px solid rgb(255 255 255 / 0.75);
}
@supports (backdrop-filter: blur(1px)) { .th-sticky-cta { backdrop-filter: blur(22px) saturate(1.5); } }
.th-sticky-cta .btn {
    display: flex; width: 100%; align-items: center; justify-content: center; padding: 15px;
    background: linear-gradient(160deg, #FFD65C, #FFC400 55%, #F2B800);
    box-shadow: 0 10px 26px rgb(255 196 0 / 0.4), inset 0 1px 0 rgb(255 255 255 / 0.5), inset 0 -2px 0 rgb(10 11 13 / 0.08);
    font-size: 15.5px; font-weight: 830; letter-spacing: 0.02em;
}
.th-sticky-cta .btn:active { transform: scale(0.985); }
body.has-sticky-cta, body:has(.tool-home) { padding-bottom: 84px; }

/* Desktop: a centered tool column — density, not drama. */
@media (min-width: 1024px) {
    .tool-home { max-width: 860px; padding-top: 44px; }
    .th-hotwords { flex-wrap: wrap; overflow: visible; }
    .th-greet { font-size: 34px; }
    .th-grid { grid-template-columns: repeat(8, 1fr); padding: 24px 18px; }
    .th-board-section { max-width: 860px; }
    .th-assure { max-width: 824px; }
    .th-assure > div { font-size: 10.5px; }
    .th-sticky-cta { display: none; }
    body:has(.tool-home) { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .th-search, .th-search-btn, .th-hotwords a, .th-ic, .th-row, .th-row-thumb, .th-row-go, .th-shuffle, .th-rows { transition: none; }
    .th-g:hover .th-ic, .th-row:hover .th-row-thumb, .th-row:hover .th-row-go { transform: none; }
}

/* ---- Pre-login harmonization (owner 2026-08-24: 所有登录前UI统一
   这套设计语言). The wash is global; these bring every shared shell
   onto the glass system. ---- */

/* Home: the three channels as glass cards with the grid's icons. */
.th-process { display: grid; gap: 12px; max-width: 780px; margin: 0 auto; }
.process-story--home { max-width: 780px; margin: 0 auto; padding: 44px 18px 0; }
.process-story--home .th-sect-h { max-width: 780px; margin: 0 auto; }
.th-process-card { padding: 18px 18px 16px; }
.th-process-card .th-ic { width: 44px; height: 44px; }
.th-process-card .eyebrow { margin-top: 10px; font-size: 10px; letter-spacing: 0.14em; }
.th-process-card h3 { margin: 4px 0 0; font-size: 16.5px; font-weight: 780; letter-spacing: -0.01em; }
.th-process-body { margin: 6px 0 0; color: var(--sub); font-size: 13px; line-height: 1.55; }
@media (min-width: 1024px) {
    .th-process { grid-template-columns: repeat(3, 1fr); max-width: 860px; }
    .process-story--home { max-width: 860px; }
    .process-story--home .th-sect-h { max-width: 860px; }
}

/* Dark bands become floating rounded slabs instead of full-bleed
   walls — the 50vw bleed math is reset so the slab centers. */
.section.band.home-trust-record, .cta-band {
    max-width: 900px;
    margin-left: auto; margin-right: auto;
    padding-left: clamp(20px, 5vw, 56px); padding-right: clamp(20px, 5vw, 56px);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgb(10 11 13 / 0.16);
}
@media (max-width: 1023px) {
    .section.band.home-trust-record, .cta-band { margin-left: 14px; margin-right: 14px; }
}

/* Shared light shells frost instead of painting solid. */
.section.band.band-well, .band-well {
    background: rgb(255 255 255 / 0.55);
    border: 1px solid rgb(255 255 255 / 0.8);
    border-radius: 26px;
    max-width: 900px;
    margin-left: auto; margin-right: auto;
    padding-left: clamp(20px, 5vw, 56px); padding-right: clamp(20px, 5vw, 56px);
}
@supports (backdrop-filter: blur(1px)) { .band-well { backdrop-filter: blur(18px) saturate(1.3); } }
@media (max-width: 1023px) { .band-well { margin-left: 12px; margin-right: 12px; } }

/* Cards across category galleries + stores share the glass grammar. */
.device-price-card, .store-card, .faq-item {
    background: rgb(255 255 255 / 0.66);
    border: 1px solid rgb(255 255 255 / 0.85);
    box-shadow: 0 18px 44px rgb(10 11 13 / 0.06);
}
.device-price-card { transition: box-shadow 0.25s var(--ease-standard), background-color 0.25s var(--ease-standard); }
.device-price-card:hover { background: rgb(255 255 255 / 0.92); box-shadow: 0 26px 60px rgb(10 11 13 / 0.12); }

/* How-it-works: the step line trades hard rules for glass cells. */
.how-step-line { gap: 12px; border-top: 0; border-bottom: 0; }
.how-step-line article {
    border-right: 0; border-radius: 22px;
    background: rgb(255 255 255 / 0.6); border: 1px solid rgb(255 255 255 / 0.85);
    box-shadow: 0 20px 48px rgb(10 11 13 / 0.06);
}
@supports (backdrop-filter: blur(1px)) { .how-step-line article { backdrop-filter: blur(18px) saturate(1.3); } }
