/* CH Pulse — marketing site
   Self-contained styles. Flat, professional design system — no gradients,
   glassmorphism or glow. Light + dark via [data-theme] on <html> (see the
   inline script in template.html's <head> that sets it before first paint). */

/* ---------- self-hosted Manrope (no third-party font CDN call) ---------- */
@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url(/assets/fonts/manrope-latin-wght-normal.woff2) format("woff2-variations");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url(/assets/fonts/manrope-latin-ext-wght-normal.woff2) format("woff2-variations");
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url(/assets/fonts/manrope-vietnamese-wght-normal.woff2) format("woff2-variations");
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* ---------- tokens ---------- */
:root {
  --accent: #FD6802;
  --accent-hover: #E05A00;
  --accent-tint: #FFF1E7;

  --bg: #FAFAFB;
  --surface: #FFFFFF;
  --surface-hover: #F2F3F6;
  --surface-sunken: #EEF0F4;

  --ink: #14161B;
  --ink-soft: #4B5468;
  --muted: #6B7280;

  --border: #E4E7EC;
  --border-strong: #D7DBE3;

  --success: #17915A;

  --focal-bg: #14161B;
  --focal-fg: #FFFFFF;
  --focal-border: rgba(255,255,255,.12);

  --shadow-modal: 0 20px 48px -12px rgba(20,23,31,.28);

  --radius: 12px;
  --radius-sm: 8px;
  --maxw: 1120px;
  --font: "Manrope Variable", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

:root[data-theme="dark"] {
  --accent: #FF7A2E;
  --accent-hover: #FF8F4D;
  --accent-tint: rgba(255,122,46,.16);

  --bg: #101216;
  --surface: #171A20;
  --surface-hover: #1D2129;
  --surface-sunken: #0D0F13;

  --ink: #F3F4F7;
  --ink-soft: #C1C6D0;
  --muted: #8B90A0;

  --border: rgba(255,255,255,.10);
  --border-strong: rgba(255,255,255,.16);

  --success: #34D399;

  --focal-bg: #1E2530;
  --focal-fg: #FFFFFF;
  --focal-border: var(--accent);

  --shadow-modal: 0 20px 48px -12px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  transition: background .15s ease, color .15s ease;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ---------- buttons (used by the Windows install modal + privacy page) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; background: none;
  transition: background .14s ease, border-color .14s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--surface-hover); }
.btn-lg { font-size: 16px; padding: 14px 26px; }

/* ---------- pill buttons ---------- */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding: 0 18px; border-radius: 999px;
  font: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
  border: 1px solid transparent; text-decoration: none; white-space: nowrap;
  transition: background .14s ease, border-color .14s ease, color .14s ease;
}
.lp-btn:hover { text-decoration: none; }
.lp-btn svg { width: 16px; height: 16px; }
.lp-btn--primary { background: var(--accent); color: #fff; }
.lp-btn--primary:hover { background: var(--accent-hover); }
.lp-btn--secondary { background: var(--surface); color: var(--ink); border-color: var(--border-strong); }
.lp-btn--secondary:hover { background: var(--surface-hover); }
.lp-btn--ghost { background: transparent; color: var(--ink-soft); }
.lp-btn--ghost:hover { background: var(--surface-hover); color: var(--ink); }
.lp-btn--sm { height: 36px; padding: 0 12px; font-size: 13px; }
.lp-btn--lg { height: 50px; padding: 0 24px; font-size: 15px; }

/* ---------- theme toggle ---------- */
.lp-theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px; flex-shrink: 0;
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--ink-soft);
  cursor: pointer; transition: background .14s ease, color .14s ease;
}
.lp-theme-toggle:hover { background: var(--surface-hover); color: var(--ink); }
.lp-theme-toggle svg { width: 17px; height: 17px; }
.lp-theme-toggle .ic-moon { display: none; }
:root[data-theme="dark"] .lp-theme-toggle .ic-sun { display: none; }
:root[data-theme="dark"] .lp-theme-toggle .ic-moon { display: block; }

/* ---------- nav ---------- */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border); transition: box-shadow .2s ease;
}
/* flat nav surface, on a ::before layer so .lp-nav itself is NOT a containing
   block for the fixed mobile drawer (a positioned .lp-nav would make it one
   → the drawer would widen the page) */
