/* ── tokens ─────────────────────────────────────────────── */
  :root {
    --bg: #FBFBFD;
    --bg-2: #F5F5F7;
    --card: #FFFFFF;
    --ink: #1D1D1F;
    --soft: #6E6E73;
    --faint: #86868B;
    --line: #E3E3E8;
    --accent: #0A7C63;
    --accent-ink: #FFFFFF;
    --accent-soft: #E3F2EC;
    --glow-a: #7FD8BD;
    --glow-b: #B9D7FF;
    --amber: #B45309;
    --amber-soft: #FFF6E0;
    --night: #0B0C0F;
    --night-2: #16171B;
    --night-ink: #F5F5F7;
    --night-soft: #A1A1A6;
    --shadow: 0 30px 80px -30px rgba(15, 30, 25, .35), 0 8px 24px -12px rgba(15, 30, 25, .18);
    --accent-2: #3BA7D6; --brand: #0A7C63; --brand-2: #2BC49A; --brand-soft: #E3F2EC; --glint: #4FD1AC;
    --final-a: #129B7B; --final-b: #1F5F9E; --final-base: #0A3B30;
    --radius: 22px;
    --max: 1180px;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --bg: #000000; --bg-2: #101012; --card: #161618; --ink: #F5F5F7; --soft: #A1A1A6; --faint: #86868B;
      --line: #2A2A2E; --accent: #2BC49A; --accent-ink: #04140F; --accent-soft: #0C2A22;
      --glow-a: #0E5C47; --glow-b: #1B3558; --amber: #FBBF24; --amber-soft: #2A1E05;
      --shadow: 0 30px 80px -30px rgba(0,0,0,.8), 0 8px 24px -12px rgba(0,0,0,.6);
    }
  }
  :root[data-theme="dark"] {
    --bg: #000000; --bg-2: #101012; --card: #161618; --ink: #F5F5F7; --soft: #A1A1A6; --faint: #86868B;
    --line: #2A2A2E; --accent: #2BC49A; --accent-ink: #04140F; --accent-soft: #0C2A22;
    --glow-a: #0E5C47; --glow-b: #1B3558; --amber: #FBBF24; --amber-soft: #2A1E05;
    --shadow: 0 30px 80px -30px rgba(0,0,0,.8), 0 8px 24px -12px rgba(0,0,0,.6);
  }
  :root[data-theme="light"] {
    --bg: #FBFBFD; --bg-2: #F5F5F7; --card: #FFFFFF; --ink: #1D1D1F; --soft: #6E6E73; --faint: #86868B;
    --line: #E3E3E8; --accent: #0A7C63; --accent-ink: #FFFFFF; --accent-soft: #E3F2EC;
    --glow-a: #7FD8BD; --glow-b: #B9D7FF; --amber: #B45309; --amber-soft: #FFF6E0;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0; background: var(--bg); color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 17px; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: clip;
  }
  /* height:auto keeps the width/height attributes as a ratio, not a size —
     they reserve space while loading and never stretch the picture. */
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; }
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
  .num { font-variant-numeric: tabular-nums; }
  .display {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 700; letter-spacing: -0.035em; line-height: 1.04; text-wrap: balance; margin: 0;
  }
  .eyebrow { font-size: 14px; font-weight: 600; letter-spacing: .01em; color: var(--accent); margin: 0 0 12px; }
  .lead { font-size: clamp(18px, 2.1vw, 22px); line-height: 1.45; color: var(--soft); margin: 0; max-width: 40ch; text-wrap: pretty; }
  .lead b { color: var(--ink); font-weight: 600; }
  section { position: relative; }
  :focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 8px; }

  /* ── buttons ────────────────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: 8px; font: inherit; font-size: 16px; font-weight: 600;
    padding: 13px 22px; border-radius: 999px; text-decoration: none; cursor: pointer; border: 0;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  }
  .btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 24px -10px color-mix(in srgb, var(--accent) 70%, transparent); }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -10px color-mix(in srgb, var(--accent) 80%, transparent); }
  .btn-ghost { color: var(--accent); background: transparent; padding-left: 6px; padding-right: 6px; }
  .btn-ghost:hover { text-decoration: underline; text-underline-offset: 4px; }
  .btn svg { width: 16px; height: 16px; }

  /* ── nav: glass, like the one on apple.com ──────────────── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in srgb, var(--bg) 72%, transparent);
    backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  }
  .nav > .wrap { display: flex; align-items: center; justify-content: space-between; height: 56px; gap: 18px; }
  .nav .logo { height: 22px; width: auto; }
  :root[data-theme="dark"] .nav .logo, .night .logo-inv { filter: invert(1); }
  @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .nav .logo { filter: invert(1); } }
  .nav > .wrap > ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; font-size: 14px; }
  .nav > .wrap > ul a { text-decoration: none; color: var(--soft); transition: color .15s; }
  .nav > .wrap > ul a:hover { color: var(--ink); }
  .nav .btn { padding: 8px 16px; font-size: 14px; }
  @media (max-width: 760px) { .nav > .wrap > ul .hide-sm { display: none; } }

  /* ── hero ───────────────────────────────────────────────── */
  .hero { padding: clamp(40px, 6vw, 72px) 0 0; text-align: center; overflow: hidden; }
  .hero::before {
    content: ""; position: absolute; inset: -20% -10% auto; height: 900px; z-index: -1; pointer-events: none;
    background:
      radial-gradient(40% 50% at 30% 30%, color-mix(in srgb, var(--glow-a) 55%, transparent), transparent 70%),
      radial-gradient(35% 45% at 72% 22%, color-mix(in srgb, var(--glow-b) 60%, transparent), transparent 70%);
    filter: blur(20px); opacity: .7; animation: drift 18s ease-in-out infinite alternate;
  }
  @keyframes drift { to { transform: translate3d(3%, 4%, 0) scale(1.05); } }
  .hero h1 { font-size: clamp(34px, 5.4vw, 68px); max-width: 18ch; margin: 0 auto 14px; }
  .hero .sub { font-size: clamp(17px, 1.8vw, 20px); color: var(--soft); margin: 0 auto; }
  .platforms { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap;
    font-size: 14px; color: var(--soft); margin-top: -18px; padding-bottom: 8px; }
  .platforms .os { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink);
    border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px 6px 11px; background: var(--card); }
  .platforms svg { width: 18px; height: 18px; }
  @media (max-width: 560px) { .platforms { gap: 10px; } .platforms > span:first-child { flex-basis: 100%; text-align: center; } }
  .hero h1 .grad {
    background: linear-gradient(100deg, var(--accent) 10%, var(--accent-2) 55%, var(--accent) 95%);
    background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: sheen 9s ease-in-out infinite;
  }
  @keyframes sheen { 50% { background-position: 100% 0; } }
  .hero .lead { margin: 0 auto; text-align: center; max-width: 34ch; }
  .hero .ctas { display: flex; gap: 18px; justify-content: center; align-items: center; margin: 24px 0 0; flex-wrap: wrap; }
  .hero .note { font-size: 13px; color: var(--faint); margin-top: 16px; }

  /* The product, rising into place as you scroll — Apple's reveal. */
  .stage { position: relative; margin: clamp(28px, 4vw, 44px) auto 0; max-width: 1080px; perspective: 1800px; padding: 0 12px 60px; }
  .device {
    position: relative; border-radius: 18px; overflow: hidden; background: var(--card);
    box-shadow: var(--shadow), 0 0 0 1px color-mix(in srgb, var(--line) 80%, transparent);
    transform-origin: 50% 100%; transform: rotateX(8deg) scale(.97); transition: transform .9s cubic-bezier(.2,.7,.1,1);
  }
  .device .bar { height: 30px; display: flex; align-items: center; gap: 7px; padding: 0 14px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
  .device .bar i { width: 10px; height: 10px; border-radius: 50%; background: color-mix(in srgb, var(--faint) 45%, transparent); }
  .device .bar span { margin: 0 auto; font-size: 12px; color: var(--faint); background: var(--card); padding: 3px 60px; border-radius: 6px; }
  .device img { width: 100%; }
  .phones { position: absolute; right: -8px; bottom: 56px; display: flex; gap: 14px; }
  .phone {
    width: clamp(92px, 16vw, 188px); aspect-ratio: 1170 / 2532; border-radius: clamp(16px, 2.6vw, 32px); overflow: hidden;
    border: clamp(4px, .7vw, 8px) solid #111; background: #111; box-shadow: var(--shadow);
    transform: translateY(40px); opacity: 0; transition: transform 1s cubic-bezier(.2,.7,.1,1) .15s, opacity 1s ease .15s;
  }
  .phone:nth-child(2) { transition-delay: .3s; }
  .phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
  .stage.in .device { transform: none; }
  .stage.in .phone { transform: none; opacity: 1; }
  @supports (animation-timeline: view()) {
    .device { transition: none; animation: rise linear both; animation-timeline: view(); animation-range: entry 0% cover 45%; }
    @keyframes rise { from { transform: rotateX(9deg) scale(.96); } to { transform: none; } }
  }
  @media (max-width: 640px) { .phones { right: 4px; bottom: 28px; gap: 8px; } }

  /* ── proof ──────────────────────────────────────────────── */
  .proof { padding: clamp(24px, 4vw, 40px) 0 clamp(70px, 9vw, 110px); }
  .proof .claim { text-align: center; font-size: clamp(20px, 2.6vw, 28px); font-weight: 600; letter-spacing: -.02em; max-width: 30ch; margin: 0 auto 40px; text-wrap: balance; }
  .proof .claim span { color: var(--soft); font-weight: 500; }
  .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; }
  .stats div { background: var(--bg); padding: 26px 18px; text-align: center; }
  .stats b { display: block; font-size: clamp(34px, 5vw, 52px); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
  .stats span { display: block; margin-top: 8px; font-size: 14px; color: var(--soft); }
  .stats span { max-width: 26ch; margin-left: auto; margin-right: auto; }
  .insurers ul { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
  .insurers li { font-size: 12.5px; font-weight: 600; color: var(--ink); background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
  @media (max-width: 720px) { .stats { grid-template-columns: 1fr; } }

  /* ── three promises ─────────────────────────────────────── */
  .promises { background: var(--bg-2); padding: clamp(80px, 10vw, 130px) 0; }
  .promises h2 { font-size: clamp(36px, 5.6vw, 64px); max-width: 20ch; margin-bottom: 48px; }
  .trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .trio article { background: var(--card); border-radius: var(--radius); padding: 30px 28px 32px; }
  .trio .k { font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 18px; }
  .trio h3 { font-size: 26px; letter-spacing: -.025em; line-height: 1.15; margin: 0 0 12px; }
  .trio p { margin: 0; color: var(--soft); font-size: 16px; }
  @media (max-width: 860px) { .trio { grid-template-columns: 1fr; } }

  /* mini UIs drawn in the page, not screenshots */
  .trio { grid-template-rows: repeat(4, auto); }
  .trio article { display: grid; grid-row: span 4; grid-template-rows: subgrid; row-gap: 0; }
  .trio .k { align-self: end; }
  @media (max-width: 860px) { .trio { grid-template-rows: none; } .trio article { grid-row: auto; grid-template-rows: auto; } }
  .mini { --ok: #0A7C63; --bad: #C8321E; background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 14px; margin: -8px -6px 26px; font-size: 13px; line-height: 1.35; color: var(--ink); }
  :root[data-theme="dark"] .mini { --ok: #2BC49A; --bad: #FF6B5E; }
  @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .mini { --ok: #2BC49A; --bad: #FF6B5E; } }
  .mini .hd { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
  .mini .ttl { font-weight: 600; font-size: 13.5px; }
  .mini .sub { color: var(--soft); font-size: 12px; }
  .mini .plate { font-size: 11px; padding: 0 5px; border-width: 1.5px; border-radius: 4px; }
  .mini ul { list-style: none; margin: 0; padding: 0; background: var(--card); border: 1px solid var(--line); border-radius: 10px; }
  .mini li { display: flex; align-items: center; gap: 9px; padding: 8px 10px; }
  .mini li + li { border-top: 1px solid var(--line); }
  .mini li .grow { flex: 1; min-width: 0; }
  .mini li .amt { font-variant-numeric: tabular-nums; font-weight: 600; }
  .mini .ic { width: 16px; height: 16px; flex: none; border-radius: 50%; display: grid; place-items: center; color: #fff; }
  .mini .ic svg { width: 10px; height: 10px; }
  .mini .ic.ok { background: var(--ok); } .mini .ic.bad { background: var(--bad); }
  .mini li.fail { color: var(--bad); font-weight: 600; }
  .mini .btn { margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 7px; border-radius: 9px; padding: 8px; font-weight: 600; background: var(--line); color: var(--faint); }
  .mini .btn svg { width: 13px; height: 13px; }
  .mini .tag { font-size: 11px; font-weight: 600; border-radius: 999px; padding: 1px 8px; background: var(--accent-soft); color: var(--accent); white-space: nowrap; }
  .mini .foot { margin-top: 10px; color: var(--soft); font-size: 12px; display: flex; justify-content: space-between; }
  .mini .hands li.off { color: var(--faint); }
  .mini .hands li.off .grow { text-decoration: line-through; text-decoration-color: var(--line); }
  .mini .hands li.on { background: var(--accent-soft); }
  .mini .hands li.on:last-child { border-radius: 0 0 9px 9px; }
  .mini .bill { margin-top: 10px; display: flex; justify-content: space-between; gap: 8px; border-radius: 9px; padding: 8px 10px; font-weight: 600; background: var(--ink); color: var(--card); }
  .mini .bill .amt { font-variant-numeric: tabular-nums; }
  .mini .kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .mini .kpi { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 9px 10px; }
  .mini .kpi b { display: block; font-size: 19px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
  .mini .kpi span { color: var(--soft); font-size: 11.5px; }
  .mini .bars { display: flex; align-items: flex-end; gap: 4px; height: 30px; margin-top: 6px; }
  .mini .bars i { flex: 1; background: var(--accent); opacity: .35; border-radius: 2px; }
  .mini .bars i:last-child { opacity: 1; }
  .mini .mail { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
  .mini .av { width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: var(--card); display: grid; place-items: center; font-weight: 700; font-size: 12px; flex: none; }


  /* promise cards 4–6 */
  .mini .srch { display: flex; align-items: center; gap: 8px; background: var(--card); border: 1.5px solid var(--accent); border-radius: 10px; padding: 8px 10px; margin-bottom: 10px; box-shadow: 0 0 0 4px var(--accent-soft); }
  .mini .srch svg { width: 14px; height: 14px; color: var(--soft); flex: none; }
  .mini .srch > span:nth-child(2) { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-weight: 600; }
  .mini .res { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
  .mini .plates { list-style: none; margin: 10px 0 0; padding: 0 0 0 4px; border: 0; background: none; border-radius: 0; }
  .mini .plates li { padding: 4px 0 4px 16px; position: relative; border: 0; gap: 8px; }
  .mini .plates li::before { content: ""; position: absolute; left: 0; top: 50%; width: 7px; height: 7px; margin-top: -3.5px; border-radius: 50%; background: var(--line); }
  .mini .plates li:first-child::before { background: var(--accent); }
  .mini .plates li:not(:last-child)::after { content: ""; position: absolute; left: 3px; top: calc(50% + 5px); height: 100%; width: 1px; background: var(--line); }
  .mini .plates li.hit .plate { box-shadow: 0 0 0 3px var(--accent-soft); }
  .mini .tag.bad { background: color-mix(in srgb, var(--bad) 14%, transparent); color: var(--bad); }
  .mini .rego li { padding: 7px 10px; }
  .mini .rego .d { font-size: 12px; font-weight: 600; color: var(--bad); font-variant-numeric: tabular-nums; }
  .mini .rego li.later .d { color: var(--soft); font-weight: 500; }
  .mini .rego li.line { padding: 0 10px; height: 22px; gap: 8px; background: color-mix(in srgb, var(--bad) 8%, var(--card)); border-top: 2px solid var(--bad) !important; }
  .mini .rego li.line + li { border-top: 1px solid var(--line); }
  .mini .rego li.line span { color: var(--bad); font-size: 11px; font-weight: 700; letter-spacing: .02em; }

  /* one idea per card, each in its own form */
  .trio .mini { background: none; border: 0; padding: 0; margin: 0 0 26px; min-height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 14px; }
  .v-lock .lk { display: flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 14px; background: var(--bg-2); color: var(--faint); font-weight: 600; font-size: 17px; border: 1px dashed var(--line); }
  .v-lock .lk svg { width: 18px; height: 18px; }
  .v-lock .why { margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--bad); background: color-mix(in srgb, var(--bad) 10%, transparent); padding: 5px 12px; border-radius: 999px; position: relative; }
  .v-lock .why::before { content: ""; position: absolute; left: 50%; top: -14px; height: 14px; border-left: 1.5px dashed var(--bad); }
  .trio .v-time { align-items: stretch; padding: 0 4px; }
  .v-time .car1 { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 14px; }
  .v-time .car1 .plate { font-size: 13px; padding: 0 7px; border-width: 2px; border-radius: 5px; }
  .v-time .car1 small { font-size: 12.5px; color: var(--soft); }
  .v-time .pin { margin-left: 66%; transform: translateX(-50%); width: max-content; text-align: center; font-size: 12.5px; }
  .v-time .pin b { display: block; background: var(--ink); color: var(--card); padding: 4px 10px; border-radius: 8px; }
  .v-time .pin::after { content: ""; display: block; margin: 0 auto; width: 2px; height: 22px; background: var(--ink); }
  .v-time .track { display: flex; height: 34px; border-radius: 10px; overflow: hidden; font-size: 13px; font-weight: 600; }
  .v-time .track span { display: grid; place-items: center; }
  .v-time .a { flex: 44; background: var(--bg-2); color: var(--faint); }
  .v-time .gap { flex: 12; background: repeating-linear-gradient(135deg, transparent 0 5px, var(--line) 5px 6px); }
  .v-time .b { flex: 44; background: var(--accent); color: var(--accent-ink); }
  .v-time .days { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--faint); margin-top: 6px; }
  .v-time .out { margin: 14px auto 0; font-weight: 700; color: var(--accent); }
  .v-zero b { font-size: 120px; line-height: .9; letter-spacing: -.06em; font-weight: 800; color: var(--accent); }
  .v-zero span { font-size: 16px; font-weight: 600; margin-top: 10px; }
  .trio .v-plates { flex-direction: row; gap: 14px; }
  .v-plates div { display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .v-plates .plate { font-size: 21px; padding: 4px 12px; border-width: 2.5px; border-radius: 8px; }
  .v-plates small { font-size: 12px; color: var(--faint); }
  .v-plates i { font-style: normal; font-size: 22px; color: var(--faint); margin-top: -22px; }
  .trio .v-rego ul { list-style: none; margin: 0; padding: 0; width: 100%; max-width: 240px; background: none; border: 0; border-radius: 0; }
  .trio .v-rego li + li { border-top: 0; }
  .trio .v-rego li { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; }
  .trio .v-rego .plate { font-size: 14px; padding: 1px 8px; border-width: 2px; border-radius: 5px; }
  .v-rego .sync { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--accent); background: var(--accent-soft); border-radius: 999px; padding: 3px 10px; margin-bottom: 12px; }
  .v-rego .sync svg { width: 13px; height: 13px; }
  .v-rego em { font-size: 14px !important; font-style: normal; font-weight: 600; font-size: 13px; color: var(--bad); }
  .v-rego li.later { opacity: .55; }
  .v-rego li.later em { color: var(--soft); }
  .trio .v-rego li.line { padding: 0; margin: 6px 0; border-top: 2px solid var(--bad); position: relative; }
  .v-rego li.line span { position: absolute; left: 50%; top: -10px; transform: translateX(-50%); background: var(--bad); color: #fff; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 1px 8px; border-radius: 999px; }
  .v-ext .win { width: 100%; max-width: 300px; border-radius: 12px; border: 1px solid var(--line); background: var(--card); box-shadow: 0 14px 30px -18px rgba(0,0,0,.35); overflow: hidden; }
  .v-ext .bar { display: flex; align-items: center; gap: 5px; padding: 7px 9px; background: var(--bg-2); border-bottom: 1px solid var(--line); font-size: 11.5px; }
  .v-ext .bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
  .v-ext .tab { background: var(--card); border: 1px solid var(--line); border-radius: 6px; padding: 1px 7px; color: var(--soft); margin-left: 3px; }
  .v-ext .ext { margin-left: auto; width: 18px; height: 18px; border-radius: 5px; background: var(--ink); color: var(--card); display: grid; place-items: center; font-weight: 800; font-size: 11px; box-shadow: 0 0 0 3px var(--accent-soft); }
  .v-ext .pop { margin: 10px 10px 12px auto; width: 72%; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font-size: 13px; box-shadow: 0 10px 24px -14px rgba(0,0,0,.35); }
  .v-ext .t { font-weight: 700; margin-bottom: 6px; }
  .v-ext .r { display: flex; justify-content: space-between; padding: 3px 0; color: var(--soft); }
  .v-ext .r b { color: var(--ink); font-variant-numeric: tabular-nums; }
  .v-ext .ok { margin-top: 8px; text-align: center; font-weight: 700; font-size: 12.5px; color: var(--accent-ink); background: var(--accent); border-radius: 7px; padding: 5px; }


  .v-bond { align-items: stretch !important; max-width: 260px; margin-left: auto !important; margin-right: auto !important; width: 100%; font-variant-numeric: tabular-nums; }
  .v-bond .ln { display: flex; justify-content: space-between; padding: 7px 2px; font-size: 15px; color: var(--soft); }
  .v-bond .ln b { color: var(--ink); font-weight: 600; }
  .v-bond .neg b { color: var(--bad); }
  .v-bond .tot { border-top: 2px solid var(--ink); margin-top: 4px; padding-top: 12px; color: var(--ink); font-weight: 600; align-items: baseline; }
  .v-bond .tot b { font-size: 30px; letter-spacing: -.03em; font-weight: 800; color: var(--accent); }
  .trio .v-log { align-items: stretch; }
  .v-log .dev { align-self: center; font-size: 11.5px; font-weight: 600; color: var(--soft); background: var(--bg-2); border-radius: 999px; padding: 3px 10px; margin-bottom: 12px; }
  .v-log ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
  .v-log li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--soft); }
  .v-log li span { flex: 1; min-width: 0; }
  .v-log li b { color: var(--ink); font-weight: 600; }
  .v-log i { width: 28px; height: 28px; border-radius: 50%; color: #fff; font-style: normal; font-size: 11px; font-weight: 700; display: grid; place-items: center; flex: none; }
  .v-log .plate { font-size: 11.5px; padding: 0 6px; border-width: 1.5px; border-radius: 4px; margin-left: 2px; }
  .v-log em { font-style: normal; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; color: var(--accent); background: var(--accent-soft); border-radius: 6px; padding: 2px 6px; }
  .cal { margin-top: auto; padding-top: 10px; }
  .cal .late { font-size: 12.5px; font-weight: 700; color: var(--amber); background: var(--amber-soft); border-radius: 8px; padding: 6px 10px; margin-bottom: 8px; }
  .cal .wk { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .cal .wk span { background: var(--card); border-radius: 8px; padding: 7px 8px; display: flex; flex-direction: column; font-variant-numeric: tabular-nums; min-width: 0; }
  .cal .wk small { font-size: 11px; color: var(--faint); }
  .cal .wk b { font-size: 14px; }
  .cal .wk .nil b { color: var(--faint); font-weight: 400; }
  .cal .wk .blk { outline: 1.5px dashed var(--line); background: transparent; }
  .cal .wk .blk b { color: var(--faint); }
  .cal .wk em { font-style: normal; font-size: 10px; font-weight: 600; color: var(--amber); }


  .trio .v-search { align-items: stretch; justify-content: flex-start; padding-top: 6px; }
  .v-search .q { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); border-radius: 12px; padding: 10px 12px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-weight: 700; font-size: 15px; background: var(--card); }
  .v-search .q svg { width: 15px; height: 15px; color: var(--soft); flex: none; }
  .v-search .car { width: 2px; height: 1.1em; background: var(--accent); animation: blink 1s steps(1) infinite; margin-left: -6px; }
  .v-search .hit { margin-top: 12px; border: 1px solid var(--line); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: opacity .3s, transform .3s; }
  .v-search .hit > .plate { font-size: 22px; padding: 3px 12px; border-width: 2.5px; border-radius: 8px; }
  .v-search .was { font-size: 13px; color: var(--soft); display: flex; align-items: center; gap: 8px; }
  .v-search .plate.sm { font-size: 13px; padding: 0 7px; border-width: 1.5px; border-radius: 5px; }
  .v-search .hit.flash { box-shadow: 0 0 0 3px var(--accent-soft); border-color: var(--accent); }
  .v-search .hit.off { opacity: 0; transform: translateY(6px); }
  .v-search .row { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; border-radius: 8px; transition: background .3s; }
  .v-search .row.on { background: var(--accent-soft); }
  .v-search .row small { font-size: 12px; color: var(--soft); }
  .v-search .row .plate { font-size: 15px; padding: 1px 9px; border-width: 2px; border-radius: 6px; transition: box-shadow .3s; }
  .v-search .row.on .plate { box-shadow: 0 0 0 3px var(--accent); }
  .v-search .same { margin-top: 10px; text-align: center; font-size: 12.5px; font-weight: 600; color: var(--accent); transition: opacity .3s; }
  .v-search .same.off { opacity: 0; }


  .trio .v-imp { align-items: stretch; max-width: 290px; width: 100%; margin-left: auto; margin-right: auto; }
  .v-imp .hd { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
  .v-imp .ttl { font-weight: 700; font-size: 15px; flex: 1; }
  .v-imp .go { position: relative; display: inline-flex; align-items: center; gap: 5px; background: #16A34A; color: #fff; font-weight: 700; font-size: 13px; padding: 6px 12px; border-radius: 8px; }
  .v-imp .go svg:first-child { width: 12px; height: 12px; }
  .v-imp .ptr { position: absolute; width: 18px; height: 18px; right: -7px; bottom: -11px; color: var(--ink); }
  .v-imp .cnt { font-size: 12px; font-weight: 700; color: #fff; background: #16A34A; border-radius: 999px; padding: 2px 8px; }
  .trio .v-imp ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; background: none; border: 0; border-radius: 0; }
  .trio .v-imp li + li { border-top: 0; }
  :root[data-theme="dark"] .v-imp small { color: #4ADE80; }
  @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .v-imp small { color: #4ADE80; } }
  .v-imp li { display: flex; align-items: center; gap: 10px; background: color-mix(in srgb, #16A34A 10%, var(--card)); border-radius: 10px; padding: 9px 12px; }
  .v-imp .ic { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: #16A34A; flex: none; }
  .v-imp .ic svg { width: 11px; height: 11px; }
  .v-imp .lg { height: 26px; width: 48px; object-fit: contain; flex: none; background: #fff; border-radius: 6px; padding: 3px 5px; box-sizing: border-box; }
  .v-imp .grow { flex: 1; font-weight: 600; font-size: 14px; }
  .trio .v-imp small { display: block; font-weight: 500; font-size: 12px; color: #15803D; }

  /* ── rego papers: upload → read → sent ─────────────────── */
  .papers { padding: clamp(90px, 11vw, 150px) 0; }
  .papers h2 { font-size: clamp(34px, 5vw, 58px); max-width: 17ch; margin-bottom: 18px; }
  .flow { margin-top: 56px; display: grid; grid-template-columns: 1fr 1.15fr 1.1fr; gap: 34px; align-items: start; position: relative; }
  .flow { grid-template-rows: auto auto auto; }
  .flow .fstep { position: relative; display: grid; grid-row: span 3; grid-template-rows: subgrid; row-gap: 0; }
  .flow .fstep > :first-child { align-self: center; }
  .flow .fstep:not(:last-child)::after { content: "→"; position: absolute; right: -26px; top: 150px; font-size: 20px; color: var(--faint); }
  .flow .cap { font-size: 13px; font-weight: 600; color: var(--accent); margin: 16px 0 4px; }
  .flow .cap + p { margin: 0; color: var(--soft); font-size: 15px; }
  .paper { background: #FBFAF6; color: #222; border-radius: 6px; padding: 18px 18px 22px; box-shadow: var(--shadow); transform: rotate(-2.2deg); font-size: 11px; border: 1px solid #E6E1D6; position: relative; }
  .paper .org { font-weight: 800; letter-spacing: .08em; font-size: 10px; color: #0B4E8A; }
  .paper h4 { margin: 4px 0 12px; font-size: 14px; letter-spacing: -.01em; }
  .paper dl { display: grid; grid-template-columns: auto 1fr; gap: 5px 12px; margin: 0; }
  .paper dt { color: #777; } .paper dd { margin: 0; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-weight: 600; }
  .paper .rule { height: 6px; background: repeating-linear-gradient(90deg, #E4DFD3 0 60%, transparent 60% 64%); margin-top: 14px; border-radius: 2px; }
  .paper .rule.s { width: 70%; margin-top: 6px; }
  .paper .drop { position: absolute; right: -12px; bottom: -14px; background: var(--ink); color: var(--card); font-size: 11.5px; font-weight: 600; padding: 6px 10px; border-radius: 8px; transform: rotate(2.2deg); box-shadow: var(--shadow); }
  .read { background: var(--card); border-radius: 16px; box-shadow: var(--shadow), 0 0 0 1px var(--line); padding: 14px; font-size: 13px; }
  .read .hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-weight: 600; }
  .read .hd .t { font-size: 11.5px; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 2px 8px; border-radius: 999px; }
  .read dl { display: grid; grid-template-columns: auto 1fr; margin: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
  .read dt, .read dd { padding: 7px 10px; border-top: 1px solid var(--line); margin: 0; }
  .read dt:first-of-type, .read dd:first-of-type { border-top: 0; }
  .read dt { color: var(--soft); background: var(--bg-2); }
  .read dd { font-weight: 600; font-variant-numeric: tabular-nums; display: flex; justify-content: space-between; gap: 8px; }
  .read dd em { font-style: normal; font-weight: 500; font-size: 11.5px; color: var(--accent); }
  .read .plate { font-size: 11px; padding: 0 5px; border-width: 1.5px; border-radius: 4px; }
  .wa { background: #E9E2D8; border-radius: 16px; padding: 14px 12px 16px; box-shadow: var(--shadow); font-size: 13.5px; color: #111; }
  .wa .who { display: flex; align-items: center; gap: 8px; margin: -2px 0 12px; font-size: 12.5px; color: #333; font-weight: 600; }
  .wa .who i { width: 22px; height: 22px; border-radius: 50%; background: #25D366; display: grid; place-items: center; color: #fff; font-style: normal; font-size: 11px; }
  .wa .bub { background: #D9FDD3; border-radius: 10px 2px 10px 10px; padding: 8px 10px 6px; margin-left: 18px; box-shadow: 0 1px 1px rgba(0,0,0,.08); }
  .wa .doc { display: flex; align-items: center; gap: 8px; background: rgba(0,0,0,.05); border-radius: 7px; padding: 8px; margin-bottom: 6px; font-weight: 600; font-size: 12.5px; }
  .wa .doc b { background: #E5483D; color: #fff; font-size: 9px; border-radius: 3px; padding: 3px 4px; letter-spacing: .03em; }
  .wa .meta { text-align: right; font-size: 10.5px; color: #667; margin-top: 3px; }
  .wa .meta span { color: #34B7F1; }
  @media (max-width: 860px) {
    .flow { grid-template-columns: 1fr; gap: 40px; grid-template-rows: none; }
    .flow .fstep { grid-row: auto; grid-template-rows: auto; }
    .flow .fstep:not(:last-child)::after { content: "↓"; right: auto; left: 50%; top: auto; bottom: -34px; }
    .paper { max-width: 340px; }
  }

  /* ── daily emails ────────────────────────────────────────── */
  .mails { background: var(--bg-2); padding: clamp(90px, 11vw, 150px) 0; }
  .mails h2 { font-size: clamp(34px, 5vw, 58px); max-width: 15ch; margin-bottom: 18px; }
  .inbox { margin-top: 52px; display: grid; grid-template-columns: minmax(260px, 360px) 1fr; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow), 0 0 0 1px var(--line); overflow: hidden; }
  .inbox .list { border-right: 1px solid var(--line); display: flex; flex-direction: column; }
  .inbox .list button { all: unset; box-sizing: border-box; cursor: pointer; padding: 16px 18px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; position: relative; }
  .inbox .list button:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
  .inbox .list button[aria-selected="true"] { background: var(--accent-soft); }
  .inbox .list button[aria-selected="true"]::before { content: ""; position: absolute; left: 0; top: 10px; bottom: 10px; width: 3px; border-radius: 0 3px 3px 0; background: var(--accent); }
  .inbox .from { font-weight: 600; font-size: 14.5px; }
  .inbox .time { font-size: 12.5px; color: var(--faint); font-variant-numeric: tabular-nums; }
  .inbox .subj { grid-column: 1 / -1; font-size: 13.5px; color: var(--soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .inbox .subj b { color: var(--ink); font-weight: 600; }
  .inbox .list .note { padding: 16px 18px; font-size: 12.5px; color: var(--faint); margin-top: auto; }
  .pane { background: #EEF0F2; padding: 26px clamp(16px, 3vw, 40px) 0; position: relative; max-height: 540px; overflow: hidden; color: #1D1D1F; }
  .pane::after { content: ""; position: absolute; inset: auto 0 0; height: 120px; background: linear-gradient(to bottom, rgba(238,240,242,0), #EEF0F2 85%); pointer-events: none; }
  .em { max-width: 540px; margin: 0 auto; display: none; }
  .em.on { display: block; animation: emIn .35s ease; }
  @keyframes emIn { from { opacity: 0; transform: translateY(8px); } }
  .em .mast { background: #1B1C20; border-radius: 14px; padding: 20px 22px; color: #fff; }
  .em .mast small { display: block; color: #D4B06A; font-size: 10.5px; font-weight: 700; letter-spacing: .18em; }
  .em .mast strong { display: block; font-size: 21px; margin-top: 6px; letter-spacing: -.01em; }
  .em .mast span { display: block; color: #A7A9AE; font-size: 12.5px; margin-top: 4px; }
  .em .hi { margin: 18px 2px 12px; } .em .hi b { font-size: 17px; display: block; } .em .hi span { color: #6E6E73; font-size: 13px; }
  .em .c { background: #fff; border: 1px solid #E3E5E8; border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; }
  .em .c.g { background: #EEF6EF; border-color: #CFE6D4; color: #1C5E36; }
  .em .c.r { background: #FBEDEB; border-color: #F1CFCA; color: #8E2A22; }
  .em .c small { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
  .em .c .n { font-size: 28px; font-weight: 800; letter-spacing: -.02em; margin: 2px 0; font-variant-numeric: tabular-nums; }
  .em .c p { margin: 0; font-size: 13px; opacity: .85; }
  .em .two { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .em .rows { list-style: none; margin: 0; padding: 0; }
  .em .rows li { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; border-top: 1px solid #EDEEF0; font-size: 13px; }
  .em .rows li:first-child { border-top: 0; }
  .em .mv { font-size: 12px; font-weight: 700; color: #1C7A45; background: #E3F2E6; border-radius: 999px; padding: 2px 8px; vertical-align: middle; letter-spacing: 0; }
  .em .c.r .rows li { border-color: #F1CFCA; }
  .em .c.r .rows em { color: #9B4A42; }
  .em .rows em { font-style: normal; color: #6E6E73; font-size: 12px; }
  .em .rows b { font-variant-numeric: tabular-nums; }
  .em table { width: 100%; border-collapse: collapse; font-size: 13px; font-variant-numeric: tabular-nums; }
  .em th { text-align: right; font-weight: 600; color: #6E6E73; font-size: 11.5px; padding: 4px 0 8px; }
  .em th:first-child, .em td:first-child { text-align: left; }
  .em td { text-align: right; padding: 7px 0; border-top: 1px solid #EDEEF0; }
  .em td.up { color: #1C7A45; font-weight: 700; }
  @media (max-width: 860px) {
    .inbox { grid-template-columns: 1fr; }
    .inbox .list { border-right: 0; flex-direction: row; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: none; }
    .inbox .list button { min-width: 230px; border-bottom: 0; border-right: 1px solid var(--line); }
    .inbox .list button[aria-selected="true"]::before { left: 10px; right: 10px; top: auto; bottom: 0; width: auto; height: 3px; border-radius: 3px 3px 0 0; }
    .inbox .list .note { display: none; }
    .em .two { grid-template-columns: 1fr; }
  }

  /* ── locations: the sidebar scope switcher ──────────────── */
  .places { padding: clamp(90px, 11vw, 150px) 0; }
  .places .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
  .places h2 { font-size: clamp(34px, 5vw, 58px); max-width: 14ch; margin-bottom: 20px; }
  .scope-demo { width: 100%; max-width: 360px; margin: 0 auto; }
  .scope-demo .menu { box-shadow: var(--shadow), 0 0 0 1px var(--line); border: 0; padding: 6px; margin-top: 8px; }
  .scope-demo .scope-btn { padding: 10px 12px; }
  .menu button .tm { font-size: 12.5px; color: var(--soft); font-variant-numeric: tabular-nums; margin-top: 2px; white-space: nowrap; }
  .menu button[aria-checked="true"] { background: var(--accent-soft); }
  .side { display: grid; grid-template-columns: 250px 1fr; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow), 0 0 0 1px var(--line); overflow: hidden; min-height: 560px; }
  .side nav { border-right: 1px solid var(--line); padding: 16px 12px; background: var(--bg); }
  .side nav .logo { height: 22px; margin: 2px 4px 16px; display: block; }
  .scope-btn { width: 100%; display: flex; align-items: center; gap: 9px; border: 1px solid var(--line); background: var(--bg-2); border-radius: 10px; padding: 7px 10px; text-align: left; font: inherit; color: inherit; }
  .scope-btn small { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--soft); }
  .scope-btn b { display: block; font-size: 14px; }
  .scope-btn b span { font-weight: 400; color: var(--soft); }
  .scope-btn svg { width: 15px; height: 15px; margin-left: auto; color: var(--soft); }
  .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
  .menu { list-style: none; margin: 6px 0 0; padding: 5px; border: 1px solid var(--line); border-radius: 10px; background: var(--card); box-shadow: 0 12px 30px -12px rgba(0,0,0,.25); }
  .menu button { all: unset; box-sizing: border-box; width: 100%; cursor: pointer; display: flex; align-items: flex-start; gap: 9px; padding: 6px 8px; border-radius: 6px; }
  .menu button:hover, .menu button:focus-visible { background: var(--bg-2); }
  .menu button .dot { margin-top: 6px; }
  .menu button span.t { flex: 1; min-width: 0; }
  .menu button b { display: block; font-size: 13.5px; font-weight: 500; }
  .menu button em { display: block; font-style: normal; font-size: 11px; color: var(--soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .menu button svg { width: 15px; height: 15px; color: var(--accent); margin-top: 3px; visibility: hidden; }
  .menu button[aria-checked="true"] svg { visibility: visible; }
  .menu hr { border: 0; border-top: 1px solid var(--line); margin: 5px 2px; }
  .menu .fine { font-size: 10.5px; color: var(--soft); padding: 4px 8px 3px; }
  .side .view { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
  .side .view .where { font-size: 13px; color: var(--soft); }
  .side .view h3 { margin: 2px 0 0; font-size: 26px; letter-spacing: -.02em; }
  .side .view .clock { font-size: 13px; color: var(--soft); font-variant-numeric: tabular-nums; }
  .side .vk { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .side .vk div { background: var(--bg-2); border-radius: 12px; padding: 12px; }
  .side .vk b { display: block; font-size: 22px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
  .side .vk span { font-size: 12px; color: var(--soft); }
  .side .shops { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
  .side .shops li { font-size: 12px; font-weight: 600; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
  .side .rule { font-size: 12.5px; color: var(--soft); border-top: 1px solid var(--line); padding-top: 12px; margin-top: auto; }
  .side .rule b { color: var(--ink); }
  @media (max-width: 960px) {
    .places .grid { grid-template-columns: 1fr; }
    .side { grid-template-columns: 1fr; min-height: 0; }
    .side nav { border-right: 0; border-bottom: 1px solid var(--line); }
  }

  .h-logo { height: .74em; width: auto; vertical-align: -0.02em; margin-left: .06em; display: inline-block; }
  :root[data-theme="dark"] .h-logo { filter: invert(1); }
  @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .h-logo { filter: invert(1); } }

  /* ── team chat: the group chat vs the customer's chat ───── */
  .vs { padding: clamp(80px, 10vw, 130px) 0; }
  .vs h2 { font-size: clamp(34px, 5vw, 58px); max-width: 17ch; margin-bottom: 18px; }
  .vs .lead { max-width: 52ch; }
  .duo { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .duo figure { margin: 0; display: flex; flex-direction: column; }
  .duo figcaption { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; margin-bottom: 12px; }
  .duo .ic { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; color: #fff; flex: none; }
  .duo .ic svg { width: 11px; height: 11px; }
  .duo .ic.ok { background: var(--brand); } .duo .ic.bad { background: #C8321E; }
  .phone-ui { border-radius: 20px; overflow: hidden; background: #EFE7DE; box-shadow: var(--shadow), 0 0 0 1px var(--line); height: 480px; display: flex; flex-direction: column; color: #111; font-size: 13.5px; }
  .phone-ui .bar { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: #F0F2F5; border-bottom: 1px solid #DDD; }
  .phone-ui .bar.green { background: #16A34A; color: #fff; border: 0; }
  .phone-ui .bar b { display: block; font-size: 14px; } .phone-ui .bar small { font-size: 11.5px; opacity: .75; }
  .phone-ui .bar .plate { font-size: 10.5px; padding: 0 5px; border-width: 1.5px; border-radius: 4px; }
  .gav, .av2 { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: #CFD8DC; font-size: 15px; flex: none; }
  .av2 { background: rgba(255,255,255,.25); color: #fff; font-weight: 700; }
  .unread { margin-left: auto; background: #25D366; color: #fff; font-weight: 700; font-size: 11.5px; border-radius: 999px; padding: 2px 8px; }
  .phone-ui .msgs { flex: 1; overflow: hidden; padding: 12px; display: flex; flex-direction: column; gap: 6px; position: relative; }
  .grp .msgs { justify-content: flex-end; }
  .grp .msgs::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 70px; background: linear-gradient(#EFE7DE, rgba(239,231,222,0)); z-index: 1; pointer-events: none; }
  .gm { flex: none; align-self: flex-start; width: fit-content; background: #fff; border-radius: 2px 10px 10px 10px; padding: 5px 9px 4px; max-width: 82%; box-shadow: 0 1px .5px rgba(0,0,0,.1); position: relative; }
  .gm b { font-size: 12px; } .gm p { margin: 1px 0 0; padding-right: 34px; }
  .gm time { position: absolute; right: 8px; bottom: 4px; font-size: 10px; color: #8A8A8A; }
  .gm .cu { margin-left: 6px; font-size: 10px; font-weight: 700; color: #C8321E; background: #FDECEA; border-radius: 4px; padding: 0 5px; }
  .more { flex: none; align-self: center; font-size: 11.5px; color: #666; background: rgba(255,255,255,.7); border-radius: 8px; padding: 3px 10px; }
  .day { flex: none; align-self: center; font-size: 11px; font-weight: 600; color: #555; background: #fff; border-radius: 8px; padding: 3px 10px; margin: 4px 0; box-shadow: 0 1px .5px rgba(0,0,0,.1); }
  .cm, .om { border-radius: 2px 10px 10px 10px; padding: 7px 10px 16px; max-width: 82%; position: relative; background: #fff; box-shadow: 0 1px .5px rgba(0,0,0,.1); }
  .om { align-self: flex-end; background: #D9FDD3; border-radius: 10px 2px 10px 10px; }
  .cm time, .om time { position: absolute; right: 8px; bottom: 3px; font-size: 10px; color: #8A8A8A; }
  .om time { color: #4E8FB0; }
  .note { align-self: stretch; background: #FFF6DB; border: 1px solid #F1D98B; border-radius: 10px; padding: 6px 10px 8px; color: #6B4A00; margin: 0 6px; }
  .note .lab { display: flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #9A6B00; margin-bottom: 2px; }
  .note .lab svg { width: 11px; height: 11px; }
  .sys { align-self: center; text-align: center; font-size: 12.5px; font-weight: 600; color: var(--brand); background: var(--brand-soft); border-radius: 10px; padding: 7px 12px; }
  .out { margin: 14px 2px 0; font-size: 15px; font-weight: 600; }
  .out.bad { color: var(--bad, #C8321E); } .out.ok { color: var(--accent); }
  .side-a .phone-ui { filter: saturate(.85); }
  .vs-points { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; color: var(--soft); font-size: 15px; }
  .vs-points b { color: var(--ink); }
  @media (max-width: 860px) {
    .duo, .vs-points { grid-template-columns: 1fr; }
    .phone-ui { height: 440px; }
    .phone-ui.one { height: auto; }
  }

  /* ── hero offer ─────────────────────────────────────────── */
  .offer { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 18px 0 0; }
  .offer span { font-size: 13.5px; font-weight: 600; color: var(--accent); background: var(--accent-soft); border-radius: 999px; padding: 5px 12px; }
  .offer span::before { content: "✓ "; }

  /* ── payments ───────────────────────────────────────────── */
  .pay { background: var(--bg-2); padding: clamp(80px, 10vw, 130px) 0; }
  .pay .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
  .pay h2 { font-size: clamp(34px, 5vw, 58px); max-width: 14ch; margin-bottom: 18px; }
  .ways { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 2px; }
  .ways li { padding: 14px 0; border-top: 1px solid var(--line); }
  .ways .w-hd { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
  .ways b { font-size: 17px; }
  .ways p { margin: 4px 0 0; color: var(--soft); font-size: 15px; }
  .brands { display: flex; gap: 8px; }
  .brand { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 4px 9px; }
  .brand svg { width: 15px; height: 15px; }
  .brand.ezi { color: #0F5FA8; letter-spacing: -.01em; }
  :root[data-theme="dark"] .brand.ezi { color: #7DB6F0; }
  @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .brand.ezi { color: #7DB6F0; } }
  .pl-phone { max-width: 380px; margin: 0 auto; width: 100%; border-radius: 28px; overflow: hidden; background: #EFE7DE; box-shadow: var(--shadow), 0 0 0 1px var(--line); color: #111; font-size: 14px; }
  .pl-bar { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: #F0F2F5; border-bottom: 1px solid #DDD; }
  .pl-bar b { display: block; font-size: 14.5px; } .pl-bar small { font-size: 11.5px; color: #667; }
  .pl-av { width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 800; }
  .pl-body { padding: 14px 12px 16px; display: flex; flex-direction: column; gap: 8px; }
  .pl-day { align-self: center; font-size: 11px; font-weight: 600; color: #555; background: #fff; border-radius: 8px; padding: 3px 10px; }
  .pl-msg { background: #fff; border-radius: 2px 12px 12px 12px; padding: 5px 5px 18px; max-width: 88%; position: relative; box-shadow: 0 1px .5px rgba(0,0,0,.1); }
  .pl-msg p { margin: 6px 7px 0; line-height: 1.4; }
  .pl-msg .pl-url { color: #027EB5; word-break: break-all; }
  .pl-msg time { position: absolute; right: 9px; bottom: 4px; font-size: 10.5px; color: #8A8A8A; }
  .pl-card { background: #F5F6F6; border-radius: 8px; overflow: hidden; }
  .pl-img { height: 92px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); display: grid; place-items: center; }
  .pl-img span { color: #fff; font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
  .pl-meta { padding: 8px 10px; } .pl-meta b { display: block; font-size: 13px; } .pl-meta small { color: #667; font-size: 11.5px; }
  .pl-btn { max-width: 88%; width: 100%; box-sizing: border-box; text-align: center; background: #fff; color: #027EB5; font-weight: 600; border-radius: 10px; padding: 9px; box-shadow: 0 1px .5px rgba(0,0,0,.1); }
  .pl-sms { background: var(--card); color: var(--soft); font-size: 13px; padding: 12px 16px; border-top: 1px solid var(--line); }
  .pl-sms b { color: var(--ink); }
  @media (max-width: 860px) { .pay .grid { grid-template-columns: 1fr; } }

  /* ── start free ─────────────────────────────────────────── */
  .start { padding: clamp(70px, 9vw, 110px) 0 0; }
  .start h2 { font-size: clamp(32px, 4.6vw, 52px); max-width: 18ch; margin-bottom: 32px; }
  .start-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .st { background: var(--bg-2); border-radius: var(--radius); padding: 24px; }
  .st b { font-size: 19px; letter-spacing: -.01em; }
  .st p { margin: 6px 0 0; color: var(--soft); font-size: 15px; }
  @media (max-width: 860px) { .start-grid { grid-template-columns: 1fr; } }

  /* ── all-in-one vs the usual stack ──────────────────────── */
  .aio { padding: clamp(80px, 10vw, 130px) 0; }
  .aio h2 { font-size: clamp(34px, 5vw, 58px); max-width: 16ch; margin-bottom: 18px; }
  .aio .lead { max-width: 54ch; }
  .aio-duo { margin-top: 48px; display: grid; grid-template-columns: 1fr 1.25fr; gap: 24px; align-items: stretch; }
  .aio-duo figure { margin: 0; border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; }
  .aio-duo figcaption { font-weight: 700; font-size: 15px; margin-bottom: 16px; min-height: 28px; display: flex; align-items: center; }
  .aio-duo figcaption .h-logo { height: 26px; }
  .aio-a { background: var(--bg-2); }
  .aio-a figcaption { color: var(--soft); }
  .stack { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
  .stack li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; background: var(--card); border: 1px dashed var(--line); border-radius: 10px; padding: 9px 12px; font-size: 14px; }
  .stack li:nth-child(odd) { transform: rotate(-.5deg); } .stack li:nth-child(even) { transform: rotate(.4deg) translateX(4px); }
  .stack li span { color: var(--soft); font-size: 12.5px; text-align: right; font-variant-numeric: tabular-nums; }
  .stack li:last-child { border-color: rgba(200, 50, 30, .45); }
  .aio-b { background: var(--card); box-shadow: var(--shadow), 0 0 0 1.5px var(--accent); }
  .areas { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
  .areas li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 500; padding: 7px 0; border-bottom: 1px solid var(--line); }
  .areas .ic { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; flex: none; }
  .areas .ic svg { width: 10px; height: 10px; }
  .aio-sum { margin-top: auto; padding-top: 16px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; border-top: 2px solid var(--ink); font-size: 14px; color: var(--soft); }
  .aio-duo .stack, .aio-duo .areas { margin-bottom: 20px; }
  .aio-sum b { font-size: 22px; color: var(--ink); letter-spacing: -.02em; }
  .aio-b .aio-sum b { color: var(--accent); }
  .aio-pain { margin: 12px 0 0; font-size: 14.5px; font-weight: 600; color: #C8321E; }
  .aio-pain.ok { color: var(--accent); }
  :root[data-theme="dark"] .aio-pain:not(.ok) { color: #FF6B5E; }
  @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .aio-pain:not(.ok) { color: #FF6B5E; } }
  .aio-src { margin-top: 18px; font-size: 13px; color: var(--soft); }
  .aio-src summary { cursor: pointer; font-weight: 600; }
  .aio-src p { max-width: 90ch; margin: 8px 0 0; }
  .aio-src a { color: inherit; }
  @media (max-width: 860px) { .aio-duo { grid-template-columns: 1fr; } .areas { grid-template-columns: 1fr; } }


  /* ── accounting ─────────────────────────────────────────── */
  .books { padding: clamp(80px, 10vw, 130px) 0; }
  .books .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
  .books h2 { font-size: clamp(34px, 5vw, 58px); max-width: 13ch; margin-bottom: 18px; }
  .jr { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow), 0 0 0 1px var(--line); padding: 20px; max-width: 460px; width: 100%; margin: 0 auto; font-variant-numeric: tabular-nums; }
  .jr-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
  .jr-hd b { font-size: 17px; }
  .xero { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px 4px 5px; }
  .xero svg { width: 20px; height: 20px; }
  .jr-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
  .jr-l b, .jr-r b { display: block; font-size: 15px; }
  .jr-l small { font-size: 12.5px; color: var(--soft); }
  .jr-r { text-align: right; }
  .g { display: inline-block; margin-top: 3px; font-size: 11.5px; font-weight: 700; border-radius: 6px; padding: 1px 7px; }
  .g.in { color: var(--accent); background: var(--accent-soft); }
  .g.none { color: var(--soft); background: var(--bg-2); }
  .jr-row.move .jr-l small { color: var(--amber); font-weight: 600; }
  .jr-ft { display: flex; justify-content: space-between; border-top: 2px solid var(--ink); padding-top: 12px; margin-top: 2px; font-size: 14px; color: var(--soft); }
  .jr-ft b { color: var(--ink); font-size: 17px; }
  .jr-btn { margin-top: 14px; text-align: center; font-weight: 700; font-size: 14px; border-radius: 10px; padding: 10px; background: var(--ink); color: var(--card); }
  @media (max-width: 860px) { .books .grid { grid-template-columns: 1fr; } }


  /* ── colour themes: Harbour (default) · Coastal · Signal ── */
  html:root[data-palette="coastal"] {
    --accent: #1554C0; --accent-ink: #FFFFFF; --accent-soft: #E7EEFB; --accent-2: #0EA5C6;
    --glow-a: #A9C8FF; --glow-b: #BDEBF4;
    --brand: #1554C0; --brand-2: #3B82F6; --brand-soft: #E7EEFB; --glint: #7CC4FF;
    --final-a: #2563EB; --final-b: #0891B2; --final-base: #0B1B3F;
  }
  html:root[data-palette="signal"] {
    --accent: #C2410C; --accent-ink: #FFFFFF; --accent-soft: #FFEDE3; --accent-2: #E8A200;
    --glow-a: #FFC9A8; --glow-b: #FFE7A3;
    --brand: #C2410C; --brand-2: #F97316; --brand-soft: #FFEDE3; --glint: #FF9A5C;
    --final-a: #EA580C; --final-b: #B45309; --final-base: #1F1410;
  }
  @media (prefers-color-scheme: dark) {
    html:root[data-palette="coastal"]:not([data-theme="light"]) { --accent: #6AA8FF; --accent-ink: #06142E; --accent-soft: #0E1D38; --glow-a: #1E3A7A; --glow-b: #0B3A4A; }
    html:root[data-palette="signal"]:not([data-theme="light"]) { --accent: #FF8A4C; --accent-ink: #1F0D03; --accent-soft: #2E1507; --glow-a: #6B2A0A; --glow-b: #4A3405; }
  }
  html:root[data-palette="coastal"][data-theme="dark"] { --accent: #6AA8FF; --accent-ink: #06142E; --accent-soft: #0E1D38; --glow-a: #1E3A7A; --glow-b: #0B3A4A; }
  html:root[data-palette="signal"][data-theme="dark"] { --accent: #FF8A4C; --accent-ink: #1F0D03; --accent-soft: #2E1507; --glow-a: #6B2A0A; --glow-b: #4A3405; }

  .palette { position: fixed; right: 16px; bottom: 16px; z-index: 60; display: flex; align-items: center; gap: 6px; padding: 6px 8px 6px 12px; border-radius: 999px; background: var(--card); box-shadow: var(--shadow), 0 0 0 1px var(--line); font-size: 12.5px; font-weight: 600; color: var(--soft); }
  .palette button { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--card); cursor: pointer; padding: 0; box-shadow: 0 0 0 1px var(--line); }
  .palette button[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--ink); }
  .palette button:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }


  /* ── mega menu: big, quiet, Apple-clean ─────────────────── */
  .mega-trigger { all: unset; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; color: var(--soft); font-size: 14px; }
  .mega-trigger svg { width: 12px; height: 12px; transition: transform .25s; }
  .mega-trigger:hover, .mega-trigger[aria-expanded="true"] { color: var(--ink); }
  .mega-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
  .mega-trigger:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
  .mega { position: absolute; left: 0; right: 0; top: 100%; background: color-mix(in srgb, var(--bg) 94%, transparent); backdrop-filter: saturate(180%) blur(24px); -webkit-backdrop-filter: saturate(180%) blur(24px); border-bottom: 1px solid var(--line); padding: 36px 0 22px; }
  .mega:not([hidden]) { animation: megaIn .28s cubic-bezier(.2,.7,.2,1); }
  @keyframes megaIn { from { opacity: 0; transform: translateY(-8px); } }
  .mega-grid { display: grid; grid-template-columns: 300px 1fr; gap: 56px; }
  .mega-lab { margin: 0 0 14px; font-size: 12px; color: var(--faint); font-weight: 600; letter-spacing: .02em; }
  .mega-depts { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
  .mega-depts a { display: block; text-decoration: none; color: var(--ink); font-size: 24px; font-weight: 600; letter-spacing: -.02em; line-height: 1.25; padding: 4px 0; opacity: .45; transition: opacity .15s; }
  .mega-depts a[aria-current="true"], .mega-depts a:hover, .mega-depts a:focus-visible { opacity: 1; outline: none; }
  .mp { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
  .mega-panes { min-height: 430px; }
  .mp[hidden] { display: none; }
  .mp:not([hidden]) { animation: mpIn .25s ease; }
  @keyframes mpIn { from { opacity: 0; } }
  .mp-blurb { margin: 30px 0 18px; font-size: 17px; line-height: 1.4; color: var(--soft); max-width: 34ch; }
  .mp ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
  .mp ul a { text-decoration: none; color: var(--ink); font-size: 14.5px; font-weight: 500; }
  .mp ul a:hover { color: var(--accent); }
  .mp-more { display: inline-block; margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none; }
  .mp-more:hover { text-decoration: underline; }
  .mp-img { display: block; aspect-ratio: 16 / 11; border-radius: 18px; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); }
  .mp-img img { width: 100%; height: 100%; display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
  .mp-img:hover img { transform: scale(1.03); }
  .fit-cover img { object-fit: cover; }
  .fit-cover-left img { object-fit: cover; object-position: 0 50%; transform-origin: left center; }
  .fit-contain img { object-fit: contain; padding: 16px 16px 0; box-sizing: border-box; object-position: 50% 0; }
  .mega-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 22px; margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; }
  .mega-foot span { color: var(--faint); }
  .mega-foot a { color: var(--soft); text-decoration: none; } .mega-foot a:hover { color: var(--ink); }
  .mega-foot .mega-all { margin-left: auto; color: var(--accent); font-weight: 600; }
  .mega-scrim { position: fixed; inset: 0; z-index: 40; background: rgba(0,0,0,.18); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
  .mega-scrim:not([hidden]) { animation: megaFade .25s ease; }
  @keyframes megaFade { from { opacity: 0; } }
  @media (max-width: 900px) {
    .mega { position: absolute; top: 100%; height: calc(100vh - 56px); height: calc(100dvh - 56px); overflow-y: auto; overscroll-behavior: contain; padding: 24px 0 40px; background: var(--bg); }
    .mega-grid { grid-template-columns: 1fr; gap: 0; }
    .mega-panes { min-height: 0; }
    .mega-col { display: none; }
    .mega-panes { display: grid; gap: 28px; }
    .mega-panes .mp, .mega-panes .mp[hidden] { display: block; }
    .mp::before { content: attr(data-name); display: block; font-size: 24px; font-weight: 600; letter-spacing: -.02em; }
    .mp-blurb { margin: 6px 0 12px; font-size: 15px; }
    .mp-img { display: none; }
    .mega-foot .mega-all { margin-left: 0; }
  }
  @media (prefers-reduced-motion: reduce) { .mega, .mp, .mega-scrim { animation: none !important; } }

  /* ── ask: the dark theatre ──────────────────────────────── */
  .night { background: var(--night); color: var(--night-ink); padding: clamp(70px, 8vw, 110px) 0; overflow: hidden; }
  .night .eyebrow { color: var(--glint); }
  .night h2 { font-size: clamp(36px, 4.4vw, 56px); max-width: 13ch; }
  .night .lead { color: var(--night-soft); margin-top: 18px; }
  .ask { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 5vw, 64px); align-items: center; }
  .askwrap { margin-top: 32px; }
  .askbar {
    display: flex; align-items: center; gap: 14px; padding: 18px 22px; border-radius: 18px;
    background: var(--night-2); border: 1px solid #2A2B30; font-size: clamp(17px, 2vw, 21px);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--glint) 8%, transparent);
  }
  .askbar svg { width: 22px; height: 22px; flex: none; color: var(--glint); }
  .typed { min-height: 1.5em; }
  .caret { display: inline-block; width: 2px; height: 1.1em; background: var(--glint); vertical-align: -3px; margin-left: 2px; animation: blink 1s steps(1) infinite; }
  @keyframes blink { 50% { opacity: 0; } }
  .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
  .chip {
    font: inherit; font-size: 14px; color: var(--night-soft); background: transparent; border: 1px solid #2E2F35;
    padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: all .2s;
  }
  .chip[aria-pressed="true"], .chip:hover { color: var(--night-ink); border-color: var(--glint); background: color-mix(in srgb, var(--glint) 10%, transparent); }
  .answer { background: var(--night-2); border: 1px solid #2A2B30; border-radius: 18px; padding: 22px; min-height: 260px; }
  .answer h4 { margin: 0 0 14px; font-size: 14px; font-weight: 600; color: var(--night-soft); }
  .answer .row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid #25262B; font-size: 15px; opacity: 0; transform: translateY(6px); animation: pop .45s ease forwards; }
  .answer .row:first-of-type { border-top: 0; }
  @keyframes pop { to { opacity: 1; transform: none; } }
  .plate { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-weight: 700; font-size: 13px; color: #111; background: #FFD400; border: 2px solid #222; border-radius: 6px; padding: 1px 7px; letter-spacing: .02em; }
  .plate.w { background: #FFFEF4; }
  .answer .who { flex: 1; min-width: 0; }
  .answer .who small { display: block; color: var(--night-soft); font-size: 12.5px; }
  .answer .val { font-weight: 600; }
  .answer .red { color: #FF6B5E; }
  .answer .bar { height: 8px; border-radius: 4px; background: linear-gradient(90deg, var(--brand-2), var(--accent-2)); transform-origin: left; animation: grow .8s cubic-bezier(.2,.7,.1,1) both; }
  @keyframes grow { from { transform: scaleX(0); } }
  .answer .foot { margin-top: 14px; font-size: 12.5px; color: #6E6E73; }
  @media (max-width: 860px) { .ask { grid-template-columns: 1fr; } }

  /* ── feature stories ────────────────────────────────────── */
  .story { padding: clamp(90px, 11vw, 150px) 0; }
  .story .grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
  .story.flip .grid { grid-template-columns: 1.15fr 1fr; }
  .story.flip .copy { order: 2; }
  .story h2 { font-size: clamp(34px, 5vw, 58px); max-width: 15ch; margin-bottom: 20px; }
  .story .lead { max-width: 36ch; }
  .points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
  .points li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; font-size: 16px; color: var(--soft); }
  .points li b { color: var(--ink); font-weight: 600; }
  .points svg { width: 20px; height: 20px; color: var(--accent); margin-top: 2px; }
  .shot { border-radius: var(--radius); overflow: hidden; background: var(--card); box-shadow: var(--shadow), 0 0 0 1px var(--line); }
  .tag-staff {
    display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--amber); background: var(--amber-soft); padding: 4px 10px; border-radius: 6px;
  }
  .chat-wrap { position: relative; max-width: 520px; margin-left: auto; }
  .chat-wrap .float {
    position: absolute; left: -26px; bottom: 34px; background: var(--card); border-radius: 14px; padding: 12px 16px;
    box-shadow: var(--shadow); font-size: 14px; max-width: 250px; border: 1px solid var(--line);
  }
  .chat-wrap .float b { display: block; margin-bottom: 4px; }
  .map-wrap { position: relative; }
  .map-wrap .alert { position: absolute; left: -22px; bottom: -34px; width: min(46%, 300px); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
  @media (max-width: 860px) {
    .story .grid, .story.flip .grid { grid-template-columns: 1fr; }
    .story.flip .copy { order: 0; }
    .chat-wrap { margin: 0 auto; }
    .chat-wrap .float { left: 8px; }
    .map-wrap .alert { left: 8px; bottom: -28px; }
  }

  /* ── fines: the flow as steps ───────────────────────────── */
  .fines { background: var(--bg-2); padding: clamp(90px, 11vw, 150px) 0; }
  .fines h2 { font-size: clamp(34px, 5vw, 58px); max-width: 17ch; margin-bottom: 18px; }
  .steps { list-style: none; padding: 0; margin: 56px 0 44px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; counter-reset: s; }
  .steps li {
    background: var(--card); border-radius: 18px; padding: 20px 18px 22px; position: relative; font-size: 15px; color: var(--soft);
    counter-increment: s;
  }
  .steps li::before { content: counter(s); display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 14px; margin-bottom: 14px; }
  .steps li b { display: block; color: var(--ink); font-size: 17px; margin-bottom: 4px; letter-spacing: -.01em; }
  .fine-shots { display: grid; gap: 14px; }
  .warn { margin-top: 26px; font-size: 15px; color: var(--soft); display: flex; gap: 10px; align-items: flex-start; }
  .warn svg { width: 20px; height: 20px; color: var(--amber); flex: none; margin-top: 2px; }
  @media (max-width: 960px) { .steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

  /* ── bento ──────────────────────────────────────────────── */
  .bento-sec { padding: clamp(90px, 11vw, 150px) 0; }
  .bento-sec h2 { font-size: clamp(34px, 5vw, 58px); max-width: 16ch; margin-bottom: 44px; }
  .bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .tile { background: var(--bg-2); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 8px; min-height: 190px; }
  .tile h3 { margin: 0; font-size: 21px; letter-spacing: -.02em; line-height: 1.2; }
  .tile p { margin: 0; color: var(--soft); font-size: 15px; }
  .tile .big { font-size: 48px; font-weight: 700; letter-spacing: -.04em; line-height: 1; color: var(--accent); margin-bottom: 6px; }
  .tile img { margin-top: auto; border-radius: 12px; border: 1px solid var(--line); }
  .span2 { grid-column: span 2; } .span3 { grid-column: span 3; } .span4 { grid-column: span 4; }
  @media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } .span2, .span3, .span4 { grid-column: span 2; } .tile.half { grid-column: span 1; } }
  @media (max-width: 520px) { .tile.half { grid-column: span 2; } }

  /* ── worth more ─────────────────────────────────────────── */
  .worth { padding: clamp(90px, 11vw, 150px) 0; text-align: center; }
  .worth h2 { font-size: clamp(40px, 6.4vw, 80px); max-width: 14ch; margin: 0 auto 22px; }
  .worth .lead { margin: 0 auto; max-width: 42ch; }
  .worth .fine-print { margin-top: 18px; font-size: 13px; color: var(--faint); }

  /* ── final CTA ──────────────────────────────────────────── */
  .final { padding: 0 0 clamp(80px, 10vw, 120px); }
  .final .card {
    border-radius: 32px; padding: clamp(40px, 7vw, 80px); text-align: center; color: #fff; position: relative; overflow: hidden;
    background: radial-gradient(80% 120% at 0% 0%, var(--final-a), transparent 60%), radial-gradient(70% 120% at 100% 100%, var(--final-b), transparent 60%), var(--final-base);
  }
  .final h2 { font-size: clamp(36px, 5.6vw, 64px); max-width: 16ch; margin: 0 auto 18px; }
  .final p { margin: 0 auto; max-width: 44ch; color: rgba(255,255,255,.82); font-size: 18px; }
  .final .ctas { margin-top: 30px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .final .btn-primary { background: #fff; color: var(--final-base); }
  .final .btn-ghost { color: #fff; }
  .final .refer { margin-top: 26px; font-size: 14px; color: rgba(255,255,255,.7); }

  /* ── security ───────────────────────────────────────────── */
  .security { padding: clamp(90px, 11vw, 150px) 0; }
  .sec-head { text-align: center; margin: 0 auto 50px; }
  .security h2 { font-size: clamp(38px, 6vw, 72px); margin: 0 auto 18px; }
  .security .lead { margin: 0 auto; max-width: 44ch; }
  .sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .sec-grid article { background: var(--bg-2); border-radius: var(--radius); padding: 26px; }
  .sec-grid svg { width: 30px; height: 30px; color: var(--accent); margin-bottom: 16px; }
  .sec-grid h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.02em; }
  .sec-grid p { margin: 0; color: var(--soft); font-size: 15px; }
  .sec-note { text-align: center; font-size: 13px; color: var(--faint); margin: 26px auto 0; max-width: 62ch; }
  @media (max-width: 960px) { .sec-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .sec-grid { grid-template-columns: 1fr; } }

  /* ── local ──────────────────────────────────────────────── */
  .local { padding: 0 0 clamp(90px, 11vw, 140px); }
  .local-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 6vw, 80px); align-items: end;
    border-top: 1px solid var(--line); padding-top: clamp(60px, 8vw, 90px); }
  .local h2 { font-size: clamp(34px, 5vw, 58px); max-width: 12ch; }
  .local .lead { max-width: 46ch; }
  .abn { margin: 22px 0 0; font-size: 14px; color: var(--faint); font-variant-numeric: tabular-nums; }
  @media (max-width: 860px) { .local-grid { grid-template-columns: 1fr; } }

  /* ── contact ────────────────────────────────────────────── */
  .final .contact-card { text-align: left; }
  .final .contact-card h2, .final .contact-card p { margin-left: 0; margin-right: 0; }
  .contact-card { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 60px); text-align: left; align-items: start; }
  .contact-card h2 { margin: 0 0 16px; max-width: 12ch; }
  .contact-card .contact-copy p { margin: 0; }
  .assure { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 10px; font-size: 15px; color: rgba(255,255,255,.85); }
  .assure li::before { content: "✓"; margin-right: 10px; color: var(--glint); font-weight: 700; }
  .form { background: rgba(255,255,255,.96); color: #1D1D1F; border-radius: 22px; padding: 26px; display: grid; gap: 14px; position: relative; }
  .form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: #3A3A3C; }
  .form .opt { font-weight: 400; color: #8E8E93; }
  .form input, .form select, .form textarea {
    font: inherit; font-size: 16px; font-weight: 400; color: #1D1D1F; background: #F5F5F7; border: 1px solid transparent;
    border-radius: 12px; padding: 12px 14px; outline: none; width: 100%; transition: border-color .15s, background .15s;
  }
  .form textarea { resize: vertical; }
  .form input:focus, .form select:focus, .form textarea:focus { border-color: var(--brand); background: #fff; }
  .form [aria-invalid="true"] { border-color: #D93025; background: #FFF5F4; }
  .form .btn-primary { background: var(--brand); color: #fff; justify-self: start; }
  .form .err { margin: 0; color: #C5221F; font-size: 14px; }
  .form .privacy { margin: 0; font-size: 12.5px; color: #8E8E93; }
  .form .privacy a { color: var(--brand); }
  .done { position: absolute; inset: 0; border-radius: 22px; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; }
  .done[hidden] { display: none; }
  .done svg { width: 48px; height: 48px; color: #fff; background: var(--brand); border-radius: 50%; padding: 11px; margin-bottom: 14px; }
  .done h3 { margin: 0 0 6px; font-size: 24px; letter-spacing: -.02em; }
  .done p { margin: 0; color: #6E6E73; }
  @media (max-width: 860px) { .contact-card { grid-template-columns: 1fr; } }
  @media (max-width: 480px) { .form .two { grid-template-columns: 1fr; } }

  footer { border-top: 1px solid var(--line); padding: 28px 0 40px; font-size: 13px; color: var(--faint); }
  footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
  footer a { color: var(--soft); text-decoration: none; }
  footer .logo { height: 18px; opacity: .8; }

  /* ── reveal on scroll ───────────────────────────────────── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.1,1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal, .phone { opacity: 1 !important; transform: none !important; }
    .device { transform: none !important; }
  }

  /* ═══ multi-page site ═══════════════════════════════════════ */
  section[id], .item[id] { scroll-margin-top: 72px; }
  .crumb { font-size: 13px; color: var(--faint); margin: 0 0 18px; }
  .crumb a { color: var(--soft); text-decoration: none; } .crumb a:hover { color: var(--ink); }
  .dept-hero { padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 72px); }
  .dept-hero .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
  .dept-hero .wrap:not(.grid) .lead { max-width: 52ch; }
  .dept-hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.02; letter-spacing: -.035em; margin: 0 0 18px; max-width: 13ch; text-wrap: balance; }
  .jump { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
  .jump a { display: inline-block; font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; transition: border-color .15s, color .15s; }
  .jump a:hover { border-color: var(--accent); color: var(--accent); }
  .dept-shot { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; background: var(--bg-2); box-shadow: var(--shadow), 0 0 0 1px var(--line); }
  .dept-shot img { width: 100%; height: 100%; display: block; }
  .dept-shot.fit-cover img { object-fit: cover; }
  .dept-shot.fit-cover-left img { object-fit: cover; object-position: 0 50%; }
  .dept-shot.fit-contain img { object-fit: contain; padding: 24px 24px 0; box-sizing: border-box; object-position: 50% 0; }
  .items-sec { padding: clamp(56px, 8vw, 100px) 0; }
  .items-sec h2 { font-size: clamp(30px, 4vw, 46px); margin: 0 0 28px; max-width: 18ch; }
  .items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .item { background: var(--bg-2); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 10px; }
  .item h3 { margin: 0; font-size: 22px; letter-spacing: -.02em; }
  .item > p { margin: 0; color: var(--soft); font-size: 16px; }
  .item ul { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 8px; }
  .item li { display: grid; grid-template-columns: 20px 1fr; gap: 8px; font-size: 15px; }
  .item li::before { content: "✓"; color: var(--accent); font-weight: 700; }
  .item .cal { margin-top: 8px; }
  .wide { padding: clamp(64px, 9vw, 120px) 0; }
  .wide h2 { font-size: clamp(34px, 5vw, 56px); max-width: 16ch; margin-bottom: 18px; }
  .wide .shot { margin-top: 36px; }
  .dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .dept-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: 0 0 0 1px var(--line); transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s; }
  .dept-card:hover { transform: translateY(-3px); box-shadow: var(--shadow), 0 0 0 1px var(--line); }
  .dept-card .dc-img { aspect-ratio: 16 / 10; background: var(--bg-2); overflow: hidden; }
  .dept-card .dc-img img { width: 100%; height: 100%; display: block; }
  .dept-card .fit-cover img { object-fit: cover; } .dept-card .fit-cover-left img { object-fit: cover; object-position: 0 50%; }
  .dept-card .fit-contain img { object-fit: contain; padding: 16px 16px 0; box-sizing: border-box; object-position: 50% 0; }
  .dept-card .dc-txt { padding: 20px 22px 22px; display: grid; gap: 6px; }
  .dept-card b { font-size: 20px; letter-spacing: -.02em; }
  .dept-card .dc-txt span { color: var(--soft); font-size: 15px; }
  .dept-card em { font-style: normal; color: var(--accent); font-weight: 600; font-size: 14px; margin-top: 6px; }
  .explore { padding: clamp(72px, 9vw, 120px) 0; }
  .explore h2 { font-size: clamp(32px, 4.6vw, 52px); margin: 0 0 32px; max-width: 18ch; }
  .also { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; }
  .also a { text-decoration: none; color: inherit; background: var(--bg-2); border-radius: 16px; padding: 18px 20px; display: grid; gap: 4px; }
  .also a b { font-size: 16px; } .also a span { color: var(--soft); font-size: 14px; }
  .also a:hover b { color: var(--accent); }
  .cta-band { margin: 0 0 clamp(72px, 9vw, 110px); }
  .cta-band .inner { border-radius: 28px; padding: clamp(36px, 6vw, 64px); color: #fff; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
    background: radial-gradient(80% 140% at 0% 0%, var(--final-a), transparent 60%), radial-gradient(70% 140% at 100% 100%, var(--final-b), transparent 60%), var(--final-base); }
  .cta-band h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); max-width: 18ch; }
  .cta-band p { margin: 8px 0 0; color: rgba(255,255,255,.8); }
  .cta-band .btn-primary { background: #fff; color: var(--final-base); }
  footer .foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 28px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
  footer .foot-cols b { display: block; color: var(--ink); font-size: 13px; margin-bottom: 10px; }
  footer .foot-cols a { display: block; color: var(--soft); text-decoration: none; font-size: 13px; padding: 3px 0; }
  footer .foot-cols a:hover { color: var(--ink); }
  footer .foot-base { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; }
  .areas li a { display: flex; align-items: center; gap: 9px; flex: 1; color: inherit; text-decoration: none; }
  .areas li a:hover { color: var(--accent); }
  @media (max-width: 900px) {
    .dept-hero .grid, .items, .dept-grid { grid-template-columns: 1fr; }
    .also { grid-template-columns: 1fr 1fr; }
    footer .foot-cols { grid-template-columns: 1fr 1fr; }
  }
  .ways .chans { margin-top: 10px; gap: 6px; align-items: center; }
  .ways .chans .via { font-size: 12.5px; color: var(--faint); margin-right: 2px; }
  .ways .chans .brand { font-size: 12px; padding: 3px 8px; font-weight: 600; }
  .ways .chans .brand svg { width: 13px; height: 13px; }

  /* ── the comparison reads as wrong vs right at a glance ── */
  .duo { align-items: start; }
  .duo figcaption { align-self: flex-start; padding: 6px 14px 6px 8px; border-radius: 999px; }
  .side-a figcaption { color: #B42318; background: rgba(200, 50, 30, .09); }
  .side-b figcaption { color: #fff; background: var(--brand); }
  .side-b figcaption .ic.ok { background: #fff; color: var(--brand); }
  .side-a .phone-ui { transform: scale(.965); transform-origin: top center; box-shadow: 0 0 0 2px rgba(200, 50, 30, .35); background: #ECE9E4; }
  .side-a .msgs > :not(.pain), .side-a .bar .gav, .side-a .bar > span:nth-child(2) { filter: grayscale(.8); opacity: .55; }
  .gm.pain { background: #fff; box-shadow: 0 6px 16px -8px rgba(200, 50, 30, .45); }
  .side-a .unread { background: #C8321E; }
  .side-b .phone-ui { box-shadow: var(--shadow), 0 0 0 2.5px var(--brand); transform: translateY(-6px); }
  .gm.pain { outline: 2px dashed #C8321E; outline-offset: 3px; }
  .side-a .gm.pain b { color: #C8321E !important; }
  .out { display: flex; gap: 10px; align-items: flex-start; padding: 12px 16px; border-radius: 14px; margin-top: 18px; line-height: 1.35; }
  .out::before { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 800; color: #fff; margin-top: 1px; }
  .out.bad { background: rgba(200, 50, 30, .08); color: #B42318; }
  .out.bad::before { content: "✕"; background: #C8321E; }
  .out.ok { background: var(--brand-soft); color: var(--brand); }
  .out.ok::before { content: "✓"; background: var(--brand); }
  :root[data-theme="dark"] .side-a figcaption, :root[data-theme="dark"] .out.bad { color: #FF8A7A; background: rgba(255, 107, 94, .12); }
  @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .side-a figcaption, :root:not([data-theme="light"]) .out.bad { color: #FF8A7A; background: rgba(255, 107, 94, .12); } }
  @media (max-width: 860px) { .side-a .phone-ui { transform: none; } .side-b .phone-ui { transform: none; } }

  /* ── department cards: drawn, one idea each ─────────────── */
  .dept-card .dc-draw { display: grid; place-items: center; padding: 18px; }
  .dv { width: 100%; max-width: 300px; font-size: 13px; color: var(--ink); }
  .dv i { display: inline-grid; place-items: center; }
  .dv .plate { font-size: 12px; padding: 0 6px; border-width: 1.5px; border-radius: 4px; }
  .dv-journey { display: grid; gap: 16px; justify-items: center; }
  .dv-journey ol { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; position: relative; }
  .dv-journey ol::before { content: ""; position: absolute; left: 12%; right: 12%; top: 11px; height: 2px; background: linear-gradient(90deg, var(--accent) 66%, var(--line) 66%); }
  .dv-journey li { display: grid; justify-items: center; gap: 6px; position: relative; }
  .dv-journey li i { width: 24px; height: 24px; border-radius: 50%; background: var(--card); border: 2px solid var(--line); color: transparent; }
  .dv-journey li i svg { width: 12px; height: 12px; }
  .dv-journey li.d i { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
  .dv-journey li.now i { box-shadow: 0 0 0 5px var(--accent-soft); }
  .dv-journey li b { font-size: 12px; font-weight: 600; color: var(--soft); }
  .dv-journey li.now b { color: var(--ink); }
  .dv-fleet ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
  .dv-fleet li { display: flex; align-items: center; justify-content: space-between; background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; }
  .dv-fleet em { font-style: normal; font-size: 12px; font-weight: 600; border-radius: 999px; padding: 2px 9px; }
  .dv-fleet .g { color: var(--accent); background: var(--accent-soft); }
  .dv-fleet .a { color: var(--amber); background: var(--amber-soft); }
  .dv-fleet .r { color: #C8321E; background: rgba(200, 50, 30, .1); }
  .dv-pay { display: grid; grid-template-columns: auto 28px auto; align-items: center; gap: 6px; justify-content: center; }
  .dv-pay .src { display: grid; gap: 6px; }
  .dv-pay .src span { font-size: 12px; font-weight: 600; background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 5px 9px; }
  .dv-pay .arrow { height: 2px; background: var(--accent); position: relative; }
  .dv-pay .arrow::after { content: ""; position: absolute; right: -2px; top: -4px; border: 5px solid transparent; border-left-color: var(--accent); border-right: 0; }
  .dv-pay .tot { background: var(--card); border-radius: 12px; padding: 12px 14px; box-shadow: 0 0 0 1.5px var(--accent); display: grid; gap: 3px; }
  .dv-pay .tot b { font-size: 22px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
  .dv-pay .tot small { font-size: 11.5px; color: var(--accent); font-weight: 600; display: flex; gap: 4px; align-items: center; }
  .dv-pay i svg, .dv-fine i svg, .dv-books i svg { width: 11px; height: 11px; }
  .dv-fine { display: flex; align-items: center; justify-content: center; gap: 18px; }
  .dv-fine .ring { position: relative; width: 92px; height: 92px; flex: none; }
  .dv-fine .ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
  .dv-fine .ring circle { fill: none; stroke: var(--line); stroke-width: 3; }
  .dv-fine .ring circle.on { stroke: var(--amber); stroke-linecap: round; }
  .dv-fine .ring b { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; font-size: 26px; line-height: 1; }
  .dv-fine .ring b small { display: block; font-size: 10.5px; color: var(--soft); font-weight: 500; margin-top: 3px; }
  .dv-fine .res { display: grid; gap: 6px; }
  .dv-fine .res small { color: var(--soft); }
  .dv-fine .res b { display: flex; gap: 6px; align-items: center; color: var(--accent); font-size: 14px; }
  .dv-fine .res b i { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); }
  .dv-inbox { display: grid; justify-items: center; }
  .dv-inbox .ch { display: flex; gap: 6px; }
  .dv-inbox .ch span { display: inline-flex; gap: 5px; align-items: center; font-size: 12px; font-weight: 600; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; }
  .dv-inbox .ch svg { width: 13px; height: 13px; }
  .dv-inbox .lines { width: 60%; height: 22px; border: 2px solid var(--line); border-top: 0; border-radius: 0 0 14px 14px; position: relative; }
  .dv-inbox .lines::after { content: ""; position: absolute; left: 50%; bottom: -16px; width: 2px; height: 16px; background: var(--line); }
  .dv-inbox .th { margin-top: 16px; display: flex; gap: 10px; align-items: center; background: var(--card); border-radius: 12px; padding: 10px 14px; box-shadow: 0 0 0 1.5px var(--accent); }
  .dv-inbox .th i { width: 30px; height: 30px; border-radius: 50%; background: #16A34A; color: #fff; font-style: normal; font-weight: 700; }
  .dv-inbox .th b { display: block; font-size: 14px; } .dv-inbox .th small { color: var(--soft); font-size: 12px; }
  .dv-books { display: grid; gap: 10px; justify-items: center; }
  .dv-books .stmt { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; display: grid; gap: 2px; width: 100%; box-sizing: border-box; }
  .dv-books .stmt small { color: var(--soft); font-size: 12px; }
  .dv-books .stmt b { font-size: 24px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
  .dv-books .paid { justify-self: start; display: inline-flex; gap: 5px; align-items: center; font-size: 12px; font-weight: 700; color: var(--accent); background: var(--accent-soft); border-radius: 999px; padding: 2px 9px; }
  .dv-books .xr { display: inline-flex; gap: 6px; align-items: center; font-size: 12px; font-weight: 600; color: var(--soft); }
  .dv-books .xr svg { width: 18px; height: 18px; }

  /* ═══ /mobile — the staff app ═══════════════════════════════ */
  .platforms a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
  .m-hero { padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 6vw, 64px); overflow: hidden; }
  .m-hero .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
  .m-hero h1 { font-size: clamp(44px, 6.4vw, 80px); line-height: 1.0; letter-spacing: -.04em; margin: 0 0 18px; max-width: 10ch; }
  .m-stores { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
  .m-stores .os { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; background: var(--ink); color: var(--bg); border-radius: 12px; padding: 10px 16px; }
  .m-stores svg { width: 20px; height: 20px; }
  .m-note { margin: 12px 0 0; font-size: 14px; color: var(--faint); }
  .m-pair { display: flex; justify-content: center; gap: 20px; }
  .m-pair .mp-phone.b { transform: translateY(40px); }
  .m-sec .grid { align-items: center; }
  .m-vis { display: flex; justify-content: center; }
  .mp-phone { --pbg: #fff; --pfg: #111418; --pmut: #5f646b; --pln: #d9dde3; --psf: #f7f8fa;
    width: 280px; flex: none; border-radius: 44px; padding: 10px; background: #1a1b1f; box-shadow: var(--shadow), inset 0 0 0 2px #3a3b40; position: relative; }
  .mp-phone.dark { --pbg: #0f1115; --pfg: #f2f4f7; --pmut: #9aa2ad; --pln: #2a2f38; --psf: #171a20; }
  .mp-phone.sm { width: 240px; }
  .mp-notch { position: absolute; top: 20px; left: 50%; width: 88px; height: 24px; margin-left: -44px; border-radius: 20px; background: #000; z-index: 2; }
  .mp-scr { border-radius: 34px; overflow: hidden; background: var(--pbg); color: var(--pfg); aspect-ratio: 9 / 19.5; display: flex; flex-direction: column; font-size: 13px; position: relative; }
  .mp-scr > img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
  .ap-bar { display: flex; align-items: center; gap: 10px; padding: 52px 14px 10px; border-bottom: 1px solid var(--pln); }
  .ap-bar b { display: block; font-size: 14.5px; } .ap-bar .plate { font-size: 10px; padding: 0 5px; border-width: 1.5px; border-radius: 4px; }
  .ap-back { font-style: normal; font-size: 26px; line-height: 1; color: var(--pfg); }
  .ap-av { width: 32px; height: 32px; border-radius: 50%; background: #16A34A; color: #fff; display: grid; place-items: center; font-weight: 700; }
  .ap-body { flex: 1; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; justify-content: flex-end; background: var(--psf); }
  .ap-in, .ap-out { max-width: 84%; border-radius: 16px; padding: 8px 11px 16px; position: relative; line-height: 1.35; }
  .ap-in { align-self: flex-start; background: var(--pbg); border: 1px solid var(--pln); border-bottom-left-radius: 4px; }
  .ap-out { align-self: flex-end; background: #111418; color: #fff; border-bottom-right-radius: 4px; }
  .ap-in time, .ap-out time { position: absolute; right: 10px; bottom: 3px; font-size: 9.5px; opacity: .55; }
  .ap-voice { display: flex; align-items: center; gap: 8px; padding-bottom: 8px; }
  .ap-voice .pl { width: 24px; height: 24px; border-radius: 50%; background: #111418; color: #fff; display: grid; place-items: center; font-size: 10px; }
  .ap-voice .wave { width: 100px; height: 18px; background: repeating-linear-gradient(90deg, var(--pmut) 0 2px, transparent 2px 5px); -webkit-mask: linear-gradient(90deg,#000 55%, rgba(0,0,0,.35) 55%); opacity: .8; }
  .ap-voice small { font-size: 11px; color: var(--pmut); }
  .ap-compose { display: flex; align-items: center; gap: 8px; margin: 8px 10px 22px; border: 1px solid var(--pln); border-radius: 20px; padding: 8px 12px; color: var(--pmut); }
  .ap-compose span { flex: 1; } .ap-compose .mic { width: 22px; height: 22px; border-radius: 50%; background: #111418; }
  .ls { flex: 1; padding: 60px 12px 20px; background: radial-gradient(120% 70% at 30% 0%, #2b3a55, #0f1115 70%); color: #fff; display: flex; flex-direction: column; gap: 8px; }
  .ls-time { text-align: center; font-size: 56px; font-weight: 600; letter-spacing: -.03em; line-height: 1; }
  .ls-date { text-align: center; font-size: 13px; opacity: .75; margin-bottom: 22px; }
  .ls-n { display: grid; grid-template-columns: 26px 1fr auto; gap: 8px; align-items: start; background: rgba(255,255,255,.14); backdrop-filter: blur(14px); border-radius: 16px; padding: 10px; }
  .ls-app { width: 26px; height: 26px; border-radius: 7px; background: #0A7C63; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
  .ls-n b { font-size: 12.5px; } .ls-n p { margin: 2px 0 0; font-size: 12px; opacity: .85; line-height: 1.3; } .ls-n small { font-size: 10.5px; opacity: .6; }
  .ap-title { padding: 54px 16px 12px; font-size: 26px; font-weight: 700; letter-spacing: -.02em; }
  .ap-title.sm { font-size: 17px; padding-bottom: 10px; }
  .ap-card { margin: 0 12px; background: var(--psf); border-radius: 14px; }
  .ap-row { display: flex; gap: 10px; align-items: center; padding: 12px; }
  .ap-row + .ap-row { border-top: 1px solid var(--pln); }
  .ap-row b { display: block; font-size: 13px; } .ap-row small { display: block; font-size: 11px; color: var(--pmut); margin-top: 2px; line-height: 1.35; }
  .tg { width: 42px; height: 26px; border-radius: 13px; background: var(--pln); flex: none; position: relative; }
  .tg::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
  .tg.on { background: #34C759; } .tg.on::after { left: 19px; }
  .ap-moon { margin: auto 12px 24px; background: #111418; color: #fff; border-radius: 16px; padding: 14px; display: grid; grid-template-columns: 28px 1fr; gap: 0 8px; }
  .ap-moon span { grid-row: span 2; font-size: 22px; } .ap-moon b { font-size: 13.5px; } .ap-moon small { font-size: 11.5px; opacity: .7; }
  .cam { flex: 1; background: #000; padding: 52px 16px 10px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
  .cam-frame { border: 2px solid rgba(255,255,255,.85); border-radius: 14px; padding: 12px; }
  .doc { background: #FBFAF6; border-radius: 4px; padding: 12px; transform: rotate(-3deg); display: grid; gap: 6px; }
  .doc b { font-size: 8.5px; letter-spacing: .08em; color: #0B4E8A; } .doc i { height: 5px; background: #E4DFD3; border-radius: 2px; } .doc i.s { width: 60%; }
  .cam-read { color: #fff; font-size: 12.5px; display: flex; gap: 8px; align-items: center; justify-content: center; }
  .spin { width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; animation: spin 1s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }
  .cam-done { margin: 0 12px; display: flex; gap: 10px; align-items: center; background: var(--psf); border-radius: 14px; padding: 10px 12px; transform: translateY(-8px); }
  .cam-done i, .walk i, .job i { width: 20px; height: 20px; border-radius: 50%; flex: none; display: grid; place-items: center; }
  .cam-done i { background: #34C759; color: #fff; } .cam-done i svg, .walk i svg, .job i svg { width: 11px; height: 11px; }
  .cam-done b { font-size: 12.5px; display: block; } .cam-done small { font-size: 11px; color: var(--pmut); }
  .cam-bar { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px 24px; }
  .cam-bar span { color: var(--pmut); font-size: 13px; } .cam-bar b { background: var(--pfg); color: var(--pbg); border-radius: 20px; padding: 7px 14px; font-size: 13px; }
  .walk, .job { list-style: none; margin: 0 12px; padding: 0; background: var(--psf); border-radius: 14px; }
  .walk li, .job li { display: flex; gap: 10px; align-items: center; padding: 10px 12px; font-size: 13px; }
  .walk li + li, .job li + li { border-top: 1px solid var(--pln); }
  .walk li.d i, .job li.d i { background: #111418; color: #fff; }
  .walk li:not(.d) i, .job li:not(.d) i { border: 2px solid var(--pln); }
  .walk li.now { font-weight: 600; } .walk li.now i { border-color: #111418; }
  .job li.d { color: var(--pmut); text-decoration: line-through; }
  .cam-bar.light { margin-top: auto; }
  .hd-pair { margin-top: 44px; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
  .hd-web { width: min(440px, 100%); border-radius: 16px; overflow: hidden; background: var(--card); box-shadow: var(--shadow), 0 0 0 1px var(--line); }
  .hd-bar { display: flex; gap: 6px; padding: 10px 12px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
  .hd-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
  .hd-in { padding: 22px; display: grid; justify-items: center; gap: 6px; text-align: center; }
  .hd-in small { color: var(--soft); } .hd-in b { font-size: 20px; }
  .hd-in p { margin: 4px 0 0; color: var(--soft); font-size: 14px; }
  .qr { width: 140px; height: 140px; margin-top: 10px; border-radius: 8px; box-shadow: 0 0 0 1px var(--line); }
  .hd-arrow { font-size: 34px; color: var(--accent); font-weight: 700; }
  .soon { position: absolute; top: 58px; right: 12px; font-size: 10.5px; font-weight: 700; color: #B45309; background: #FFF6E0; border-radius: 999px; padding: 2px 8px; }
  .part { margin: 10px 12px 0; display: flex; gap: 10px; align-items: center; background: var(--psf); border-radius: 14px; padding: 10px 12px; }
  .part .ph { width: 40px; height: 40px; border-radius: 8px; background: linear-gradient(135deg, #8a8f98, #4b5058); flex: none; }
  .part b { display: block; font-size: 12.5px; } .part small { font-size: 11px; color: #B45309; }
  .clock { margin: auto 12px 24px; display: flex; justify-content: space-between; align-items: center; background: #111418; color: #fff; border-radius: 16px; padding: 12px 14px; font-variant-numeric: tabular-nums; }
  .clock b { background: #fff; color: #111418; border-radius: 12px; padding: 5px 12px; font-size: 13px; }
  @media (max-width: 900px) {
    .m-hero .grid { grid-template-columns: 1fr; }
    .mp-phone { width: 250px; } .m-pair .mp-phone { width: 180px; border-radius: 32px; padding: 7px; } .m-pair .mp-scr { border-radius: 26px; }
    .m-pair .mp-notch { top: 14px; width: 60px; height: 17px; margin-left: -30px; }
    .hd-arrow { transform: rotate(90deg); }
  }
  @media (prefers-reduced-motion: reduce) { .spin { animation: none; } }
  .ap-row > div { flex: 1; min-width: 0; }

  /* /mobile — screens drawn from baze-mobile's own tokens (src/shared/chat/tokens.ts) */
  .wa-bar { display: flex; align-items: center; gap: 4px; padding: 50px 12px 8px 4px; background: #fff; border-bottom: 2px solid #16a34a; color: #111418; }
  .wa-back { width: 30px; height: 30px; color: #16a34a; flex: none; } .wa-back svg { width: 26px; height: 26px; }
  .wa-mid { flex: 1; min-width: 0; } .wa-tr { display: flex; align-items: center; gap: 7px; }
  .wa-tr b { font-size: 16px; font-weight: 600; letter-spacing: -.2px; } .wa-tr .plate { font-size: 10px; padding: 0 5px; border-width: 1.5px; border-radius: 4px; }
  .wa-mid small { display: block; font-size: 11.5px; color: #5f646b; margin-top: 1px; }
  .wa-info { width: 22px; height: 22px; color: #5f646b; } .wa-info svg { width: 22px; height: 22px; }
  .wa-ground { flex: 1; background: #efeae2; padding: 10px 10px; display: flex; flex-direction: column; gap: 6px; justify-content: flex-end; color: #111b21; font-size: 13.5px; line-height: 1.35; }
  .wa-day { align-self: center; background: #fff; color: #54656f; font-size: 11.5px; border-radius: 7.5px; padding: 4px 11px; box-shadow: 0 1px .5px rgba(11,20,26,.13); margin-bottom: 2px; }
  .wa-b { max-width: 85%; border-radius: 7.5px; padding: 6px 9px; box-shadow: 0 1px .5px rgba(11,20,26,.13); }
  .wa-b.wa-i { align-self: flex-start; background: #fff; } .wa-b.wa-o { align-self: flex-end; background: #d9fdd3; }
  .wa-s { display: block; font-size: 11.5px; font-weight: 700; color: #b4185d; margin-bottom: 1px; }
  .wa-m { display: flex; justify-content: flex-end; align-items: center; gap: 3px; font-size: 10.5px; color: #667781; margin-top: 2px; }
  .wa-m .tk { width: 16px; height: 11px; color: #1d7fc4; }
  .wa-voice { display: flex; align-items: center; gap: 8px; }
  .wa-voice .pl { width: 26px; height: 26px; border-radius: 50%; background: #16a34a; color: #fff; display: grid; place-items: center; font-size: 10px; flex: none; }
  .wa-voice .wave { width: 110px; height: 18px; background: repeating-linear-gradient(90deg, #667781 0 2px, transparent 2px 5px); opacity: .7; }
  .wa-voice .wa-m { margin: 0; }
  .wa-note { align-self: stretch; background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; padding: 7px 10px; }
  .wa-nl { font-size: 9.5px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: #b45309; margin-bottom: 3px; }
  .wa-nm { font-size: 10.5px; color: #667781; margin-top: 3px; }
  .wa-comp { background: #fff; border-top: 1px solid #d9dde3; padding: 0 0 22px; color: #111418; }
  .wa-tabs { display: flex; gap: 2px; padding: 0 10px; }
  .wa-tabs span { font-size: 12px; font-weight: 600; color: #5f646b; padding: 8px 11px; border-bottom: 2px solid transparent; }
  .wa-tabs span.on { color: #111418; border-bottom-color: #16a34a; }
  .wa-row { display: flex; align-items: center; gap: 9px; padding: 8px 12px 0; }
  .wa-clip { width: 34px; height: 34px; border-radius: 50%; background: #f7f8fa; color: #5f646b; display: grid; place-items: center; opacity: .6; flex: none; } .wa-clip svg { width: 19px; height: 19px; }
  .wa-in { flex: 1; background: #f7f8fa; border-radius: 17px; padding: 8px 13px; color: #5f646b; font-size: 14px; }
  .wa-mic { width: 38px; height: 38px; border-radius: 50%; background: #16a34a; display: grid; place-items: center; flex: none; } .wa-mic svg { width: 19px; height: 19px; }
  svg.ls-app { width: 26px; height: 26px; border-radius: 7px; }
  .ac-page { flex: 1; padding: 52px 14px 16px; background: #fff; color: #111418; }
  .ac-title { font-size: 25px; font-weight: 700; margin-bottom: 16px; }
  .ac-card { border: 1px solid #d9dde3; border-radius: 14px; background: #f7f8fa; padding: 2px 13px; }
  .ac-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 12px; }
  .ac-row + .ac-row { border-top: 1px solid #d9dde3; }
  .ac-row span { width: 64px; color: #5f646b; } .ac-row b { flex: 1; text-align: right; font-size: 13px; font-weight: 500; }
  .ac-push { margin-top: 14px; padding: 12px 13px; }
  .ac-ph { display: flex; align-items: center; gap: 6px; } .ac-ph svg { width: 16px; height: 16px; } .ac-ph b { font-size: 14px; }
  .ac-push p { margin: 5px 0 0; font-size: 12px; color: #5f646b; }
  .ac-pill { display: inline-block; margin-top: 10px; border: 1px solid #d9dde3; border-radius: 999px; padding: 5px 11px; font-size: 11.5px; font-weight: 600; }
  .ac-mute { display: flex; align-items: center; gap: 10px; margin-top: 12px; padding-top: 11px; border-top: 1px solid #d9dde3; }
  .ac-mute div { flex: 1; } .ac-mute b { display: block; font-size: 13px; font-weight: 500; } .ac-mute small { display: block; font-size: 11px; color: #5f646b; margin-top: 2px; line-height: 1.4; }

  /* ── /mobile: animated camera (two rego papers) ── mirrors PaperCaptureScreen */
  .pc { flex: 1; background: #000; display: flex; flex-direction: column; color: #fff; position: relative; }
  .pc-strip { display: flex; gap: 9px; padding: 50px 14px 0; height: 150px; box-sizing: border-box; flex: none; }
  .pc-card { width: 58px; opacity: 0; transform: translateY(-6px); transition: opacity .3s, transform .6s cubic-bezier(.5,0,.3,1); display: grid; gap: 4px; }
  .pc-card.on { opacity: 1; transform: none; }
  .pc-card.gone { opacity: 0; transform: translate(170px, 500px) scale(.3); }
  .pc-card small { max-width: 64px; }
  .pc-pic { width: 58px; height: 72px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,.22); background: #FBFAF6 linear-gradient(transparent 14px, #E4DFD3 14px 17px, transparent 17px 23px, #E4DFD3 23px 26px, transparent 26px 32px, #E4DFD3 32px 35px, transparent 35px); position: relative; transition: border-color .3s; }
  .pc-card.rd .pc-pic::after { content: ""; position: absolute; inset: 22px 16px; border-radius: 50%; border: 2px solid rgba(0,0,0,.2); border-top-color: #111; animation: spin 1s linear infinite; }
  .pc-card.good .pc-pic { border-color: #34d399; }
  .pc-card small { font-size: 8.5px; line-height: 11px; text-align: center; color: rgba(255,255,255,.6); }
  .pc-card.good small { color: #6ee7b7; }
  .pc-chip { align-self: center; margin-top: 6px; font-size: 12px; font-weight: 600; background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 4px 12px; }
  .pc-view { position: relative; flex: 1; margin: 10px 14px 0; }
  .pc-sheet { position: absolute; inset: 8px 4px auto; opacity: 0; transform: translateY(40px) rotate(-3deg); transition: opacity .45s, transform .6s cubic-bezier(.2,.7,.2,1); }
  .pc-sheet.on { opacity: 1; transform: rotate(-2deg); }
  .pc-sheet.out { opacity: 0; transform: translateX(-120%) rotate(-8deg); }
  .pc-doc { background: #FBFAF6; color: #222; border-radius: 4px; padding: 12px; display: grid; gap: 6px; box-shadow: 0 10px 30px rgba(0,0,0,.5); }
  .pc-doc b { font-size: 8px; letter-spacing: .08em; color: #0B4E8A; }
  .pc-doc dl { display: grid; grid-template-columns: auto 1fr; gap: 3px 10px; margin: 0; font-size: 10px; }
  .pc-doc dt { color: #888; } .pc-doc dd { margin: 0; font-family: ui-monospace, Menlo, monospace; font-weight: 700; }
  .pc-doc i { height: 5px; background: #E4DFD3; border-radius: 2px; } .pc-doc i.s { width: 60%; }
  .pc-flash { position: absolute; inset: -200px -20px; background: #fff; opacity: 0; pointer-events: none; }
  .pc-flash.on { animation: flash .35s ease-out; }
  @keyframes flash { 0% { opacity: .85; } 100% { opacity: 0; } }
  .pc-hint { text-align: center; font-size: 11.5px; color: rgba(255,255,255,.85); margin: 0 26px 8px; transition: opacity .3s; }
  .pc-hint.hide { opacity: 0; }
  .pc-bar { display: flex; align-items: center; justify-content: space-between; padding: 0 20px 20px; }
  .pc-round { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.15); display: grid; place-items: center; } .pc-round svg { width: 18px; height: 18px; }
  .pc-sc { display: grid; justify-items: center; gap: 6px; } .pc-sc small { font-size: 11px; font-weight: 600; }
  .pc-shutter { width: 64px; height: 64px; border-radius: 50%; border: 4px solid #fff; background: rgba(255,255,255,.2); display: grid; place-items: center; box-sizing: border-box; }
  .pc-shutter i { width: 46px; height: 46px; border-radius: 50%; background: #fff; transition: transform .12s; }
  .pc-shutter.press i { transform: scale(.82); }
  .pc-thumb { width: 44px; height: 44px; border-radius: 11px; border: 2px solid rgba(255,255,255,.45); background: rgba(255,255,255,.12); position: relative; }
  .pc-badge { position: absolute; top: -8px; right: -8px; min-width: 20px; height: 20px; border-radius: 10px; background: #e5e7eb; color: #111; font-size: 11px; font-weight: 800; display: grid; place-items: center; transition: transform .2s; }
  .pc-badge.zero { opacity: 0; } .pc-badge.pop { transform: scale(1.3); }

  /* ── /mobile: desk sends the photo walk to a phone ── mirrors SendWalkToPhone.vue + NotifyStaffOfHandover */
  .hd-in2 { padding: 22px 24px 20px; display: grid; gap: 4px; position: relative; min-height: 290px; align-content: start; }
  .hd-in2 small { color: var(--soft); display: flex; align-items: center; gap: 6px; } .hd-in2 small .plate { font-size: 10px; padding: 0 5px; border-width: 1.5px; border-radius: 4px; }
  .hd-in2 > b { font-size: 20px; margin-top: 4px; } .hd-in2 > p { margin: 0; color: var(--soft); font-size: 14px; }
  .hd-btns { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
  .hd-send, .hd-here { font-size: 13px; font-weight: 600; border-radius: 9px; padding: 8px 12px; position: relative; }
  .hd-send { background: var(--ink); color: var(--bg); transition: transform .12s; } .hd-send.press { transform: scale(.96); }
  .hd-here { border: 1px solid var(--line); color: var(--soft); }
  .hd-cursor { position: absolute; width: 18px; height: 18px; right: -6px; bottom: -12px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 2l9.5 6.2-4.1.9 2.3 4.4-1.7.9-2.3-4.4L3.8 13z' fill='%23111' stroke='%23fff'/%3E%3C/svg%3E"); transition: transform .5s cubic-bezier(.3,.7,.3,1); }
  .hd-cursor.jo { transform: translate(10px, 62px); }
  .hd-menu { position: absolute; left: 24px; top: 150px; width: 250px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 8px; display: grid; gap: 2px; opacity: 0; transform: translateY(-6px); transition: opacity .2s, transform .2s; pointer-events: none; }
  .hd-menu.on { opacity: 1; transform: none; }
  .hd-menu small { font-size: 11px; padding: 4px 6px; }
  .hd-p { display: flex; align-items: center; gap: 8px; padding: 7px 6px; border-radius: 8px; font-size: 13.5px; }
  .hd-p i { width: 24px; height: 24px; border-radius: 50%; background: #f59e0b; color: #fff; font-style: normal; font-size: 10px; font-weight: 700; display: grid; place-items: center; }
  .hd-p.hl { background: var(--bg-2); }
  .hd-sent { margin-top: 14px; display: flex; gap: 8px; align-items: center; font-size: 14px; font-weight: 600; color: var(--accent); opacity: 0; transition: opacity .3s; }
  .hd-sent.on { opacity: 1; }
  .hd-sent i { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; } .hd-sent svg { width: 11px; height: 11px; }
  .hd-or { margin-top: auto; padding-top: 16px; font-size: 12px; color: var(--faint); }
  .hd-scr { position: relative; }
  .hd-lock { position: absolute; inset: 0; padding: 56px 10px 20px; background: radial-gradient(120% 70% at 30% 0%, #2b3a55, #0f1115 70%); color: #fff; display: flex; flex-direction: column; gap: 8px; transition: opacity .35s; }
  .hd-lock .ls-time { font-size: 48px; } .hd-lock.hide { opacity: 0; }
  .hd-push { opacity: 0; transform: translateY(-24px) scale(.96); transition: opacity .35s, transform .45s cubic-bezier(.2,.8,.2,1.1); }
  .hd-push.on { opacity: 1; transform: none; } .hd-push.tap { transform: scale(.96); }
  .hd-walk { flex: 1; display: flex; flex-direction: column; background: #fff; color: #111418; }
  .hd-walk .walk li { transition: color .2s; }
  .hd-walk .walk li i { background: transparent; border: 2px solid #d9dde3; color: transparent; transition: background .2s, border-color .2s; }
  .hd-walk .walk li.d i { background: #111418; border-color: #111418; color: #fff; }
  .hd-walk .walk li.now { font-weight: 600; } .hd-walk .walk li.now i { border-color: #111418; }

  /* ── /mobile: the workshop, as a roadmap band ── */
  .ws { background: var(--night); color: var(--night-ink); padding: clamp(80px, 10vw, 130px) 0; }
  .ws .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
  .ws h2 { font-size: clamp(34px, 5vw, 58px); max-width: 14ch; margin: 18px 0; }
  .ws .lead { color: var(--night-soft); max-width: 46ch; }
  .ws-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .02em; color: #1F1405; background: #FBBF24; border-radius: 999px; padding: 6px 14px; }
  .ws-tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #1F1405; animation: blink 1.4s steps(1) infinite; }
  .ws-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 16px; }
  .ws-list li { border-left: 2px solid #FBBF24; padding-left: 14px; display: grid; gap: 2px; }
  .ws-list b { font-size: 16px; } .ws-list span { color: var(--night-soft); font-size: 14.5px; }
  .ws-note { margin: 26px 0 0; font-size: 14px; color: #FBBF24; font-weight: 600; }
  .ws .job li { transition: color .3s; }
  .ws .job li i { background: transparent; border: 2px solid #d9dde3; color: transparent; transition: background .25s, border-color .25s; }
  .ws .job li.d { color: #5f646b; text-decoration: line-through; }
  .ws .job li.d i { background: #111418; border-color: #111418; color: #fff; }
  .ws-appr { transition: color .3s; } .ws-appr.ok { color: #15803d !important; }
  .ws .part .ph { transition: box-shadow .3s; } .ws .part .ph.snap { box-shadow: 0 0 0 3px #FBBF24; }
  @media (max-width: 900px) { .ws .grid { grid-template-columns: 1fr; } .hd-menu { top: 140px; } }
  #wsclock { font-style: normal; font-variant-numeric: tabular-nums; }

  /* first heading on single-section pages is the page's h1 */
  .night h1 { font-size: clamp(36px, 4.4vw, 56px); max-width: 13ch; }
  .places h1 { font-size: clamp(34px, 5vw, 58px); max-width: 14ch; margin-bottom: 20px; }
  .local h1 { font-size: clamp(34px, 5vw, 58px); max-width: 12ch; }

  /* nav: sign in */
  .nav-signin { font-size: 14px; color: var(--soft); text-decoration: none; margin-left: auto; margin-right: 16px; }
  .nav-signin:hover { color: var(--ink); }
  .nav > .wrap > ul { margin-right: auto; }
  @media (max-width: 760px) { .nav-signin { margin-right: 10px; } }

  /* /sign-in */
  .si { min-height: calc(100svh - 56px - 220px); display: grid; place-content: center; justify-items: center; gap: 18px; padding: clamp(48px, 9vw, 110px) 16px; }
  .si-card { width: min(420px, 100%); background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow), 0 0 0 1px var(--line); padding: 34px 30px 28px; }
  .si-card h1 { font-size: clamp(26px, 3.4vw, 32px); letter-spacing: -.03em; margin: 0 0 8px; }
  .si-lead { margin: 0 0 24px; color: var(--soft); }
  .si-form { display: grid; gap: 10px; }
  .si-label { font-size: 13px; font-weight: 600; }
  .si-field { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); overflow: hidden; transition: border-color .15s, box-shadow .15s; }
  .si-field:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
  .si-field input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font: inherit; font-size: 16px; padding: 12px 4px 12px 14px; color: var(--ink); }
  .si-field span { padding-right: 14px; color: var(--soft); font-size: 15px; white-space: nowrap; }
  .si-err { margin: 0; color: #C8321E; font-size: 13.5px; }
  .si-go { margin-top: 8px; justify-content: center; }
  .si-help { margin: 18px 0 0; font-size: 13px; color: var(--faint); }
  .si-new { margin: 0; font-size: 14px; color: var(--soft); } .si-new a { color: var(--accent); font-weight: 600; }

  /* ── mega menu v2 (Xero-style): departments with icons, more, the app ── */
  .mega { padding: 30px 0 34px; }
  .mx { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, .8fr) minmax(0, 1fr); gap: 40px; align-items: start; }
  .mx-lab { margin: 0 0 14px; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
  .mx-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; }
  .mx-dept { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: start; padding: 10px; margin: 0 -10px; border-radius: 12px; text-decoration: none; color: var(--ink); transition: background .15s; }
  .mx-dept:hover, .mx-dept:focus-visible { background: var(--bg-2); outline: none; }
  .mx-ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; color: var(--accent); background: var(--accent-soft); }
  .mx-ic svg { width: 21px; height: 21px; }
  .mx-dept b { display: block; font-size: 15px; font-weight: 600; margin-top: 1px; }
  .mx-dept em { display: block; font-style: normal; font-size: 13.5px; color: var(--soft); line-height: 1.4; margin-top: 2px; }
  .mx-more { display: grid; gap: 12px; align-content: start; }
  .mx-more a { color: var(--ink); text-decoration: none; font-size: 14.5px; }
  .mx-more a:hover { color: var(--accent); }
  .mx-more .mx-all { color: var(--accent); font-weight: 600; margin-top: 6px; }
  .mx-app { position: relative; overflow: hidden; display: grid; gap: 8px; align-content: start; min-height: 250px; padding: 24px 24px 0; border-radius: 18px; background: #111418; color: #fff; text-decoration: none; }
  .mx-app-ic { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.1); display: grid; place-items: center; } .mx-app-ic svg { width: 19px; height: 19px; }
  .mx-app b { font-size: 19px; letter-spacing: -.01em; margin-top: 4px; }
  .mx-app > span:not(.mx-app-ic) { font-size: 13.5px; color: rgba(255,255,255,.72); line-height: 1.45; max-width: 26ch; }
  .mx-app em { font-style: normal; font-weight: 600; font-size: 14px; color: #6ee7b7; }
  .mx-app img { position: absolute; right: 18px; bottom: -70px; width: 108px; border-radius: 16px; border: 4px solid #2a2d33; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
  .mx-app:hover img { transform: translateY(-8px); }
  @media (max-width: 1100px) { .mx { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); } .mx-app { grid-column: 1 / -1; min-height: 0; padding-bottom: 22px; } .mx-app img { display: none; } }
  @media (max-width: 900px) {
    .mx { grid-template-columns: 1fr; gap: 26px; }
    .mx-grid { grid-template-columns: 1fr; }
    .mx-app img { display: none; }
  }
  .mx-app > b, .mx-app > span:not(.mx-app-ic), .mx-app > em { max-width: calc(100% - 120px); }
  .nav .btn, .nav-signin { white-space: nowrap; }
  .mx-more .mx-signin { display: none; }
  @media (max-width: 560px) { .nav-signin { display: none; } .mx-more .mx-signin { display: block; font-weight: 600; } .nav .btn { padding: 8px 14px; } }
  @media (max-width: 1100px) { .mx-app > b, .mx-app > span:not(.mx-app-ic), .mx-app > em { max-width: none; } }
  :root[data-theme="dark"] .mx-app { box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); background: #16181d; }
  @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .mx-app { box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); background: #16181d; } }

  /* ── /mobile paperwork: a desk with two rego papers; the phone shoots each ── */
  .dk { position: relative; width: min(540px, 100%); aspect-ratio: 1 / 1.02; border-radius: 26px; margin: 30px auto 10px;
    background: radial-gradient(120% 90% at 20% 10%, #e9dcc6, #d6c19f 60%, #c9b08a), #d6c19f;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06), var(--shadow); }
  .dk::before { content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: .35;
    background: repeating-linear-gradient(8deg, rgba(120,90,50,.08) 0 2px, transparent 2px 9px); }
  .dk-paper { position: absolute; width: 50%; background: #FBFAF6; color: #222; border-radius: 4px; padding: 3.2% 3.4%; display: grid; gap: 6px;
    box-shadow: 0 10px 20px -8px rgba(60,40,10,.45), 0 1px 0 rgba(0,0,0,.05); font-size: clamp(8px, 1.9vw, 11px); }
  .dk-paper[data-n="1"] { left: 5%; top: 9%; transform: rotate(-4deg); }
  .dk-paper[data-n="2"] { left: 46%; top: 50%; transform: rotate(3deg); }
  .dk-paper b, .dk-live b { font-size: .78em; letter-spacing: .08em; color: #0B4E8A; }
  .dk-paper dl, .dk-live dl { display: grid; grid-template-columns: auto 1fr; gap: 3px 10px; margin: 0; }
  .dk-paper dt, .dk-live dt { color: #888; } .dk-paper dd, .dk-live dd { margin: 0; font-family: ui-monospace, Menlo, monospace; font-weight: 700; }
  .dk-paper > i, .dk-live > i { height: 5px; background: #E4DFD3; border-radius: 2px; } .dk-paper > i.s, .dk-live > i.s { width: 60%; }
  .dk-link { position: absolute; left: 6%; bottom: -22px; display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 12px; padding: 7px 12px 7px 8px;
    box-shadow: 0 10px 24px -8px rgba(10,124,99,.45), 0 0 0 2px #0A7C63; opacity: 0; transform: translateY(8px) scale(.9); transition: opacity .3s, transform .45s cubic-bezier(.2,.8,.2,1.25); z-index: 2; white-space: nowrap; }
  .dk-link.on { opacity: 1; transform: none; }
  .dk-link i { width: 22px; height: 22px; border-radius: 50%; background: #0A7C63; color: #fff; display: grid; place-items: center; flex: none; } .dk-link i svg { width: 12px; height: 12px; }
  .dk-link b { display: block; color: #0A7C63; font-size: 13px; letter-spacing: 0; } .dk-link small { display: block; font-size: 11px; color: #5f646b; font-family: inherit; }
  .dk-phone { position: absolute; width: 26%; aspect-ratio: 9 / 18.5; left: 6%; top: 43%; z-index: 3; border-radius: 22px; padding: 5px; background: #1a1b1f;
    box-shadow: 0 30px 50px -18px rgba(0,0,0,.6), inset 0 0 0 1.5px #3a3b40; transition: left 1s cubic-bezier(.5,0,.25,1), top 1s cubic-bezier(.5,0,.25,1), transform 1s; transform: rotate(-2deg); }
  .dk-phone.p1 { left: 17%; top: -2%; transform: rotate(-4deg); }
  .dk-phone.p2 { left: 58%; top: 37%; transform: rotate(3deg); }
  .dk-scr { height: 100%; border-radius: 18px; background: #000; overflow: hidden; display: flex; flex-direction: column; color: #fff; }
  .dk-strip { display: flex; align-items: center; gap: 4px; padding: 16% 8% 0; min-height: 22%; box-sizing: border-box; }
  .dk-card { width: 18px; height: 23px; border-radius: 3px; background: #FBFAF6; border: 1.5px solid rgba(255,255,255,.3); opacity: 0; transition: opacity .3s, border-color .3s; }
  .dk-card.on { opacity: 1; } .dk-card.good { border-color: #34d399; }
  .dk-state { font-size: 8px; color: #6ee7b7; line-height: 1.2; margin-left: 2px; }
  .dk-chip { align-self: center; font-size: 8px; font-weight: 600; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 2px 7px; }
  .dk-view { position: relative; flex: 1; margin: 6px 7%; display: grid; place-items: center; }
  .dk-live { position: absolute; width: 100%; background: #FBFAF6; color: #222; border-radius: 3px; padding: 6px; display: grid; gap: 3px; font-size: 4.8px; opacity: 0; transition: opacity .35s; box-sizing: border-box; }
  .dk-live dl { gap: 1px 5px; } .dk-live > i { height: 3px; }
  .dk-live.on { opacity: 1; }
  .dk-flash { position: absolute; inset: -60% -20%; background: #fff; opacity: 0; pointer-events: none; }
  .dk-flash.on { animation: flash .35s ease-out; }
  .dk-bar { display: flex; align-items: center; justify-content: center; position: relative; padding: 4% 0 12%; }
  .dk-shutter { width: 30px; height: 30px; border-radius: 50%; border: 2.5px solid #fff; display: grid; place-items: center; box-sizing: border-box; }
  .dk-shutter i { width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .12s; } .dk-shutter.press i { transform: scale(.8); }
  .dk-thumb { position: absolute; right: 14%; width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid rgba(255,255,255,.45); }
  .dk-badge { position: absolute; top: -7px; right: -7px; min-width: 13px; height: 13px; border-radius: 7px; background: #e5e7eb; color: #111; font-size: 8px; display: grid; place-items: center; transition: transform .2s; }
  .dk-badge.zero { opacity: 0; } .dk-badge.pop { transform: scale(1.35); }
  @media (max-width: 520px) { .dk-link { padding: 5px 9px 5px 6px; } .dk-link b { font-size: 11.5px; } .dk-link small { font-size: 10px; } }
  .dk-paper[data-n="2"] .dk-link { left: auto; right: 4%; }
  @media (max-width: 520px) { .dk-link small { display: none; } .dk-phone { width: 30%; } }
  /* the result sits above everything, the phone included */
  .dk-link { z-index: 5; left: auto; bottom: auto; }
  .dk-link[data-n="1"] { left: 8%; top: 27%; rotate: -4deg; }
  .dk-link[data-n="2"] { right: 5%; left: auto; top: 68%; rotate: 3deg; }
  /* A4 papers (1 : 1.414), portrait */
  .dk { aspect-ratio: 1 / 1.15; }
  .dk-paper { width: 40%; aspect-ratio: 1 / 1.414; box-sizing: border-box; padding: 4.5% 4%; gap: 5px; align-content: start; font-size: clamp(6.5px, 1.45vw, 9px); }
  .dk-paper[data-n="1"] { left: 5%; top: 5%; transform: rotate(-3deg); }
  .dk-paper[data-n="2"] { left: 53%; top: 40%; transform: rotate(2.5deg); }
  .a4-top { display: grid; gap: 1px; padding-bottom: 6px; margin-bottom: 4px; border-bottom: 1px solid #E4DFD3; }
  .a4-top b { color: #0B4E8A; letter-spacing: .08em; font-size: .85em; } .a4-top span { font-weight: 700; font-size: 1.15em; color: #222; }
  .dk-paper > i.xs, .dk-live > i.xs { width: 35%; }
  .dk-paper dl { margin-bottom: 6px; }
  .dk-phone { width: 22%; left: 8%; top: 58%; }
  .dk-phone.p1 { left: 14%; top: 10%; transform: rotate(-3deg); }
  .dk-phone.p2 { left: 62%; top: 45%; transform: rotate(2.5deg); }
  .dk-live { width: 78%; aspect-ratio: 1 / 1.414; padding: 8% 7%; gap: 2px; align-content: start; font-size: 3.6px; }
  .dk-live .a4-top { padding-bottom: 2px; margin-bottom: 1px; }
  .dk-link[data-n="1"] { left: 6%; top: 44%; }
  .dk-link[data-n="2"] { right: 3%; top: 79%; }
  /* papers are the app's own RegoPaperIcon (baze-mobile src/features/home/PaperIcon.tsx), at A4 */
  .dk-paper, .dk-live { padding: 0; overflow: hidden; display: block; border-radius: 3px; }
  .rego-svg { display: block; width: 100%; height: 100%; }
  .dk-live { width: 72%; }
  .hero-eyebrow { text-align: center; font-size: 15px; margin-bottom: 14px; color: var(--soft); }
  .hero-eyebrow b { color: var(--accent); font-weight: 700; }

  /* ── home: the AI badge ── */
  .ai-badge { display: inline-flex; align-items: center; gap: 7px; margin: 4px auto 14px; padding: 6px 14px 6px 10px; border-radius: 999px; font-size: 14px; font-weight: 700; letter-spacing: .01em; color: var(--ink);
    background: linear-gradient(var(--bg), var(--bg)) padding-box, linear-gradient(100deg, var(--accent), var(--accent-2), #a78bfa, var(--accent)) border-box; border: 1.5px solid transparent; background-size: 100% 100%, 300% 100%; animation: aiEdge 6s linear infinite;
    box-shadow: 0 6px 24px -10px color-mix(in srgb, var(--accent-2) 60%, transparent); }
  .ai-badge .ai-ic { width: 18px; height: 18px; color: var(--accent); display: grid; place-items: center; }
  .ai-badge .ai-ic svg { width: 18px; height: 18px; stroke-width: 2; }
  @keyframes aiEdge { to { background-position: 0 0, 300% 0; } }
  .hero .ai-badge + .sub { margin-top: 0; }
  .hero > .wrap { display: flex; flex-direction: column; align-items: center; }
  @media (prefers-reduced-motion: reduce) { .ai-badge { animation: none; } }

  /* ── /mobile: fine notices — scan, it lands linked, nominate ── */
  .fn-head { max-width: 640px; }
  .fn-head h2 { font-size: clamp(34px, 5vw, 58px); max-width: 16ch; margin-bottom: 18px; }
  .fn { margin-top: 44px; display: grid; grid-template-columns: 200px 40px minmax(0, 500px); gap: 16px; align-items: center; justify-content: center; }
  .fn-phone { aspect-ratio: 9 / 18.5; border-radius: 30px; padding: 7px; background: #1a1b1f; box-shadow: var(--shadow), inset 0 0 0 1.5px #3a3b40; }
  .fn-scr { height: 100%; border-radius: 24px; background: #000; display: flex; flex-direction: column; overflow: hidden; padding-top: 34px; color: #fff; }
  .fn-view { position: relative; flex: 1; display: grid; place-items: center; }
  .fn-paper { width: 70%; aspect-ratio: 1 / 1.414; border-radius: 3px; overflow: hidden; transform: rotate(-2deg); transition: transform .5s, opacity .5s; }
  .fn-paper.gone { transform: translateX(160%) rotate(8deg) scale(.6); opacity: 0; }
  .fn .dk-chip { font-size: 10px; } .fn .dk-shutter { width: 42px; height: 42px; } .fn .dk-shutter i { width: 30px; height: 30px; }
  .fn-arrow { font-size: 28px; color: var(--accent); font-weight: 700; text-align: center; opacity: .25; transition: opacity .3s; } .fn-arrow.on { opacity: 1; }
  .fn-card { background: var(--card); border-radius: 18px; box-shadow: var(--shadow), 0 0 0 1px var(--line); padding: 18px; display: grid; gap: 12px; opacity: .25; transform: translateY(8px); transition: opacity .4s, transform .4s; }
  .fn-card.on { opacity: 1; transform: none; }
  .fn-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; } .fn-top b { font-size: 16px; }
  .fn-new { font-size: 11px; font-weight: 800; color: #fff; background: #d7153a; border-radius: 6px; padding: 2px 7px; letter-spacing: .04em; text-transform: uppercase; }
  .fn-days { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--amber); background: var(--amber-soft); border-radius: 999px; padding: 3px 10px; }
  .fn-notice { border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
  .fn-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 8px; }
  .fn-row small { font-size: 11px; font-weight: 700; letter-spacing: .06em; color: #d7153a; } .fn-amt { font-size: 22px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
  .fn-notice dl { display: grid; grid-template-columns: 70px 1fr; gap: 5px 10px; margin: 0; font-size: 13.5px; } .fn-notice dt { color: var(--soft); } .fn-notice dd { margin: 0; font-weight: 500; }
  .fn-notice .plate { font-size: 11px; padding: 0 6px; border-width: 1.5px; border-radius: 4px; }
  .fn-driver { display: flex; align-items: center; gap: 12px; border-radius: 12px; padding: 12px 14px; background: var(--bg-2); opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .4s, box-shadow .4s; }
  .fn-driver.on { opacity: 1; transform: none; box-shadow: 0 0 0 2px var(--accent); }
  .fn-av { width: 38px; height: 38px; border-radius: 50%; background: #0369a1; color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px; flex: none; }
  .fn-driver > div { flex: 1; min-width: 0; } .fn-driver b { display: block; font-size: 14.5px; } .fn-driver small { display: block; font-size: 12px; color: var(--soft); }
  .fn-linked { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--accent); }
  .fn-linked i { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; } .fn-linked svg { width: 10px; height: 10px; }
  .fn-fee { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; color: var(--soft); opacity: 0; transition: opacity .4s; } .fn-fee.on { opacity: 1; } .fn-fee b { color: var(--ink); font-weight: 600; }
  .fn-actions { display: flex; gap: 8px; flex-wrap: wrap; }
  .fn-nom, .fn-dl { position: relative; font-size: 13.5px; font-weight: 600; border-radius: 10px; padding: 9px 14px; }
  .fn-nom { background: var(--ink); color: var(--bg); transition: transform .12s; } .fn-nom.press { transform: scale(.96); }
  .fn-nom .hd-cursor { opacity: 0; transition: opacity .3s; } .fn-nom .hd-cursor.on { opacity: 1; }
  .fn-dl { border: 1px solid var(--line); color: var(--soft); }
  .fn-done { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--accent); opacity: 0; transform: translateY(4px); transition: opacity .35s, transform .35s; }
  .fn-done.on { opacity: 1; transform: none; }
  .fn-done i { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; } .fn-done svg { width: 12px; height: 12px; }
  .fn-points { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  @media (max-width: 860px) {
    .fn { grid-template-columns: 1fr; justify-items: center; }
    .fn-phone { width: 180px; } .fn-arrow { transform: rotate(90deg); } .fn-card { width: 100%; box-sizing: border-box; }
    .fn-points { grid-template-columns: 1fr; }
  }
  /* simplified fine card: fine → driver → nominate */
  .fn-card { gap: 14px; padding: 20px; }
  .fn-top { justify-content: space-between; }
  .fn-new { font-size: 12px; text-transform: none; letter-spacing: 0; padding: 3px 9px; }
  .fn-fine { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
  .fn-fine > div { display: flex; align-items: center; gap: 10px; } .fn-fine > div b { font-size: 17px; }
  .fn-fine .plate { font-size: 11.5px; padding: 0 6px; border-width: 1.5px; border-radius: 4px; }
  .fn-fine .fn-amt { font-size: 24px; }
  .fn-driver small { font-size: 13px; }
  .fn-actions { align-items: center; gap: 14px; }
  .fn-nom { font-size: 15px; padding: 10px 22px; }
  .fn-done { font-size: 16px; }
  .fn-fine .fn-new { font-size: 11.5px; }
  .fn-fee2 { display: flex; align-items: center; gap: 14px; border-radius: 12px; padding: 12px 16px; background: var(--accent-soft); opacity: 0; transform: translateY(6px) scale(.98); transition: opacity .35s, transform .45s cubic-bezier(.2,.8,.2,1.2); }
  .fn-fee2.on { opacity: 1; transform: none; }
  .fn-plus { font-size: 26px; font-weight: 800; letter-spacing: -.02em; color: var(--accent); font-variant-numeric: tabular-nums; }
  .fn-fee2 b { display: block; font-size: 15px; } .fn-fee2 small { display: block; font-size: 12.5px; color: var(--soft); }
  /* nothing exists until the shutter is pressed */
  .fn-card { opacity: 0; transform: translateY(14px) scale(.98); transition: opacity .45s, transform .5s cubic-bezier(.2,.8,.2,1.1); }
  .fn-card.on { opacity: 1; transform: none; }
  .fn-arrow { opacity: 0; } .fn-arrow.on { opacity: 1; }
  /* steps light up with the animation */
  .fn-steps { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: fs; }
  .fn-steps li { counter-increment: fs; position: relative; padding: 16px 16px 16px 52px; border-radius: 14px; border: 1px solid var(--line); background: var(--card); opacity: .45; transition: opacity .35s, border-color .35s, box-shadow .35s, transform .35s; }
  .fn-steps li::before { content: counter(fs); position: absolute; left: 14px; top: 14px; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 13px; background: var(--bg-2); color: var(--soft); transition: background .35s, color .35s; }
  .fn-steps li b { display: block; font-size: 15px; } .fn-steps li span { display: block; font-size: 13.5px; color: var(--soft); margin-top: 2px; }
  .fn-steps li.on { opacity: 1; border-color: var(--accent); box-shadow: 0 10px 28px -14px color-mix(in srgb, var(--accent) 70%, transparent); transform: translateY(-2px); }
  .fn-steps li.on::before, .fn-steps li.done::before { background: var(--accent); color: var(--accent-ink); }
  .fn-steps li.done { opacity: .8; }
  @media (max-width: 860px) { .fn-steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .fn-steps { grid-template-columns: 1fr; } }
  .fn-steps li { text-align: left; }
  /* handover: copy beside the visual, not above it */
  .hd-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
  #handover .hd-pair { margin-top: 0; gap: 18px; flex-wrap: nowrap; }
  #handover .hd-web { width: min(330px, 100%); flex: 1 1 auto; }
  #handover .mp-phone.sm { width: 200px; }
  #handover .hd-arrow { font-size: 26px; }
  #handover h2 { font-size: clamp(32px, 4.2vw, 50px); }
  @media (max-width: 960px) { .hd-grid { grid-template-columns: 1fr; } #handover .hd-pair { flex-wrap: wrap; justify-content: center; } }
  #handover .walk li { padding: 7px 10px; font-size: 12px; }
  #handover .ap-title.sm { font-size: 15px; padding-top: 46px; }
  #handover .cam-bar { padding-bottom: 16px; }
  #handover .cam-bar span, #handover .cam-bar b { white-space: nowrap; font-size: 12px; } #handover .cam-bar b { padding: 6px 12px; } #handover .cam-bar { padding-left: 12px; padding-right: 12px; }

  /* ── /mobile after hours: web settings + the app's switch ── */
  .aq { position: relative; width: min(520px, 100%); padding-bottom: 90px; }
  .aq-web { border-radius: 16px; overflow: hidden; background: #fff; color: #18181b; box-shadow: var(--shadow), 0 0 0 1px var(--line); }
  .aq .hd-bar { background: #f4f4f5; border-bottom: 1px solid #e4e4e7; align-items: center; } .aq .hd-bar i { background: #d4d4d8; }
  .aq-url { margin-left: 10px; font-size: 11.5px; color: #71717a; }
  .aq-in { padding: 20px 22px 22px; display: grid; gap: 16px; }
  .aq-h { display: grid; grid-template-columns: 26px 1fr; gap: 10px; }
  .aq-moon { color: #52525b; } .aq-moon svg { width: 22px; height: 22px; }
  .aq-h b { font-size: 15.5px; font-weight: 600; } .aq-h p { margin: 4px 0 0; font-size: 13px; color: #71717a; line-height: 1.45; }
  .aq-times { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .aq-times label { display: grid; gap: 6px; font-size: 13px; font-weight: 500; }
  .aq-t { font-style: normal; display: inline-flex; align-items: center; justify-content: space-between; gap: 10px; width: fit-content; min-width: 128px; border: 1px solid #e4e4e7; border-radius: 8px; padding: 8px 12px; font-size: 14px; font-variant-numeric: tabular-nums; transition: border-color .3s, box-shadow .3s; }
  .aq-t svg { width: 15px; height: 15px; }
  .aq-t.edit { border-color: #0A7C63; box-shadow: 0 0 0 3px rgba(10,124,99,.18); }
  .aq-wk { display: flex; align-items: center; gap: 14px; border: 1px solid #e4e4e7; border-radius: 10px; padding: 12px 14px; }
  .aq-wk div { flex: 1; } .aq-wk b { display: block; font-size: 14px; font-weight: 500; } .aq-wk small { display: block; font-size: 12px; color: #71717a; margin-top: 2px; }
  .aq .tg { background: #e4e4e7; } .aq .tg.on { background: #34C759; }
  .aq-app { position: absolute; right: -18px; bottom: 0; width: min(330px, 80%); display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 16px; background: #f7f8fa; color: #111418; border: 1px solid #d9dde3; box-shadow: 0 24px 48px -16px rgba(0,0,0,.5); }
  .aq-app div { flex: 1; } .aq-app b { display: block; font-size: 14.5px; font-weight: 500; }
  .aq-app small { display: block; font-size: 12px; color: #5f646b; margin-top: 3px; line-height: 1.4; transition: color .3s; }
  .aq-app small.flash { color: #0A7C63; }
  @media (max-width: 860px) { .aq-app { right: 0; } }
