/* Workino — marketing site design system.
   Written with logical properties throughout so the Hebrew (RTL) and English (LTR)
   trees share one stylesheet. */

/* ---------- tokens ---------- */
:root {
  color-scheme: light;

  /* Brand ramp anchored on the logo blue, oklch(0.587 0.223 258.6) = #0073FD */
  --brand-50: oklch(0.97 0.02 258.6);
  --brand-100: oklch(0.93 0.04 258.6);
  --brand-200: oklch(0.87 0.08 258.6);
  --brand-400: oklch(0.68 0.16 258.6);
  --brand-500: oklch(0.6 0.215 258.6);
  --brand-600: oklch(0.53 0.215 258.6);
  --brand-700: oklch(0.46 0.19 258.6);
  --brand-900: oklch(0.32 0.11 258.6);

  --ok-500: oklch(0.68 0.15 162);
  --ok-600: oklch(0.58 0.13 162);
  --warn-500: oklch(0.77 0.15 75);
  --warn-700: oklch(0.55 0.13 75);

  --bg: #fff;
  --bg-soft: #f6f8fc;
  --bg-sunk: #eef2f9;
  --surface: #fff;
  --surface-2: #fbfcfe;

  --ink: #0b1220;
  --ink-2: #3f4b60;
  --ink-3: #6b7890;
  --ink-inv: #f2f6fd;

  --line: #e3e8f1;
  --line-soft: #edf1f7;

  --shadow-sm: 0 1px 2px rgb(11 18 32 / 0.05), 0 1px 3px rgb(11 18 32 / 0.04);
  --shadow-md: 0 4px 12px -2px rgb(11 18 32 / 0.07), 0 2px 6px -2px rgb(11 18 32 / 0.05);
  --shadow-lg: 0 24px 48px -12px rgb(11 18 32 / 0.16), 0 8px 20px -8px rgb(11 18 32 / 0.08);
  --shadow-xl: 0 40px 80px -24px rgb(11 18 32 / 0.26), 0 12px 28px -12px rgb(11 18 32 / 0.1);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;

  --wrap: 1140px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 7.5rem);

  --font-he: 'Assistant', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-en: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font: var(--font-en);
}

html[lang='he'] { --font: var(--font-he); }

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #080d17;
    --bg-soft: #0c1424;
    --bg-sunk: #101a2c;
    --surface: #0f1829;
    --surface-2: #121d31;

    --ink: #e8eefb;
    --ink-2: #a7b4cb;
    --ink-3: #7d8aa3;

    --line: #1e2a41;
    --line-soft: #182337;

    --brand-50: oklch(0.28 0.06 258.6);
    --brand-100: oklch(0.33 0.08 258.6);
    --brand-200: oklch(0.4 0.11 258.6);

    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.4);
    --shadow-md: 0 4px 14px -2px rgb(0 0 0 / 0.5);
    --shadow-lg: 0 24px 48px -12px rgb(0 0 0 / 0.6);
    --shadow-xl: 0 40px 80px -24px rgb(0 0 0 / 0.7);
  }
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { line-height: 1.18; margin: 0; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 1.3rem + 3.9vw, 3.9rem); font-weight: 800; letter-spacing: -0.033em; }
h2 { font-size: clamp(1.7rem, 1.15rem + 2.2vw, 2.6rem); font-weight: 700; letter-spacing: -0.028em; }
h3 { font-size: 1.16rem; font-weight: 600; }
p { margin: 0; }
ul, ol { margin: 0; padding-inline-start: 1.35em; }

a { color: var(--brand-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-700); }
@media (prefers-color-scheme: dark) {
  a { color: var(--brand-400); }
  a:hover { color: var(--brand-200); }
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
  background: var(--bg-sunk);
  padding: 0.12em 0.4em;
  border-radius: 5px;
}

:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip {
  position: absolute; inset-inline-start: -9999px; top: 0; z-index: 99;
  background: var(--brand-600); color: #fff; padding: 0.7rem 1.1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip:focus { inset-inline-start: 0; color: #fff; }

/* ---------- brand ---------- */
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo, .brand-logo img { display: block; }
/* The lockup is a fixed-aspect image: height drives it and width follows. */
.brand-logo img { height: 36px; width: auto; }
.site-footer .brand-logo img { height: 38px; }
@media (max-width: 420px) { .brand-logo img { height: 30px; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-block-end: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.site-header.is-stuck { border-block-end-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 1.25rem; height: 68px; }
.main-nav { display: flex; gap: 0.35rem; margin-inline-start: 1.5rem; margin-inline-end: auto; }
.main-nav a {
  color: var(--ink-2); text-decoration: none; font-size: 0.97rem; font-weight: 500;
  padding: 0.45rem 0.7rem; border-radius: var(--radius-sm); transition: color 0.15s, background 0.15s;
}
.main-nav a:hover { color: var(--ink); background: var(--bg-soft); }
.main-nav a[aria-current='page'] { color: var(--brand-600); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.lang-switch {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink-2); text-decoration: none;
  padding: 0.4rem 0.6rem; border-radius: var(--radius-sm); border: 1px solid var(--line);
  transition: border-color 0.15s, color 0.15s;
}
.lang-switch:hover { color: var(--ink); border-color: var(--ink-3); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 4.5px;
  width: 40px; height: 40px; padding: 0 9px;
  background: none; border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav { border-block-start: 1px solid var(--line); background: var(--bg); padding-block: 0.75rem 1.1rem; }
.mobile-nav .wrap { display: flex; flex-direction: column; gap: 0.15rem; }
.mobile-nav a { color: var(--ink); text-decoration: none; padding: 0.7rem 0.2rem; font-weight: 500; }
.mobile-nav .btn { margin-block-start: 0.6rem; justify-content: center; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-actions .console-link { display: none; }
  .nav-toggle { display: flex; }
  .header-actions { margin-inline-start: auto; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.72rem 1.35rem; border-radius: 999px;
  font-size: 1rem; font-weight: 600; font-family: inherit;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(175deg, var(--brand-500), var(--brand-700));
  color: #fff; box-shadow: 0 6px 18px -6px oklch(0.53 0.2 258.6 / 0.65);
}
.btn-primary:hover { color: #fff; box-shadow: 0 10px 26px -8px oklch(0.53 0.2 258.6 / 0.75); }
.btn-outline { border-color: var(--line); color: var(--ink); background: var(--surface); box-shadow: var(--shadow-sm); }
.btn-outline:hover { color: var(--ink); border-color: var(--ink-3); }
.btn-ghost { color: var(--ink-2); padding-inline: 0.85rem; }
.btn-ghost:hover { color: var(--ink); background: var(--bg-soft); }
.btn-lg { padding: 0.9rem 1.7rem; font-size: 1.06rem; }

/* ---------- sections ---------- */
.section { padding-block: var(--section-y); }
.section-soft { background: var(--bg-soft); border-block: 1px solid var(--line-soft); }
.section-head { max-width: 42rem; margin-block-end: clamp(2.25rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-2); font-size: 1.08rem; margin-block-start: 0.9rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.79rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--brand-600); margin-block-end: 0.85rem;
}
.eyebrow::before { content: ''; width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
.section-head.center .eyebrow { justify-content: center; }
@media (prefers-color-scheme: dark) { .eyebrow { color: var(--brand-400); } }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 6vw, 5.5rem) clamp(4rem, 8vw, 7rem); }
.hero::before {
  content: ''; position: absolute; z-index: -1;
  inset-block-start: -38%; inset-inline-end: -12%;
  width: min(62rem, 108%); aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, oklch(0.6 0.19 258.6 / 0.17), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; z-index: -1; inset-block-end: -30%; inset-inline-start: -18%;
  width: min(44rem, 90%); aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, oklch(0.68 0.15 162 / 0.1), transparent 62%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.hero-copy h1 { margin-block-end: 1.15rem; }
.hero-lede { font-size: clamp(1.08rem, 1rem + 0.35vw, 1.28rem); color: var(--ink-2); max-width: 34rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-block-start: 2rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-block-start: 2.1rem; }
.store-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 1rem 0.55rem 0.85rem; border-radius: 12px;
  border: 1px solid var(--line); background: var(--surface);
  color: var(--ink-2); text-decoration: none; font-size: 0.85rem; line-height: 1.25;
  box-shadow: var(--shadow-sm);
}
.store-badge svg { width: 21px; height: 21px; flex: none; color: var(--ink); }
.store-badge b { display: block; color: var(--ink); font-size: 0.95rem; font-weight: 600; }
.store-badge.soon { opacity: 0.72; }
.store-badge.soon .tag {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-600); background: var(--brand-50); padding: 0.12rem 0.42rem; border-radius: 5px;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: start; }
  .hero-art { margin-block-start: 1rem; }
  .phone { width: min(270px, 68vw); }
}
@media (max-width: 420px) {
  .phone { width: min(248px, 74vw); border-radius: 36px; padding: 9px; }
  .phone-screen { border-radius: 28px; }
}

/* ---------- phone mockup ---------- */
.hero-art { position: relative; display: grid; place-items: center; }
.phone {
  position: relative; width: min(298px, 82vw); aspect-ratio: 9 / 18.6;
  background: linear-gradient(160deg, #1c2536, #0a0f1b);
  border-radius: 42px; padding: 11px;
  box-shadow: var(--shadow-xl), 0 0 0 1.5px rgb(255 255 255 / 0.07) inset;
}
.phone-screen {
  position: relative; height: 100%; border-radius: 32px; overflow: hidden;
  background: var(--surface); display: flex; flex-direction: column;
  padding: 1.35rem 1.05rem 1.1rem; gap: 0.85rem;
}
.phone-notch {
  position: absolute; inset-block-start: 9px; inset-inline-start: 50%; transform: translateX(-50%);
  width: 78px; height: 20px; border-radius: 12px; background: #0a0f1b; z-index: 3;
}
html[dir='rtl'] .phone-notch { transform: translateX(50%); }

.ph-top { display: flex; align-items: center; justify-content: space-between; margin-block-start: 0.7rem; }
.ph-hello { font-size: 0.95rem; font-weight: 700; }
.ph-date { font-size: 0.72rem; color: var(--ink-3); }
.state-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.7rem; font-weight: 700; padding: 0.24rem 0.6rem; border-radius: 999px;
  background: color-mix(in oklab, var(--ok-500) 16%, transparent); color: var(--ok-600);
}
.state-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.ph-timer { text-align: center; padding-block: 0.5rem 0.2rem; }
.ph-timer .t {
  font-size: 2.55rem; font-weight: 700; letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.ph-timer .l { font-size: 0.72rem; color: var(--ink-3); margin-block-start: 0.3rem; }

.ph-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.ph-stat { background: var(--bg-soft); border-radius: 11px; padding: 0.55rem 0.65rem; }
.ph-stat .k { font-size: 0.65rem; color: var(--ink-3); }
.ph-stat .v { font-size: 0.95rem; font-weight: 700; font-variant-numeric: tabular-nums; }

.ph-geo {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; color: var(--ok-600); background: color-mix(in oklab, var(--ok-500) 11%, transparent);
  padding: 0.45rem 0.6rem; border-radius: 10px;
}
.ph-geo svg { width: 13px; height: 13px; flex: none; }

.ph-action {
  margin-block-start: auto;
  display: grid; place-items: center; gap: 0.15rem;
  background: linear-gradient(175deg, var(--brand-500), var(--brand-700));
  color: #fff; border-radius: 16px; padding: 0.9rem; font-weight: 700; font-size: 1rem;
  box-shadow: 0 8px 20px -8px oklch(0.53 0.2 258.6 / 0.8);
}
.ph-tabs { display: flex; justify-content: space-around; padding-block-start: 0.55rem; border-block-start: 1px solid var(--line-soft); }
.ph-tab { width: 20px; height: 3px; border-radius: 2px; background: var(--line); }
.ph-tab.on { background: var(--brand-600); }

/* floating cards around the phone */
.float-card {
  position: absolute; z-index: 2;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 0.7rem 0.85rem;
  font-size: 0.8rem; line-height: 1.4;
  animation: float 7s ease-in-out infinite;
}
.float-card .h { font-weight: 700; font-size: 0.82rem; display: flex; align-items: center; gap: 0.4rem; }
.float-card .s { color: var(--ink-3); font-size: 0.73rem; }
/* The cards overlap the device frame, not the screen content behind them. */
.float-a { inset-block-start: 5%; inset-inline-start: -9%; max-width: 62%; }
.float-b { inset-block-end: 9%; inset-inline-end: -9%; max-width: 62%; animation-delay: -3.5s; }
/*
 * Between the hero going single-column and the art column being wide enough to
 * hold a card beside the phone, there is nowhere for these to sit that is not on
 * top of the mock screen. They are decoration, so below that width they go.
 */
@media (max-width: 1180px) {
  .float-card { display: none; }
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.dot-ok { width: 7px; height: 7px; border-radius: 50%; background: var(--ok-500); flex: none; }
.dot-warn { width: 7px; height: 7px; border-radius: 50%; background: var(--warn-500); flex: none; }

/* ---------- value strip ---------- */
.strip { border-block: 1px solid var(--line-soft); background: var(--bg-soft); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); }
.strip-item { background: var(--bg-soft); padding: 1.6rem clamp(0.75rem, 2vw, 1.5rem); text-align: center; }
.strip-item .k { font-size: 1.32rem; font-weight: 700; letter-spacing: -0.02em; }
.strip-item .v { font-size: 0.87rem; color: var(--ink-3); margin-block-start: 0.2rem; }
@media (max-width: 760px) { .strip-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2.25rem); counter-reset: step; }
.step { position: relative; padding-block-start: 0.5rem; }
.step-n {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: var(--brand-50); color: var(--brand-600);
  font-weight: 700; font-size: 1.05rem; margin-block-end: 1rem;
}
.step h3 { margin-block-end: 0.45rem; }
.step p { color: var(--ink-2); font-size: 0.99rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 1.75rem; } }

/* ---------- feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: clamp(1rem, 2vw, 1.4rem); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }
.card-icon {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: var(--brand-50); color: var(--brand-600); margin-block-end: 1.05rem;
}
.card-icon svg { width: 21px; height: 21px; }
.card h3 { margin-block-end: 0.45rem; }
.card p { color: var(--ink-2); font-size: 0.97rem; }

/* ---------- split (dashboard) ---------- */
.split { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(2.25rem, 5vw, 4rem); align-items: center; }
.split.flip > :first-child { order: 2; }
.checks { list-style: none; padding: 0; margin-block-start: 1.6rem; display: grid; gap: 0.85rem; }
.checks li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-2); font-size: 1rem; }
.checks svg { width: 19px; height: 19px; flex: none; color: var(--ok-600); margin-block-start: 0.18rem; }
.checks b { color: var(--ink); font-weight: 600; }
@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; }
  .split.flip > :first-child { order: 0; }
}