.lp-nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--surface);
}
.lp-nav.scrolled { box-shadow: 0 1px 0 rgba(16,22,35,.04); }
.lp-nav__in { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; height: 66px; display: flex; align-items: center; gap: 12px; }
.lp-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.lp-brand:hover { text-decoration: none; }
.lp-brand img { height: 34px; width: auto; display: block; }
.lp-navlinks { display: flex; align-items: center; gap: 2px; margin-left: 8px; margin-right: auto; }
.lp-navlink { padding: 7px 9px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; color: var(--ink-soft); text-decoration: none; white-space: nowrap; transition: background .14s, color .14s; }
.lp-navlink:hover { background: var(--surface-hover); color: var(--ink); text-decoration: none; }
.lp-nav__right { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
/* wrapper is transparent to layout on desktop (links + right act as direct flex children) */
.lp-nav__menu { display: contents; }
.lp-nav__burger {
  display: none; margin-left: auto; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--ink);
  align-items: center; justify-content: center; cursor: pointer;
}
.lp-nav__burger svg { width: 20px; height: 20px; }
.lp-nav__burger .ic-close { display: none; }
/* dim backdrop behind the mobile drawer */
.lp-nav__scrim {
  display: none; position: fixed; inset: 0; z-index: 30;
  background: rgba(10,12,16,.4); opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.lp-nav.open ~ .lp-nav__scrim { opacity: 1; pointer-events: auto; }

/* footer brand mark reuses .lp-brand; privacy page's simple header also uses it */
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--ink); flex-shrink: 0; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { width: 30px; height: 30px; }

@media (max-width: 1180px) {
  .lp-nav__burger { display: inline-flex; position: relative; z-index: 3; }
  .lp-nav__scrim { display: block; }
  /* off-canvas drawer sliding in from the right edge */
  .lp-nav__menu {
    display: flex; position: fixed; top: 0; right: 0; z-index: 1;
    height: 100vh; height: 100dvh; width: min(340px, 86vw);
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); border-left: 1px solid var(--border);
    padding: 78px 14px 22px; overflow-y: auto;
    transform: translateX(100%); transition: transform .25s ease;
  }
  .lp-nav.open .lp-nav__menu { transform: translateX(0); }

  .lp-navlinks { flex-direction: column; align-items: stretch; gap: 2px; margin: 0; }
  .lp-navlink { padding: 13px 14px; font-size: 15px; font-weight: 600; border-radius: var(--radius-sm); color: var(--ink); }
  .lp-navlink:hover, .lp-navlink:active { background: var(--accent-tint); color: var(--accent); }

  /* Scoped to .lp-nav__menu (the collapsible drawer) so the privacy page's
     standalone .lp-nav__right — brand + theme toggle + "Back to site", no
     drawer at all — keeps its normal horizontal row at every width. */
  .lp-nav__menu .lp-nav__right {
    flex-direction: column; align-items: stretch; gap: 10px;
    margin: 12px 6px 0; padding-top: 16px; border-top: 1px solid var(--border);
  }
  .lp-nav__menu .lp-nav__right .lp-theme-toggle { align-self: flex-start; }
  .lp-nav__menu .lp-nav__right .lp-btn { width: 100%; height: 48px; font-size: 15px; }
  /* language selector expands inline inside the drawer (absolute dropdown would
     be clipped by the drawer's overflow) — kept for a future re-enable */
  .lp-nav__menu .lp-nav__right .lang-switcher {
    align-self: stretch; flex-wrap: wrap; height: auto; min-height: 46px;
    justify-content: flex-start; gap: 6px 8px; padding: 11px 14px; margin-bottom: 2px;
    border-radius: 14px;
  }
  .lp-nav__menu .lp-nav__right .lang-caret { margin-left: auto; }
  .lp-nav__menu .lp-nav__right .lang-menu {
    position: static; flex-basis: 100%; width: 100%; min-width: 0;
    margin: 6px 0 0; padding: 8px 0 0; background: transparent;
    border: none; border-top: 1px solid var(--border); border-radius: 0; box-shadow: none;
  }
  .lp-nav__menu .lp-nav__right .lang-opt { padding: 11px 10px; font-size: 14px; }

  .lp-nav.open .lp-nav__burger .ic-menu { display: none; }
  .lp-nav.open .lp-nav__burger .ic-close { display: inline; }
}
@media (prefers-reduced-motion: reduce) { .lp-nav__menu, .lp-nav__scrim { transition: none; } }
@media (max-width: 600px) {
  .lp-nav__in { gap: 10px; padding: 0 14px; }
  .lp-brand img { height: 28px; }
}

