/* ═══════════════════════════════════════════════════════════════════════
   Hoshino — shared marketing-site stylesheet (jade-on-night)
   Used by every content page: features, coverage, pricing, about, help,
   contact, privacy, terms, blog, developers, roadmap. Matches landing.html.
   ═══════════════════════════════════════════════════════════════════════ */
:root{
  --void:#0a0a0b; --surface:#121214; --panel:#17171a; --panel2:#1c1c21;
  --line:#26262a; --line2:#34343a;
  --ink:#f6f1e6; --ink2:#cfcabf; --body:#a7a29a; --mut:#a7a29a; --dim:#6e6a63;
  --a600:#31d9a0; --a-light:#8bf0ce; --a-deep:#0e8f6a; --a-ink:#04241a;
  --a-tint:#0d2019; --a-tintline:#1d4a3c;
  --pos:#35d6a0; --neg:#f0616d; --warn:#e8b24a; --gold:#dcb658;
  --r:12px; --r-sm:8px; --r-lg:18px;
  --sans:Inter,-apple-system,"Segoe UI",Roboto,system-ui,"Hiragino Sans","Noto Sans CJK JP","Noto Sans CJK SC","Noto Sans CJK KR","PingFang SC",sans-serif;
  --mincho:"Yu Mincho","Hiragino Mincho ProN","Noto Serif CJK JP","Songti SC","Source Han Serif",serif;
}
*{box-sizing:border-box;margin:0}
html{scroll-behavior:smooth}
body{
  font:17px/1.66 var(--sans); color:var(--ink2); -webkit-font-smoothing:antialiased;
  background:
    radial-gradient(760px 460px at 8% -4%,rgba(49,217,160,.075),transparent 58%),
    radial-gradient(820px 520px at 100% 5%,rgba(49,217,160,.06),transparent 56%),
    radial-gradient(900px 600px at 50% 118%,rgba(49,217,160,.06),transparent 60%),
    var(--void);
  min-height:100vh;
}
::selection{background:rgba(49,217,160,.28);color:var(--ink)}
a{color:var(--a600);text-decoration:none}
a:hover{color:var(--a-light)}
img{max-width:100%}
.wrap{max-width:1180px;margin:0 auto;padding:0 24px}
.narrow{max-width:820px}

/* ── header / nav ─────────────────────────────────────────────── */
.nav{position:sticky;top:0;z-index:50;background:rgba(10,10,11,.72);backdrop-filter:blur(14px);border-bottom:1px solid var(--line)}
.nav .wrap{display:flex;align-items:center;gap:22px;height:66px}
.brand{display:inline-flex;align-items:center;gap:10px;font-weight:800;font-size:19px;letter-spacing:-.01em;color:var(--ink)}
.brand img{width:34px;height:34px;border-radius:9px}
.brand .dot{color:var(--a600)}
/* margin-left:20px keeps the first link off the wordmark — 8px read as a
   collision once "Cards" was added as the first item. */
.nav nav{display:flex;align-items:center;gap:24px;margin-left:20px}
.nav nav a{font-size:15px;font-weight:500;color:var(--ink2)}
.nav nav a:hover{color:var(--ink)}
.nav .sp{flex:1}
.nav .cta{display:flex;align-items:center;gap:10px}
/* padding:6px 10px rendered a 38x38 box — under the 44px minimum thumb target.
   Sized explicitly instead of relying on padding + glyph metrics. */