/* dashboard mockup */
.dash {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.dash-bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.7rem 0.95rem; border-block-end: 1px solid var(--line); background: var(--surface-2); }
.dash-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.dash-bar .title { margin-inline-start: 0.6rem; font-size: 0.78rem; color: var(--ink-3); font-weight: 600; }
.dash-body { padding: 1.15rem; display: grid; gap: 1rem; }
.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.kpi { background: var(--bg-soft); border-radius: 11px; padding: 0.7rem 0.75rem; }
.kpi .k { font-size: 0.68rem; color: var(--ink-3); }
.kpi .v { font-size: 1.28rem; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.kpi.ok .v { color: var(--ok-600); }
.kpi.warn .v { color: var(--warn-700); }

.dash-rows { display: grid; gap: 0.4rem; }
.drow {
  display: grid; grid-template-columns: 1.6fr 1fr 0.9fr auto; gap: 0.6rem; align-items: center;
  padding: 0.6rem 0.7rem; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line-soft);
  font-size: 0.82rem;
}
.drow .who { display: flex; align-items: center; gap: 0.55rem; font-weight: 600; }
.av {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; flex: none;
  font-size: 0.7rem; font-weight: 700; background: var(--brand-50); color: var(--brand-600);
}
.drow .when { color: var(--ink-3); font-variant-numeric: tabular-nums; }
.drow .net { font-variant-numeric: tabular-nums; font-weight: 600; }
.chip {
  font-size: 0.68rem; font-weight: 600; padding: 0.16rem 0.5rem; border-radius: 999px; white-space: nowrap;
}
.chip-ok { background: color-mix(in oklab, var(--ok-500) 15%, transparent); color: var(--ok-600); }
.chip-break { background: color-mix(in oklab, var(--warn-500) 18%, transparent); color: var(--warn-700); }
.chip-out { background: var(--brand-50); color: var(--brand-600); }
@media (max-width: 460px) {
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .drow { grid-template-columns: 1.4fr auto; }
  .drow .when, .drow .net { display: none; }
}