/* ---------- hero ---------- */
.lp-hero-band { position: relative; }
.lp-hero { position: relative; padding: 64px 0 40px; }
.lp-hero__grid { display: block; max-width: 720px; margin: 0 auto; text-align: center; }
.lp-reveal { min-width: 0; }
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent);
  background: var(--accent-tint); border: 1px solid var(--border); padding: 5px 14px; border-radius: 999px;
  margin-bottom: 24px;
}
.lp-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }
.lp-hero__title { font-size: 44px; line-height: 1.12; letter-spacing: -.02em; margin: 0 0 20px; font-weight: 700; color: var(--ink); }
.grad { color: var(--accent); }
.lp-hero__lede { font-size: 18px; line-height: 1.6; color: var(--ink-soft); margin: 0 auto 20px; max-width: 560px; }
.lp-hero__ctas { display: flex; gap: 12px; flex-wrap: nowrap; justify-content: center; }
@media (max-width: 440px) {
  .lp-hero__ctas { flex-wrap: wrap; }
  .lp-hero__ctas .lp-btn { flex: 1 1 100%; }
}
.lp-hero__sub-ctas { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 10px; justify-content: center; }
.lp-hero__link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--accent); }
.lp-hero__link:hover { color: var(--accent-hover); text-decoration: none; }
.lp-hero__link svg { width: 16px; height: 16px; }
.lp-hero__note { margin-top: 24px; font-size: 13px; color: var(--muted); }

@media (max-width: 920px) {
  .lp-hero__title { font-size: 36px; }
}

/* ---------- stat strip ---------- */
.lp-section--tight { padding: 56px 0 44px; }
.lp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lp-stat { padding: 26px 24px; text-align: center; }
.lp-stat__v { font-size: 34px; font-weight: 700; letter-spacing: -.02em; line-height: 1; color: var(--accent); }
.lp-stat__l { margin-top: 10px; font-size: 14px; color: var(--ink-soft); }
@media (max-width: 640px) { .lp-stats { grid-template-columns: 1fr; } }