.navtoggle{display:none;background:none;border:1px solid var(--line2);color:var(--ink);border-radius:8px;padding:0;min-width:44px;min-height:44px;cursor:pointer;font-size:18px;line-height:1}
.navtoggle:hover{background:#1a1a1e}
/* Menu-only "Log in". The .cta ghost button is hidden below 860px to keep the
   header row from overflowing, which left a signed-up customer with NO way to
   sign in on a phone — the sign-UP CTA stayed, the sign-IN vanished. Shown only
   where that button is hidden, so the two never appear together. */
.navlogin{display:none}
@media(max-width:860px){
  .navlogin{display:block;order:99;border-top:1px solid var(--line);padding-top:14px;margin-top:2px;color:var(--a600);font-weight:700}
}

/* ── header search — the front door on every public page ──────────
   It lives INSIDE `.nav nav` so it inherits the existing mobile
   dropdown for free: the nav row never grows, so it can never
   overflow at 375px. Desktop shows it inline after the links;
   861–1010px hides it (the row has no room left and the links win);
   ≤860px it becomes the first, full-width item of the open menu. */
.nav .navsearch{position:relative;display:flex;align-items:center;margin-left:6px}
.nav .navsearch input{
  width:clamp(132px,14vw,208px);font:500 14px/1.3 var(--sans);color:var(--ink);
  background:var(--panel);border:1px solid var(--line2);border-radius:999px;
  padding:7px 34px 7px 14px;transition:.15s;-webkit-appearance:none;appearance:none;
}
.nav .navsearch input::placeholder{color:var(--dim)}
.nav .navsearch input:focus{outline:none;border-color:rgba(49,217,160,.65);box-shadow:0 0 0 3px rgba(49,217,160,.16)}
.nav .navsearch input::-webkit-search-cancel-button{-webkit-appearance:none}
.nav .navsearch button{
  position:absolute;right:3px;top:50%;transform:translateY(-50%);
  display:grid;place-items:center;width:28px;height:28px;padding:0;
  background:none;border:0;border-radius:50%;color:var(--a600);
  font-size:19px;line-height:1;cursor:pointer;transition:.15s;
}
.nav .navsearch button:hover{background:rgba(49,217,160,.12)}
@media(max-width:1010px){.nav nav .navsearch{display:none}}
@media(max-width:860px){
  /* 22px gaps put the wordmark + toggle + CTA ~18px over a 375px row, and flex
     absorbed it by shrinking `.brand` 18px narrower than its own glyphs — the
     wordmark spilled to within 4px of the toggle. 12px lets the row sit inside
     the 24px gutter instead. Mirrors landing.html's `.navbar{gap:12px}`. */
  .nav .wrap{gap:12px}
  .brand{flex:none}                    /* the wordmark must never compress */
  /* Toggle belongs after the CTA, not welded to the wordmark. Done with `order`
     so the 20+ pages sharing this shell need no markup change; desktop is
     untouched because the whole rule is inside the media query. */
  .nav .cta{order:2}
  /* left:0;right:0 sizes the panel against `.nav`, but the DESKTOP
     `margin-left:20px` (which keeps the first link off the wordmark) still
     applied — shifting the open panel 20px right of the screen and making it
     20px narrower than the viewport. Reset it here. */
  /* align-items:stretch too: the desktop rule centres items on the ROW axis,
     which after flex-direction:column centres each link horizontally and leaves
     it only as wide as its own label. */
  .nav nav{display:none;position:absolute;top:66px;left:0;right:0;margin-left:0;flex-direction:column;align-items:stretch;background:var(--surface);border-bottom:1px solid var(--line);padding:4px 24px 10px;gap:0}
  .nav nav.open{display:flex}
  /* Full-width 48px rows: this dropdown is the only route to the rest of the
     site on a phone, so each link is a thumb target rather than a 25px text
     baseline only as wide as its own label. */
  .nav nav a{display:flex;align-items:center;min-height:48px;font-size:16px;border-bottom:1px solid var(--line)}
  .nav nav a:last-child{border-bottom:0}
  .nav .cta .btn.ghost{display:none}
  .navtoggle{display:grid;place-items:center;order:3}
  .nav nav .navsearch{display:flex;order:-1;width:100%;margin:10px 0}
  .nav .navsearch input{width:100%;font-size:16px;padding:10px 38px 10px 15px}
  .nav .navsearch button{width:32px;height:32px;right:4px}
}

/* ── buttons ──────────────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 18px;border-radius:var(--r-sm);font-size:15px;font-weight:600;border:1px solid var(--line2);color:var(--ink);background:var(--panel);cursor:pointer;transition:.15s;white-space:nowrap}
.btn:hover{border-color:var(--line2);transform:translateY(-1px)}
.btn.primary{background:linear-gradient(180deg,#3ee3ad,#20c088);color:var(--a-ink);border:1px solid rgba(16,120,90,.4);font-weight:700;box-shadow:0 1px 1px rgba(0,0,0,.28),0 10px 22px -12px rgba(49,217,160,.5),inset 0 1px 0 rgba(255,255,255,.35)}
.btn.primary:hover{filter:brightness(1.05)}
.btn.ghost{background:transparent}
.btn.lg{padding:13px 24px;font-size:16px}

/* ── section band system (alternating tonal bands) ────────────── */
.section{padding:88px 0;border-top:1px solid rgba(255,255,255,.05);position:relative}
.section.lift{background:linear-gradient(180deg,#111318,#0b0c0f);border-top:1px solid rgba(49,217,160,.20);box-shadow:inset 0 80px 140px -80px rgba(49,217,160,.20)}
.section.void{background:radial-gradient(1200px 220px at 50% 0%,rgba(49,217,160,.06),transparent 72%),var(--void)}
.section.tight{padding:56px 0}
.hero{padding:76px 0 60px;position:relative;overflow:hidden;text-align:center}
.hero.left{text-align:left}

/* ── typography ───────────────────────────────────────────────── */
.eyebrow{display:inline-block;font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--a600);background:rgba(49,217,160,.09);border:1px solid rgba(49,217,160,.22);padding:5px 13px;border-radius:999px;margin-bottom:18px;font-weight:700}
h1{font-size:clamp(38px,5vw,62px);line-height:1.04;letter-spacing:-.03em;font-weight:800;color:var(--ink);text-wrap:balance}
h2{font-size:clamp(28px,3.4vw,40px);line-height:1.1;letter-spacing:-.02em;font-weight:800;color:var(--ink);text-wrap:balance}
h3{font-size:20px;font-weight:700;color:var(--ink);letter-spacing:-.01em}
.lead{font-size:20px;color:var(--body);max-width:640px;margin:18px auto 0;line-height:1.55}
.hero.left .lead{margin-left:0}
.sub{color:var(--mut);font-size:18px;max-width:600px;margin:12px auto 0}
.hl{color:var(--a600)}

/* ── cards / grids ────────────────────────────────────────────── */
.grid{display:grid;gap:20px}
/* `1fr` resolves to minmax(auto,1fr), and that `auto` floor is the item's
   MIN-CONTENT width. One unbreakable child — a <pre>, a long code token, a
   nowrap cell — then forces the track wider than the container and pushes the
   whole page sideways (developers.html ran 6px past a 375px screen; pricing's
   tier row 5px past its own container at 1440). Let items shrink; their own
   children already handle scrolling/clipping. */
.grid>*{min-width:0}
.g2{grid-template-columns:repeat(2,1fr)}
.g3{grid-template-columns:repeat(3,1fr)}
.g4{grid-template-columns:repeat(4,1fr)}
@media(max-width:900px){.g3,.g4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.g2,.g3,.g4{grid-template-columns:1fr}}
/* A 7th card sitting alone at the LEFT of a 3-up row reads as a broken grid.
   Centre it so the short row looks composed. Only while `.g3` really is 3
   columns (>900px); below that it is a 2-up/1-up and the rule must not apply. */
@media(min-width:901px){.grid.g3>:last-child:nth-child(3n+1){grid-column:2}}
.card{background:linear-gradient(180deg,var(--panel),var(--surface));border:1px solid var(--line);border-radius:16px;padding:24px;transition:.2s}
.card:hover{transform:translateY(-3px);border-color:rgba(49,217,160,.22);box-shadow:0 24px 60px -30px rgba(0,0,0,.7),0 0 0 1px rgba(49,217,160,.18)}
.card h3{margin-bottom:8px}
.card p{color:var(--body);font-size:15.5px}
.card .ic{width:42px;height:42px;border-radius:11px;background:var(--a-tint);border:1px solid var(--a-tintline);display:grid;place-items:center;margin-bottom:14px;font-size:20px}
.tag{display:inline-block;font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--a600);background:rgba(49,217,160,.1);border:1px solid rgba(49,217,160,.22);border-radius:999px;padding:4px 10px}

/* ── prose (legal, blog articles) ─────────────────────────────── */
.prose{max-width:760px;margin:0 auto;color:var(--ink2);font-size:17px;line-height:1.75}
.prose h2{font-size:26px;margin:40px 0 12px}
.prose h3{font-size:19px;margin:28px 0 8px}
.prose p{margin:0 0 16px}
.prose ul,.prose ol{margin:0 0 18px;padding-left:22px}
.prose li{margin:6px 0}
.prose strong{color:var(--ink)}
.prose a{text-decoration:underline}
.prose .muted{color:var(--mut);font-size:14.5px}
.prose hr{border:0;border-top:1px solid var(--line);margin:34px 0}

/* ── reader surface — long-form ARTICLE body on a light "paper" card ─
   Opt-in via `.prose.reader` (article body ONLY). Nav, hero, footer and
   the blog hub stay dark/jade. The palette is intentionally light in BOTH
   OS themes by design; every pairing below clears WCAG AA on #f7f5ef
   (ink 15.6:1 · muted 5.3:1 · jade link 4.7:1 · bold jade 4.7:1).
   The .reader table rules deliberately out-specify each article's scoped
   `.prose table.cmp` dark styles so comparison cells aren't light-on-light. */
.prose.reader{
  max-width:812px;                    /* ~700px reading measure after padding */
  margin:16px auto;                   /* breathing room over the dark section */
  padding:52px 56px;
  background:#f7f5ef;                  /* warm off-white paper */
  color:#1e1c18;                       /* near-black ink */
  border:1px solid #e7e1d3;
  border-radius:18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.55) inset,
    0 40px 80px -40px rgba(0,0,0,.7),
    0 10px 26px -18px rgba(0,0,0,.55);
  font-size:18px;
  line-height:1.8;
}
.prose.reader h2{color:#141210}                       /* dark, strong */
.prose.reader h3{color:#1c1a15}
.prose.reader strong{color:#141210}                   /* near-black */
.prose.reader a{color:#0c7d5c;text-decoration:underline;text-underline-offset:2px}
.prose.reader a:hover{color:#0a6247}
.prose.reader hr{border:0;border-top:1px solid #e3ddcf}  /* light divider */
.prose.reader .muted{color:#6b6559}                   /* muted body */
.prose.reader ::selection{background:rgba(12,125,92,.20);color:#141210}

/* comparison tables on the light surface — override the per-page scoped
   `.prose table.cmp` (which uses dark-theme vars) with higher specificity */
.prose.reader table{border-collapse:collapse}
.prose.reader th,.prose.reader td{color:#26231d}
.prose.reader table.cmp th,
.prose.reader table.cmp td{border-bottom:1px solid #e5dfd0;color:#26231d}
.prose.reader table.cmp thead th{color:#6b6559;border-bottom:1px solid #d8d1bf}
.prose.reader table.cmp td:first-child,
.prose.reader table.cmp th:first-child{color:#141210}
.prose.reader table.cmp td .yes{color:#0c7d5c}        /* jade "Yes" (bold) */
.prose.reader table.cmp td .no{color:#6b6559}
.prose.reader table.cmp th.h,
.prose.reader table.cmp td.h{background:rgba(12,125,92,.07)}  /* Hoshino column */
.prose.reader table.cmp thead th.h{color:#0c7d5c}
.prose.reader .cmp-note{color:#6b6559}

@media(max-width:680px){
  .prose.reader{padding:30px 20px;margin:12px auto;border-radius:14px;font-size:17px;line-height:1.78}
}

/* ── stat strip ───────────────────────────────────────────────── */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;text-align:center}
.stat .n{font-size:34px;font-weight:800;color:var(--ink);letter-spacing:-.02em;font-variant-numeric:tabular-nums}
.stat .k{color:var(--mut);font-size:13.5px;margin-top:4px}
@media(max-width:620px){.stats{grid-template-columns:repeat(2,1fr)}}

/* ── footer ───────────────────────────────────────────────────── */
.foot{border-top:1px solid var(--line);background:linear-gradient(180deg,#0c0d10,var(--void));padding:56px 0 30px;position:relative;overflow:hidden}
.foot::after{content:"星";position:absolute;right:-2%;bottom:-40%;font-family:var(--mincho);font-weight:700;line-height:.8;font-size:min(30vw,300px);color:transparent;-webkit-text-stroke:2px rgba(49,217,160,.06);pointer-events:none;z-index:0}
.foot .wrap{position:relative;z-index:1}
.foot-top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:32px}
@media(max-width:820px){.foot-top{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.foot-top{grid-template-columns:1fr}}
.foot .col h4{font-size:12px;text-transform:uppercase;letter-spacing:.12em;color:var(--dim);margin-bottom:14px;font-weight:700}
.foot .col a{display:block;color:var(--ink2);font-size:14.5px;margin:9px 0}
.foot .col a.brand{display:inline-flex;align-items:center;gap:10px;margin:0}
.foot .col a:hover{color:var(--a600)}
.foot .about{color:var(--mut);font-size:14px;max-width:280px;margin-top:12px;line-height:1.6}
.foot .brand{margin-bottom:2px}
.foot-bottom{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;border-top:1px solid var(--line);margin-top:40px;padding-top:22px;color:var(--dim);font-size:13px}
.foot-bottom .made{color:var(--mut)}

/* ── 星 watermark helper ──────────────────────────────────────── */
/* ═══ FEATURE SPLIT + ARTIFACTS ══════════════════════════════════════════════
   Shared by every page that has to explain something. The rule the whole site
   now follows: DON'T describe a feature, show the thing it produces. A page of
   identically-centred text blocks reads as a list no matter how good the copy
   is; alternating a claim against the artifact it produces reads as a product.
   `.fx-flip` swaps the sides so consecutive sections never look the same. */
.fx{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.fx-flip .fx-art{order:-1}
.fx-copy h2{margin-top:2px}
.fx-copy .lead{margin-top:14px}
.fx-list{list-style:none;margin:22px 0 0;padding:0;display:grid;gap:11px}
.fx-list li{position:relative;padding-left:26px;color:var(--ink2);font-size:15.5px;line-height:1.55}
.fx-list li::before{content:"";position:absolute;left:0;top:7px;width:13px;height:13px;border-radius:50%;
  background:rgba(49,217,160,.14);border:1px solid rgba(49,217,160,.5)}
.fx-list li::after{content:"";position:absolute;left:4.5px;top:10.5px;width:4px;height:4px;border-radius:50%;background:var(--a600)}
.fx-list li b{color:var(--ink);font-weight:700}

/* the artifact frame — a piece of the product, not a stock illustration */
.fx-art{position:relative}
.fx-panel{background:linear-gradient(180deg,var(--panel),var(--surface));border:1px solid var(--line);
  border-radius:18px;padding:20px;box-shadow:0 40px 90px -50px rgba(0,0,0,.9),0 0 0 1px rgba(49,217,160,.08)}
/* The glow is inset NEGATIVELY so it bleeds past the panel — which on a 375px
   phone pushed the document 2px wider than the viewport and gave the whole page
   a horizontal scroll. A pseudo-element leaves no trace in the DOM, so this is
   invisible to any audit that walks elements looking for a wide right edge; it
   only shows up as scrollWidth > clientWidth with zero identifiable offenders.
   `overflow-x:clip` on the panel contains the paint WITHOUT creating a scroll
   container (which `hidden` would, breaking sticky/anchor behaviour above it). */
/* position:relative is load-bearing, not decoration: without it the absolutely
   positioned ::before anchors to .fx-art instead, so it escapes this element's
   clip box entirely and overflow-x:clip here does nothing. */
.fx-panel{position:relative;overflow-x:clip}
.fx-panel::before{content:"";position:absolute;inset:-14% -8%;z-index:-1;pointer-events:none;
  background:radial-gradient(58% 50% at 50% 45%,rgba(49,217,160,.16),transparent 70%);filter:blur(22px)}
.fx-ptitle{display:flex;align-items:center;gap:8px;font-size:10.5px;font-weight:800;letter-spacing:.13em;
  text-transform:uppercase;color:var(--dim);margin-bottom:14px}
.fx-ptitle::after{content:"";flex:1;height:1px;background:var(--line)}

/* rows of "region → price", the workhorse artifact */
.fx-rows{display:grid;gap:8px}
.fx-row{display:flex;align-items:center;gap:10px;padding:10px 13px;border-radius:10px;background:var(--void);
  border:1px solid var(--line);font-size:14px;color:var(--ink2)}
.fx-row .rg{flex:1;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.fx-row .px{font-weight:800;color:var(--ink);font-variant-numeric:tabular-nums}
.fx-row.win{border-color:rgba(49,217,160,.5);background:rgba(49,217,160,.08)}
.fx-row.win .px{color:var(--a600)}
.fx-row.warm{border-color:rgba(232,178,74,.4);background:rgba(232,178,74,.06)}
.fx-tagsm{font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;border-radius:999px;padding:2px 8px}
.fx-tagsm.buy{color:var(--a-ink);background:var(--a600)}
.fx-tagsm.sell{color:#0a0a0b;background:#e8b24a}
.fx-net{margin-top:12px;padding:12px 14px;border-radius:11px;text-align:center;font-weight:800;font-size:15.5px;
  color:var(--a-ink);background:linear-gradient(180deg,#3ee3ad,#20c088);box-shadow:0 14px 30px -14px rgba(49,217,160,.7)}
.fx-foot{margin-top:11px;font-size:12px;color:var(--dim);line-height:1.5;text-align:center}

/* a card face + its resolved identity — the scan artifact */
.fx-scan{display:flex;gap:16px;align-items:center}
.fx-scan img{width:104px;height:145px;object-fit:cover;border-radius:10px;flex:none;
  box-shadow:0 18px 40px -20px rgba(0,0,0,.9),0 0 0 1px rgba(49,217,160,.25)}
.fx-idlist{display:grid;gap:7px;min-width:0}
.fx-id{display:flex;gap:8px;align-items:baseline;font-size:13px;color:var(--mut)}
.fx-id b{color:var(--ink);font-weight:700}
.fx-ok{display:inline-flex;align-items:center;gap:6px;font-size:11.5px;font-weight:800;color:var(--a600);
  background:rgba(49,217,160,.1);border:1px solid rgba(49,217,160,.35);border-radius:999px;padding:3px 10px;width:fit-content}

/* grade-EV bars */
.fx-bars{display:grid;gap:13px}
.fx-bar{display:grid;grid-template-columns:64px 1fr auto;gap:11px;align-items:center;font-size:13px;color:var(--mut)}
.fx-bar .tr{height:26px;border-radius:7px;background:var(--void);border:1px solid var(--line);overflow:hidden}
.fx-bar .fl{height:100%;border-radius:6px;background:linear-gradient(90deg,rgba(49,217,160,.35),var(--a600))}
.fx-bar .fl.mute{background:linear-gradient(90deg,rgba(255,255,255,.1),rgba(255,255,255,.22))}
.fx-bar .vl{font-weight:800;color:var(--ink);font-variant-numeric:tabular-nums;font-size:14px}

/* alert stack */
.fx-alerts{display:grid;gap:9px}
.fx-alert{display:flex;gap:10px;align-items:flex-start;padding:11px 13px;border-radius:10px;background:var(--void);
  border:1px solid var(--line);font-size:13.5px;color:var(--ink2);line-height:1.45}
.fx-alert .bell{flex:none;font-size:14px}
.fx-alert b{color:var(--ink)}
.fx-alert .ago{margin-left:auto;flex:none;font-size:11px;color:var(--dim);white-space:nowrap}
.fx-alert.hot{border-color:rgba(49,217,160,.4);background:rgba(49,217,160,.07)}

/* a strip of real card art — proof of catalog depth on any page */
.fx-strip{display:flex;gap:10px;overflow:hidden}
.fx-strip img{width:88px;height:123px;object-fit:cover;border-radius:8px;flex:none;
  box-shadow:0 14px 30px -16px rgba(0,0,0,.85),0 0 0 1px rgba(255,255,255,.06)}

@media(max-width:900px){
  .fx{grid-template-columns:1fr;gap:32px}
  .fx-flip .fx-art{order:0}
  .fx-scan img{width:84px;height:117px}
}

.seal-wm{position:relative;overflow:hidden}
.seal-wm::after{content:"星";position:absolute;left:-6%;bottom:-26%;z-index:0;pointer-events:none;user-select:none;font-family:var(--mincho);font-weight:700;line-height:.8;font-size:min(50vw,500px);color:transparent;-webkit-text-stroke:2px rgba(49,217,160,.09);text-shadow:0 0 90px rgba(49,217,160,.09)}
.seal-wm>.wrap{position:relative;z-index:1}

/* ── motion ───────────────────────────────────────────────────── */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}*{scroll-behavior:auto}}

/* ── misc ─────────────────────────────────────────────────────── */
.center{text-align:center}
.mt8{margin-top:8px}.mt16{margin-top:16px}.mt24{margin-top:24px}.mt40{margin-top:40px}
.pillrow{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.mono{font-variant-numeric:tabular-nums}

/* ── footer newsletter: a designed band, one ask per page, never competing
   with the page's primary "Start free" CTA (two equal CTAs = neither wins) ── */
.foot-news{display:flex;align-items:center;justify-content:space-between;gap:26px;flex-wrap:wrap;
  background:radial-gradient(680px 180px at 12% 0%,rgba(49,217,160,.09),transparent 70%),rgba(255,255,255,.018);
  border:1px solid var(--line);border-radius:16px;padding:22px 24px;margin-bottom:34px}
.foot-news .fn-copy{min-width:250px;display:flex;align-items:flex-start;gap:12px}
.foot-news .fn-seal{flex:none;width:34px;height:34px;border-radius:10px;display:grid;place-items:center;
  background:rgba(49,217,160,.1);border:1px solid rgba(49,217,160,.24);color:var(--a600);
  font-family:var(--mincho);font-size:17px;font-weight:700;line-height:1}
.foot-news .fn-t{font-size:16px;color:var(--ink);font-weight:700;letter-spacing:-.01em}
.foot-news .fn-s{font-size:13.5px;color:var(--mut);margin-top:3px;max-width:44ch;line-height:1.5}
/* input + button joined into one pill — reads as a designed control, not two boxes */
.foot-news form{display:flex;align-items:stretch;margin:0;background:var(--void);
  border:1px solid var(--line2);border-radius:11px;overflow:hidden;transition:border-color .15s,box-shadow .15s}
.foot-news form:focus-within{border-color:var(--a600);box-shadow:0 0 0 3px rgba(49,217,160,.14)}
.foot-news input{background:transparent;border:0;color:var(--ink);padding:12px 15px;font-size:16px;
  font-family:inherit;min-width:238px;outline:none}
.foot-news input::placeholder{color:var(--dim)}
.foot-news button{background:rgba(49,217,160,.12);border:0;border-left:1px solid var(--line2);
  color:var(--a600);padding:12px 20px;font-weight:700;font-size:14.5px;font-family:inherit;
  cursor:pointer;transition:.15s;white-space:nowrap}
.foot-news button:hover{background:rgba(49,217,160,.2);color:var(--a-light)}
.foot-news button:disabled{opacity:.55;cursor:default}
.foot-news .fn-msg{font-size:14.5px;font-weight:600;color:var(--a600);padding:12px 4px}
.foot-news .fn-msg.err{color:var(--neg)}
@media(max-width:760px){
  .foot-news{flex-direction:column;align-items:stretch;gap:16px;padding:20px}
  .foot-news form{width:100%}
  .foot-news input{min-width:0;flex:1}
}
/* ── cookie / privacy notice ──────────────────────────────────────
   Injected by /site.js only when it hasn't been acknowledged. It is a
   NOTICE, not a consent maze: we run essential cookies only, so there
   is one honest action (OK) and no fake "reject" that does nothing.
   site.js also sets body padding-bottom to this bar's height while it
   is on screen, so it can never sit on top of a CTA or footer link —
   the phone layout below is a stacked block, not an overlay. */
.consent{
  position:fixed;left:0;right:0;bottom:0;z-index:70;
  display:flex;align-items:center;gap:18px;flex-wrap:wrap;
  padding:14px 24px calc(14px + env(safe-area-inset-bottom,0px));
  background:rgba(18,18,20,.97);backdrop-filter:blur(12px);
  border-top:1px solid var(--a-tintline);
  box-shadow:0 -18px 40px -30px rgba(0,0,0,.9);
}
.consent-copy{flex:1 1 420px;margin:0;font-size:13.5px;line-height:1.55;color:var(--ink2)}
.consent-copy strong{color:var(--ink)}
.consent-copy a{text-decoration:underline}
.consent-ok{
  flex:0 0 auto;padding:9px 26px;border-radius:var(--r-sm);cursor:pointer;
  font:700 14.5px/1 var(--sans);color:var(--a-ink);
  background:linear-gradient(180deg,#3ee3ad,#20c088);
  border:1px solid rgba(16,120,90,.4);transition:.15s;
}
.consent-ok:hover{filter:brightness(1.05)}
.consent-ok:focus-visible{outline:2px solid var(--a-light);outline-offset:2px}
@media(max-width:640px){
  .consent{padding:13px 18px calc(13px + env(safe-area-inset-bottom,0px));gap:11px}
  .consent-copy{flex:1 1 100%;font-size:13px}
  .consent-ok{width:100%;padding:11px 20px}
}