/* ---------- privacy band ---------- */
.privacy-band {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--brand-900), oklch(0.26 0.09 262));
  color: var(--ink-inv);
}
.privacy-band::after {
  content: ''; position: absolute; inset-block-start: -45%; inset-inline-end: -8%;
  width: 40rem; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, oklch(0.6 0.19 258.6 / 0.4), transparent 62%);
}
.privacy-band .wrap { position: relative; z-index: 1; }
.privacy-band h2 { color: #fff; }
.privacy-band .eyebrow { color: var(--brand-200); }
.privacy-band .lede { color: oklch(0.87 0.03 258.6); font-size: 1.1rem; max-width: 40rem; margin-block-start: 1rem; }
.privacy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.15rem; margin-block-start: 2.75rem; }
.privacy-card {
  background: rgb(255 255 255 / 0.06); border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius); padding: 1.35rem 1.25rem; backdrop-filter: blur(6px);
}
.privacy-card h3 { color: #fff; margin-block-end: 0.4rem; font-size: 1.04rem; }
.privacy-card p { color: oklch(0.83 0.03 258.6); font-size: 0.94rem; }
.privacy-band .btn-outline { background: rgb(255 255 255 / 0.1); border-color: rgb(255 255 255 / 0.25); color: #fff; }
.privacy-band .btn-outline:hover { background: rgb(255 255 255 / 0.18); color: #fff; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.7rem; max-width: 52rem; margin-inline: auto; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 1.25rem; transition: border-color 0.18s, box-shadow 0.18s;
}
.faq details[open] { border-color: var(--brand-200); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding-block: 1.1rem;
  font-weight: 600; font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; width: 10px; height: 10px; flex: none;
  border-inline-end: 2px solid var(--ink-3); border-block-end: 2px solid var(--ink-3);
  transform: rotate(45deg); transition: transform 0.2s; margin-block-start: -4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-block-start: 3px; }
.faq .answer { padding-block-end: 1.2rem; color: var(--ink-2); font-size: 0.99rem; }

/* ---------- CTA ---------- */
.cta-box {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: clamp(2rem, 5vw, 3.5rem); text-align: center;
}
.cta-box p { color: var(--ink-2); margin-block-start: 0.9rem; font-size: 1.06rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-block-start: 1.9rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-soft); border-block-start: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; margin-block-start: 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: clamp(1.75rem, 4vw, 3rem); }
.footer-brand p { color: var(--ink-3); font-size: 0.93rem; margin-block-start: 0.9rem; max-width: 24rem; }
.footer-col h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-weight: 700; margin-block-end: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: var(--ink-2); text-decoration: none; font-size: 0.94rem; }
.footer-col a:hover { color: var(--brand-600); text-decoration: underline; }
.footer-legal {
  margin-block-start: clamp(2.25rem, 4vw, 3rem); padding-block-start: 1.6rem; border-block-start: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: end;
}
.footer-legal .entity { color: var(--ink-3); font-size: 0.86rem; line-height: 1.75; }
.footer-legal .entity a { color: var(--ink-2); }
.footer-legal .copyright { color: var(--ink-3); font-size: 0.86rem; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- legal documents ---------- */
.doc { padding-block: clamp(2.75rem, 6vw, 4.5rem) var(--section-y); }
.doc-head { max-width: 46rem; margin-block-end: 2.5rem; }
.doc-head h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); }
.doc-head .updated { color: var(--ink-3); font-size: 0.92rem; margin-block-start: 0.85rem; }
.doc-head .lede { color: var(--ink-2); font-size: 1.08rem; margin-block-start: 1.35rem; }