/* ---------- sections + cards ---------- */
.lp-section { padding: 84px 0; }
.lp-head-center { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; }
.lp-h2 { font-size: 32px; line-height: 1.2; letter-spacing: -.015em; font-weight: 700; color: var(--ink); margin: 0 0 12px; text-wrap: balance; }
#privacy .lp-h2 { font-size: 31px; max-width: 520px; margin-left: auto; margin-right: auto; }
.lp-lead { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

.lp-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.lp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-card--hover { transition: border-color .14s ease, background .14s ease; }
.lp-card--hover:hover { border-color: var(--border-strong); background: var(--surface-hover); }

.lp-ic { width: 44px; height: 44px; border-radius: var(--radius-sm); display: grid; place-items: center; margin-bottom: 16px; background: var(--surface-sunken); color: var(--accent); }
.lp-ic svg { width: 21px; height: 21px; }
.lp-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-feat-grid .lp-card { padding: 18px 20px; }
.lp-feat-grid .lp-ic { width: 38px; height: 38px; margin-bottom: 12px; }
.lp-feat-grid .lp-ic svg { width: 19px; height: 19px; }
.lp-feat-grid .lp-card__d { font-size: 14px; }
@media (max-width: 860px) { .lp-feat-grid { grid-template-columns: 1fr; } }
.lp-card__t { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.lp-card__d { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.lp-persona__tag { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 600; color: var(--accent); background: var(--accent-tint); border: 1px solid var(--border); padding: 4px 11px; border-radius: 999px; }
.lp-step__num { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; margin-bottom: 14px; }
#how .lp-grid-3 .lp-card { padding-left: 16px; padding-right: 16px; }
.lp-card__d a { color: var(--accent); font-weight: 600; }
.lp-card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--accent); }
.lp-card__link:hover { color: var(--accent-hover); text-decoration: none; }
.lp-card__link svg { width: 16px; height: 16px; }
@media (max-width: 860px) { .lp-grid-3 { grid-template-columns: 1fr; } }
.lp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.lp-card--row { display: flex; gap: 16px; align-items: flex-start; }
.lp-card--row .lp-ic { margin-bottom: 0; flex: 0 0 auto; }
#privacy .lp-card--row { padding-top: 16px; padding-bottom: 16px; }
@media (max-width: 760px) { .lp-grid-2 { grid-template-columns: 1fr; } }

/* ---------- pricing ---------- */
.lp-price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 760px; margin: 0 auto; }
@media (max-width: 760px) { .lp-price-grid { grid-template-columns: 1fr; } }
.lp-price { padding: 28px; position: relative; display: flex; flex-direction: column; }
.lp-price--focal { background: var(--focal-bg); color: var(--focal-fg); border-color: var(--focal-border); }
.lp-price__name { font-size: 15px; font-weight: 700; color: var(--ink); }
.lp-price--focal .lp-price__name { color: var(--focal-fg); }
.lp-price__amt { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 4px; }
.lp-price__num { font-size: 42px; font-weight: 700; letter-spacing: -.02em; }
.lp-price__num--talk { font-size: 28px; line-height: 1.3; }
.lp-price__per { font-size: 13px; color: var(--muted); font-weight: 600; }
.lp-price--focal .lp-price__per { color: rgba(255,255,255,.6); }
.lp-price__d { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 18px; }
.lp-price--focal .lp-price__d { color: rgba(255,255,255,.7); }
.lp-price__list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 11px; }
.lp-price__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }
.lp-price--focal .lp-price__list li { color: rgba(255,255,255,.85); }
.lp-price__list svg { width: 17px; height: 17px; color: var(--success); flex: none; margin-top: 2px; }
.lp-price--focal .lp-price__list svg { color: var(--success); }
.lp-price__badge { position: absolute; top: 18px; right: 18px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 999px; }
.lp-price__ctas { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.lp-price__ctas .lp-btn { width: 100%; justify-content: center; }
.lp-price--focal .lp-btn--secondary { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.lp-price--focal .lp-btn--secondary:hover { background: rgba(255,255,255,.2); }
.lp-pledge { max-width: 720px; margin: 24px auto 0; text-align: center; font-size: 14px; line-height: 1.55; color: var(--ink-soft);
  background: var(--accent-tint); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 18px; }
.lp-pledge strong { color: var(--accent); }

/* ---------- final cta ---------- */
.lp-finalcta { background: var(--focal-bg); border-radius: var(--radius); padding: 56px 40px; text-align: center; color: var(--focal-fg); border: 1px solid var(--focal-border); }
.lp-finalcta h2 { font-size: clamp(24px, 3.2vw, 32px); font-weight: 700; letter-spacing: -.02em; margin: 0 0 10px; }
.lp-finalcta p { font-size: 16px; color: rgba(255,255,255,.72); margin: 0 auto 26px; max-width: 52ch; line-height: 1.6; }
.lp-finalcta__ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.lp-finalcta .lp-btn--ghost { color: #fff; }
.lp-finalcta .lp-btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.lp-finalcta .lp-btn svg { width: 18px; height: 18px; }

/* ---------- footer ---------- */
.lp-footer { border-top: 1px solid var(--border); padding: 48px 0 36px; margin-top: 20px; }
.lp-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px; }
@media (max-width: 760px) { .lp-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .lp-footer__grid { grid-template-columns: 1fr; } }
.lp-footer__brand .lp-brand { margin-bottom: 4px; }
.lp-footer__brand .lp-brand img { height: 40px; }
.lp-footer__tag { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; max-width: 30ch; margin: 14px 0 0; }
.lp-footer__col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 12px; }
.lp-footer__col a { display: block; font-size: 13.5px; color: var(--ink-soft); text-decoration: none; padding: 5px 0; }
.lp-footer__col a:hover { color: var(--accent); text-decoration: none; }
.lp-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 36px; padding-top: 22px;
  border-top: 1px solid var(--border); font-size: 12.5px; color: var(--muted); flex-wrap: wrap; }

/* ---------- windows install notice (SmartScreen) ---------- */
.winmodal { position: fixed; inset: 0; background: rgba(8,12,20,.6); display: none; align-items: center; justify-content: center; padding: 24px; z-index: 90; }
.winmodal.open { display: flex; }
.winmodal-card { position: relative; background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-modal); max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 30px 30px 24px; }
.winmodal-x { position: absolute; top: 12px; right: 14px; background: none; border: 0; font-size: 26px; line-height: 1; color: var(--muted); cursor: pointer; padding: 4px 8px; border-radius: var(--radius-sm); }
.winmodal-x:hover { background: var(--surface-hover); color: var(--ink); }
.winmodal-title { margin: 0 0 10px; font-size: 20px; color: var(--ink); }
.winmodal-lede { margin: 0 0 18px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }

/* faithful mock of the Windows SmartScreen dialog — deliberately fixed-light,
   matching the real OS dialog's own chrome regardless of site theme */