.doc-layout { display: grid; grid-template-columns: 15.5rem minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.toc { position: sticky; top: 92px; font-size: 0.9rem; }
.toc h2 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-weight: 700; margin-block-end: 0.85rem; }
.toc ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.1rem; counter-reset: toc; }
.toc a {
  display: block; color: var(--ink-2); text-decoration: none; padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm); border-inline-start: 2px solid transparent; line-height: 1.4;
}
.toc a:hover { color: var(--ink); background: var(--bg-soft); }
.toc a.active { color: var(--brand-600); border-inline-start-color: var(--brand-600); background: var(--brand-50); }
@media (max-width: 940px) { .doc-layout { grid-template-columns: 1fr; } .toc { display: none; } }

.doc-body { max-width: 46rem; }
.doc-section { scroll-margin-top: 92px; padding-block-end: 2.25rem; }
.doc-section h2 {
  font-size: 1.32rem; font-weight: 700; letter-spacing: -0.02em;
  margin-block-end: 0.9rem; padding-block-end: 0.55rem; border-block-end: 1px solid var(--line-soft);
}
.doc-section > * + * { margin-block-start: 0.95rem; }
.doc-section p, .doc-section li { color: var(--ink-2); }
.doc-section ul, .doc-section ol { display: grid; gap: 0.5rem; }
.doc-section li::marker { color: var(--ink-3); }

.callout {
  background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--radius);
  padding: 1.1rem 1.25rem; font-size: 0.97rem; color: var(--ink-2);
}
.callout strong { color: var(--ink); }
.callout.warn { background: color-mix(in oklab, var(--warn-500) 12%, transparent); border-color: color-mix(in oklab, var(--warn-500) 30%, transparent); }

.doc-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.doc-table th, .doc-table td { text-align: start; padding: 0.7rem 0.85rem; border-block-end: 1px solid var(--line-soft); vertical-align: top; }
.doc-table th { font-weight: 600; color: var(--ink); background: var(--bg-soft); }
.doc-table td { color: var(--ink-2); }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }

.entity-block {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.35rem; font-size: 0.95rem; line-height: 1.85; color: var(--ink-2);
}
.entity-block b { color: var(--ink); }

/* ---------- support / contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1.2rem; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-block-end: 0.5rem; }
.contact-card p { color: var(--ink-2); font-size: 0.96rem; }
.contact-card .big { display: block; margin-block-start: 0.9rem; font-size: 1.06rem; font-weight: 600; }

.steps-list { counter-reset: s; list-style: none; padding: 0; display: grid; gap: 1rem; }
.steps-list li { position: relative; padding-inline-start: 2.6rem; color: var(--ink-2); }
.steps-list li::before {
  counter-increment: s; content: counter(s);
  position: absolute; inset-inline-start: 0; inset-block-start: 0.05rem;
  width: 1.75rem; height: 1.75rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand-50); color: var(--brand-600); font-size: 0.85rem; font-weight: 700;
}
.steps-list b { color: var(--ink); }

/* daily-tasks strip inside the phone mockup */
.ph-tasks { display: grid; gap: 0.3rem; }
.ph-tasks-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.7rem; font-weight: 700; }
.ph-tasks-head .c { color: var(--ink-3); font-weight: 500; }
.ph-task {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.74rem; color: var(--ink-2);
  background: var(--bg-soft); border-radius: 9px; padding: 0.38rem 0.5rem;
}
.ph-task .tick { width: 13px; height: 13px; border-radius: 50%; border: 1.5px solid var(--line); flex: none; }
.ph-task.done { color: var(--ink-3); text-decoration: line-through; }
.ph-task.done .tick {
  border-color: var(--ok-500); background: var(--ok-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E");
  background-size: 9px; background-position: center; background-repeat: no-repeat;
}