.ss-dialog { background: #f2f2f2; border: 1px solid #d9d9d9; border-radius: 6px; padding: 20px 22px; color: #1a1a1a; font-size: 13px; line-height: 1.5; }
.ss-title { font-size: 18px; font-weight: 600; color: #000; margin-bottom: 8px; }
.ss-body { margin: 0 0 12px; color: #303030; }
.ss-meta { margin: 0 0 4px; color: #303030; }
.ss-meta div { margin-bottom: 2px; }
.ss-moreinfo { display: inline-block; margin-bottom: 16px; color: #0066cc; text-decoration: underline; text-underline-offset: 2px; }
.ss-actions { display: flex; gap: 10px; justify-content: flex-end; }
.ss-btn { display: inline-block; min-width: 96px; text-align: center; padding: 6px 14px; background: #e1e1e1; border: 1px solid #adadad; border-radius: 3px; color: #1a1a1a; }
.ss-run { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-tint); font-weight: 600; }

.winmodal-steps { list-style: none; margin: 20px 0 22px; padding: 0; display: grid; gap: 12px; }
.winmodal-steps li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.winmodal-steps .step-badge { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.winmodal-steps strong { color: var(--ink); }
.winmodal-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ---------- reveal ----------
   Visible by default (no-JS, crawlers, SEO). Only hidden+animated once JS
   adds `.anim` to <html>, so content is never stuck invisible. Kept short
   and subtle (opacity only — no slide/translate). */
html.anim .reveal { opacity: 0; transition: opacity .4s ease; }
html.anim .reveal.in { opacity: 1; }
@media (prefers-reduced-motion: reduce) { html.anim .reveal { opacity: 1; transition: none; } }

/* ---- language switcher (i18n) — implementation kept for a future re-enable;
   not emitted into the page while marketing/build.mjs's LOCALE_ROUTES_ENABLED
   is false, so these rules currently have nothing to match. ---- */
.lang-switcher{position:relative;display:inline-flex;align-items:center;gap:6px;height:36px;padding:0 11px;cursor:pointer;font-size:13px;font-weight:700;color:var(--ink-soft);border-radius:999px;border:1px solid var(--border-strong);background:var(--surface);outline:none;transition:background .14s}
.lang-switcher:hover,.lang-switcher:focus-visible{background:var(--surface-hover)}
.lang-globe{width:15px;height:15px;flex-shrink:0}
.lang-label{white-space:nowrap}
.lang-caret{color:var(--ink-soft);transition:transform .15s ease}
.lang-switcher.open .lang-caret,.lang-switcher:focus-within .lang-caret{transform:rotate(180deg)}
.lang-switcher.open .lang-menu,.lang-switcher:focus-within .lang-menu{display:flex}
.lang-menu{display:none;position:absolute;top:44px;right:0;flex-direction:column;min-width:184px;background:var(--surface);border:1px solid var(--border-strong);border-radius:14px;box-shadow:var(--shadow-modal);padding:6px;z-index:120}
.lang-opt{display:flex;align-items:center;gap:8px;padding:8px 10px;border-radius:var(--radius-sm);color:var(--ink-soft);text-decoration:none;font-size:13px;font-weight:600;white-space:nowrap}
.lang-opt:hover{background:var(--surface-hover);color:var(--ink);text-decoration:none}
.lang-opt .ck{margin-left:auto;width:15px;height:15px;opacity:0}
.lang-opt[aria-current="true"]{color:var(--accent);font-weight:700;background:var(--accent-tint)}
.lang-opt[aria-current="true"] .ck{opacity:1}
@media (max-width:560px){.lang-label{display:none}}

/* ---------- privacy page (hand-maintained; shares this stylesheet) ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 40px 24px 80px; }
.legal .back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 22px; }
.legal h1 { font-size: clamp(28px, 5vw, 38px); line-height: 1.1; margin: 0 0 8px; letter-spacing: -.02em; color: var(--ink); }
.legal .updated { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
.legal h2 { font-size: 19px; margin: 36px 0 10px; letter-spacing: -.01em; color: var(--ink); }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.7; font-size: 15.5px; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal li { margin: 6px 0; }
.legal a { color: var(--accent); }
.legal .lede { font-size: 17px; color: var(--ink); }
.legal .card { border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; background: var(--surface); margin: 18px 0; }
.legal hr { border: none; border-top: 1px solid var(--border); margin: 40px 0 24px; }
