/* flospace.ai — landing + legal (ADR-0043). Flospace dark brand; the product demos
   replicate the real app UI (same tokens: #0a0a0b bg, #161719 panel, #eceef0 text). */
:root {
  --bg: #0a0a0b;
  --bg-2: #0d0e10;
  --panel: #161719;
  --panel-2: #1b1c1f;
  --text: #eceef0;
  --muted: #a7abb0;
  --faint: #6b6f75;
  --line: #232528;
  --line-2: #2c2e30;
  --accent: #ffffff;
  --on-accent: #0a0a0b;
  --green: #3ddc97;
  --warn: #ffce8a;
  --gutter: clamp(16px, 4vw, 48px);
  --max: 1320px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
* { box-sizing: border-box; border-radius: 0; }
html { scroll-behavior: smooth; }
html, body { margin: 0; background: var(--bg); color: var(--text); overflow-x: hidden; }
body { font-family: "Open Sans", system-ui, -apple-system, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
h1, h2, h3 { font-family: "EB Garamond", Garamond, Georgia, serif; font-weight: 400; margin: 0; letter-spacing: -0.01em; }
.eyebrow { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint); margin: 0 0 16px; }

/* ── header ─────────────────────────────────────────────────────────────── */
header { position: sticky; top: 0; z-index: 50; background: rgba(10,10,11,.75); backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s; }
header.scrolled { border-bottom-color: var(--line); }
header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 24px; width: auto; }
.brand span { font-size: 12px; letter-spacing: .26em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .15s; }
nav a:hover { color: var(--text); }

/* ── buttons ────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; font-size: 14px; font-weight: 600; text-decoration: none; border: 1px solid var(--accent); white-space: nowrap; transition: transform .15s, opacity .15s, border-color .15s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { opacity: .9; }
.btn-ghost { color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--muted); }
/* Waitlist + sign-in are switched off until Clerk launches (no href). */
.btn[aria-disabled="true"] { cursor: default; }
.btn[aria-disabled="true"]:hover { transform: none; opacity: 1; }
.btn[aria-disabled="true"]:hover .arrow { transform: none; }
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(3px); }
/* Header buttons match the hero CTAs (same size, weight, and colors). */

/* ── hero ───────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: calc(100svh - 64px); display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 6vh, 72px) 0 clamp(32px, 5vh, 56px); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 15%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 15%, transparent 75%); opacity: .4; }
.hero-copy { position: relative; z-index: 1; text-align: center; max-width: 920px; margin: 0 auto; }
.hero h1 { font-size: clamp(40px, 6.2vw, 84px); line-height: 1.02; }
.hero h1 em { font-style: italic; color: var(--muted); }
.hero .lede { font-size: clamp(16px, 1.35vw, 19px); color: var(--muted); max-width: 62ch; margin: 22px auto 30px; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-app { position: relative; z-index: 1; margin-top: clamp(36px, 6vh, 64px); }
.hero-app::before { content: ""; position: absolute; left: 50%; top: -10%; width: 80%; height: 70%; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(255,255,255,.07), transparent 70%); pointer-events: none; }

/* ── connects & consolidates ───────────────────────────────────────────── */
.logos { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.logos .wrap { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3.4vw, 48px); flex-wrap: wrap; padding-top: 24px; padding-bottom: 24px; }
.logos .label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); }
.logo { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 15px; font-weight: 600; }
.logo img { height: 22px; width: auto; }
.logo img.inv { filter: invert(1); }
.logos .sep { width: 1px; height: 22px; background: var(--line-2); }

/* ── value sections ─────────────────────────────────────────────────────── */
.value { padding: clamp(72px, 12vh, 140px) 0; border-bottom: 1px solid var(--line); }
.value-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(24px, 5vw, 80px); align-items: end; margin-bottom: clamp(32px, 5vh, 56px); }
.value-copy .num { font-family: var(--mono); font-size: 12px; color: var(--faint); margin-bottom: 14px; }
.value-copy h2 { font-size: clamp(32px, 3.8vw, 54px); line-height: 1.06; }
.value-copy p { color: var(--muted); font-size: 16.5px; margin: 18px 0 0; max-width: 58ch; }
.value-points .points { margin: 0; }
.value-app { position: relative; }
.value-app::before { content: ""; position: absolute; left: 50%; top: -8%; width: 80%; height: 60%; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(255,255,255,.05), transparent 70%); pointer-events: none; }
.points { list-style: none; padding: 0; margin: 26px 0 0; }
.points li { padding: 11px 0 11px 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14.5px; position: relative; }
.points li strong { color: var(--text); font-weight: 600; }
.points li::before { content: ""; position: absolute; left: 0; top: 21px; width: 9px; height: 1px; background: var(--text); }

/* ── final cta ─────────────────────────────────────────────────────────── */
.final { position: relative; text-align: center; overflow: hidden; }
.final .wrap { padding-top: clamp(90px, 16vh, 170px); padding-bottom: clamp(90px, 16vh, 170px); position: relative; z-index: 1; }
.final h2 { font-size: clamp(36px, 5vw, 68px); line-height: 1.04; max-width: 17ch; margin: 0 auto; }
.final p { color: var(--muted); margin: 20px auto 32px; max-width: 54ch; font-size: 17px; }
.final .trust { margin-top: 28px; font-size: 13px; color: var(--faint); letter-spacing: .02em; }
.final::before { content: ""; position: absolute; left: 50%; top: 50%; width: 1000px; height: 1000px; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255,255,255,.06), transparent 60%); }
.final-mark { width: 46px; height: 46px; margin: 0 auto 26px; color: var(--text); display: block; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ══ App replica (mirrors the Flospace app) ═══════════════════════════════ */
.app { background: var(--bg); border: 1px solid var(--line-2); box-shadow: 0 50px 140px -40px rgba(0,0,0,.95); font-size: 13px; color: var(--text); overflow: hidden; text-align: left; line-height: 1.5; }
.app-frame { display: grid; grid-template-columns: 196px 222px minmax(0, 1fr); grid-template-rows: minmax(0, 1fr); height: 680px; }
.app-frame.two { grid-template-columns: 206px minmax(0, 1fr); }
.app-frame.one { grid-template-columns: minmax(0, 1fr); }
/* nav */
.nav { border-right: 1px solid var(--line); display: flex; flex-direction: column; background: var(--bg); }
.nav-top { height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid var(--line); }
.nav-top img { height: 22px; width: auto; }
.bell { width: 15px; height: 15px; color: var(--faint); }
.nav-sec { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); padding: 14px 16px 6px; display: flex; align-items: center; gap: 5px; }
.nav-sec::before { content: "⌄"; font-size: 10px; letter-spacing: 0; }
.nav-item { margin: 0 8px; padding: 6px 9px; color: rgba(236,238,240,.72); font-size: 13px; display: flex; align-items: center; justify-content: space-between; }
.nav-item.on { background: var(--panel-2); color: var(--text); }
.nav-scroll { flex: 1; min-height: 0; overflow: hidden; }
.nav-item.add { color: var(--faint); }
.bell-wrap { position: relative; display: inline-flex; }
.badge-n { position: absolute; top: -6px; right: -7px; min-width: 14px; height: 14px; border-radius: 7px; background: var(--accent); color: var(--on-accent); font-size: 8.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 3px; }
.nav-foot .tenant { margin-left: auto; width: 22px; height: 22px; }
.nav-foot { margin-top: auto; border-top: 1px solid var(--line); padding: 10px 14px; display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12.5px; }
/* rail */
.rail { border-right: 1px solid var(--line); display: flex; flex-direction: column; background: var(--bg); min-width: 0; }
.rail-head { height: 52px; display: flex; align-items: center; gap: 8px; padding: 0 12px; border-bottom: 1px solid var(--line); }
.rail-head .lbl { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); }
.rail-head .plus { margin-left: auto; width: 20px; height: 20px; background: var(--panel-2); display: flex; align-items: center; justify-content: center; color: var(--text); font-size: 13px; }
.rail-list { padding: 6px; display: flex; flex-direction: column; gap: 1px; }
.rail-list.scroll { flex: 1 1 0; min-height: 0; overflow: hidden; position: relative; }
.rail-list > .row, .rail-list > .mrow { flex-shrink: 0; }
.rail-list.scroll { overflow-y: scroll; scrollbar-width: thin; scrollbar-color: rgba(236,238,240,.22) transparent; }
.rail-list.scroll::-webkit-scrollbar { width: 5px; }
.rail-list.scroll::-webkit-scrollbar-thumb { background: rgba(236,238,240,.22); }
.proj { display: flex; flex-direction: column; }
.proj .rail-list.proj-list { flex: 1; height: auto; min-height: 0; }
.proj { border-top: 1px solid var(--line); flex: 1 1 0; min-height: 0; overflow: hidden; }
.proj .rail-head { height: 44px; }
.row .chev { color: var(--faint); width: 10px; }
.row .cnt { font-size: 10.5px; color: var(--faint); margin-left: 6px; }
.row { padding: 6px 8px; display: flex; align-items: center; gap: 8px; color: rgba(236,238,240,.7); font-size: 12.5px; white-space: nowrap; overflow: hidden; }
.row::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--faint); flex-shrink: 0; }
.row .nm { overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 0; }
.row.on { background: var(--panel-2); color: var(--text); }
.row.plain::before { display: none; }
.mrow { padding: 8px 10px; border-bottom: 0; }
.mrow .nm { display: block; font-size: 12.5px; color: rgba(236,238,240,.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mrow .sub { display: block; font-size: 10.5px; color: var(--faint); }
.mrow.on { background: var(--panel-2); }
.mrow.on .nm { color: var(--text); }
/* pane */
.pane { display: flex; flex-direction: column; min-width: 0; background: var(--bg); }
.pane-head { height: 44px; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid var(--line); min-width: 0; position: relative; }
.pane-head .ttl { font-size: 12.5px; font-weight: 600; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; margin-right: auto; min-width: 0; }
.chip { font-family: var(--mono); font-size: 10.5px; color: rgba(236,238,240,.7); background: rgba(236,238,240,.08); padding: 2px 7px; white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; transition: background .2s, color .2s; }
.chip.hot { background: rgba(236,238,240,.2); color: var(--text); }
.chip .car { font-size: 8px; opacity: .7; }
.pane-body { flex: 1; overflow: hidden; padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; justify-content: flex-end; }
.composer { border-top: 1px solid var(--line); padding: 8px 12px 10px; }
.cmp-row { display: flex; align-items: center; gap: 10px; color: var(--faint); font-size: 12.5px; min-height: 28px; }
.cmp-row .plus { color: var(--faint); font-size: 15px; }
.cmp-row .prov { width: 16px; height: 16px; }
.cmp-row .txt { color: var(--text); flex: 1; min-width: 0; }
.cmp-row .ph { color: var(--faint); flex: 1; }
.cmp-row .send { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; color: var(--on-accent); font-size: 12px; margin-left: auto; }
/* typing preview (above the composer, like the app) */
.peer { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 8px; }
.peer-box { flex: 1; min-width: 0; border: 1px solid rgba(236,238,240,.18); background: rgba(236,238,240,.04); padding: 5px 9px; }
.peer-box .lab { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--text); font-weight: 600; }
.peer-box .tx { font-size: 12px; color: rgba(236,238,240,.8); }
/* people */
.av { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 9.5px; font-weight: 600; flex-shrink: 0; color: #0a0a0b; }
/* Demo people: CC0 "Notionists" avatars (DiceBear, by Zoish), self-hosted. The
   letter stays in the markup for fallback but is hidden once the image loads. */
.av.m, .av.j, .av.s, .av.a, .av.k { background-size: cover; background-position: center; color: transparent; overflow: hidden; }
.av.m { background-color: #c9b8ff; background-image: url(/avatars/maya.svg); }
.av.j { background-color: #9fd8c3; background-image: url(/avatars/jordan.svg); }
.av.s { background-color: #ffcf9a; background-image: url(/avatars/sam.svg); }
.av.a { background-color: #a9c9ff; background-image: url(/avatars/alex.svg); }
.av.k { background-color: #d8dbe0; background-image: url(/avatars/dana.svg); }
.av.sm { width: 18px; height: 18px; font-size: 8px; }
.stack { display: inline-flex; }
.stack .av { margin-left: -5px; box-shadow: 0 0 0 2px var(--bg); }
.stack .av:first-child { margin-left: 0; }
.ai-av { width: 20px; height: 20px; flex-shrink: 0; }
/* messages (matches the session transcript) */
.msg { opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; }
.msg.show { opacity: 1; transform: none; }
.who { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; margin-bottom: 5px; }
.who .q { font-weight: 400; font-size: 10.5px; color: var(--warn); }
.box { border: 1px solid rgba(236,238,240,.14); background: var(--panel); padding: 8px 11px; font-size: 12.5px; }
.box b { font-weight: 600; }
.box code { font-family: var(--mono); font-size: 11px; background: rgba(236,238,240,.1); padding: 1px 5px; }
.box.note { border-style: dashed; background: rgba(236,238,240,.03); color: rgba(236,238,240,.78); }
.note-lab { font-size: 10px; color: var(--faint); display: flex; align-items: center; gap: 5px; margin-bottom: 4px; }
.think { font-size: 11.5px; color: var(--faint); font-style: italic; margin: 3px 0; }
.think::before { content: "›  "; font-style: normal; }
.tool { font-family: var(--mono); font-size: 11px; color: rgba(236,238,240,.62); margin: 3px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tool::before { content: "▸ "; }
.caret::after { content: ""; display: inline-block; width: 1px; height: 12px; background: var(--text); margin-left: 2px; vertical-align: -2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
/* dropdown menu (model picker) */
.menu { position: absolute; top: 38px; right: 12px; z-index: 5; min-width: 188px; background: var(--panel); border: 1px solid rgba(236,238,240,.2); box-shadow: 0 20px 50px rgba(0,0,0,.6); padding: 4px 0; font-family: var(--mono); font-size: 11.5px; opacity: 0; transform: translateY(-4px); transition: opacity .2s, transform .2s; pointer-events: none; }
.menu.show { opacity: 1; transform: none; }
.menu .prov-tabs { display: flex; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.menu .pt { flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 6px 4px; color: var(--faint); font-family: "Open Sans", sans-serif; font-size: 11px; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.menu .pt img { width: 13px; height: 13px; }
.menu .pt.on { color: var(--text); border-bottom-color: var(--text); }
.menu .it { padding: 6px 12px; display: flex; justify-content: space-between; color: rgba(236,238,240,.8); transition: background .15s; }
.menu .it.sel { color: var(--text); }
.menu .it.hl { background: rgba(236,238,240,.08); }
.menu .it .ck { color: var(--text); }
/* meetings replica */
.m-head { height: 52px; display: flex; align-items: center; gap: 12px; padding: 0 16px; border-bottom: 1px solid var(--line); }
.m-head .t { font-family: "EB Garamond", serif; font-size: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-head .d { margin-left: auto; font-size: 11px; color: var(--faint); white-space: nowrap; }
.m-tabs { height: 40px; display: flex; align-items: center; gap: 4px; padding: 0 12px; border-bottom: 1px solid var(--line); }
.m-tab { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); padding: 4px 8px; transition: background .2s, color .2s; }
.m-tab.on { background: var(--panel-2); color: var(--text); }
.m-tab.m-only { display: none; }
.app:not(.mobile) .m-tab.on-d { background: var(--panel-2); color: var(--text); }
.m-body { flex: 1; overflow: hidden; padding: 14px 16px; position: relative; }
.m-view { position: absolute; inset: 14px 16px; overflow: hidden; opacity: 0; transition: opacity .35s; }
.m-view.on { opacity: 1; }
.att { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding-bottom: 10px; margin-bottom: 12px; border-bottom: 1px solid var(--line); font-size: 11.5px; color: rgba(236,238,240,.75); }
.att .lab { font-size: 9px; letter-spacing: .18em; color: var(--faint); text-transform: uppercase; }
.att span.p { display: inline-flex; align-items: center; gap: 5px; }
.turn { margin-bottom: 11px; opacity: .4; transition: opacity .35s; }
.turn.hit { opacity: 1; }
.turn .sp { font-size: 12px; font-weight: 600; }
.turn .ts { font-size: 10px; color: var(--faint); margin-left: 6px; font-weight: 400; }
.turn .tx { font-size: 12.5px; color: rgba(236,238,240,.85); }
.turn mark { background: transparent; color: var(--text); box-shadow: inset 0 -2px 0 rgba(255,255,255,.55); }
.card { border: 1px solid rgba(236,238,240,.12); background: var(--panel); padding: 10px 12px; margin-bottom: 10px; opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s, border-color .3s; }
.card.show { opacity: 1; transform: none; }
.card .top { display: flex; align-items: center; gap: 8px; font-size: 10.5px; color: var(--faint); }
.card .kind { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; background: rgba(236,238,240,.1); color: rgba(236,238,240,.75); padding: 2px 6px; font-weight: 600; }
.card .own { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: rgba(236,238,240,.8); font-size: 11.5px; }
.card .ti { font-size: 13px; margin: 7px 0 9px; }
.card .acts { display: flex; align-items: center; gap: 12px; }
.card .ap { background: var(--accent); color: var(--on-accent); font-size: 11.5px; padding: 3px 10px; transition: background .3s; }
.card .ds { font-size: 11.5px; color: var(--faint); }
.card.done { border-color: rgba(61,220,151,.45); }
.card.done .ap { background: var(--green); }
/* meeting two-pane (transcript + side panel, like the app at wide widths) */
.m-split { flex: 1; min-height: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 38%); }
.m-left { min-width: 0; overflow: hidden; }
.m-scroll { height: 100%; overflow: hidden; padding: 14px 16px; position: relative; }
.m-right { border-left: 1px solid var(--line); display: flex; flex-direction: column; min-width: 0; }
.m-right .m-tabs { flex-shrink: 0; }
.m-panel { flex: 1; min-height: 0; position: relative; }
.m-panel .m-view { inset: 12px 14px; }
/* Summary scrolls (like the app) — the visible scrollbar signals a full write-up. */
#mv-summary { overflow-y: scroll; padding-right: 8px; scrollbar-width: thin; scrollbar-color: rgba(236,238,240,.25) transparent; }
#mv-summary::-webkit-scrollbar { width: 6px; }
#mv-summary::-webkit-scrollbar-thumb { background: rgba(236,238,240,.25); }
#mv-summary::-webkit-scrollbar-track { background: transparent; }
.sum-h { font-family: "EB Garamond", serif; font-size: 17px; margin-bottom: 6px; }
.sum-p { font-size: 12.5px; color: rgba(236,238,240,.8); margin: 0 0 12px; }
.sum-p b, .sum-l b { color: var(--text); font-weight: 600; }
.sum-s { font-family: "EB Garamond", serif; font-size: 15px; margin: 12px 0 4px; }
.sum-l { margin: 0; padding-left: 16px; font-size: 12.5px; color: rgba(236,238,240,.8); }
.sum-l li { margin: 3px 0; }
/* board page (the demo switches pages: nav → Pipeline, rail hidden) */
.bpage { display: none; }
.app-frame.board-page { grid-template-columns: 196px minmax(0, 1fr); }
.app-frame.board-page .rail, .app-frame.board-page .m-head, .app-frame.board-page .m-split { display: none; }
.app-frame.board-page .bpage { display: flex; flex-direction: column; flex: 1; min-height: 0; animation: pageIn .35s ease; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
.bpage-head { height: 52px; display: flex; align-items: center; gap: 10px; padding: 0 18px; border-bottom: 1px solid var(--line); }
.bt-title { font-family: "EB Garamond", serif; font-size: 20px; }
.bpage-head .trash { width: 15px; height: 15px; color: var(--faint); margin-left: auto; }
.bpage-body { padding: 18px; overflow: hidden; }
.bt-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.bt-name { font-family: "EB Garamond", serif; font-size: 17px; }
.bt-tools { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--muted); }
.bt-tools .filter { border: 1px solid var(--line-2); padding: 3px 9px; }
.bpage-body { flex: 1; min-height: 0; overflow-y: scroll; scrollbar-width: thin; scrollbar-color: rgba(236,238,240,.22) transparent; }
.bpage-body::-webkit-scrollbar { width: 6px; }
.bpage-body::-webkit-scrollbar-thumb { background: rgba(236,238,240,.22); }
.bt-block { margin-bottom: 22px; }
.bt-count { font-family: "Open Sans", sans-serif; font-size: 11px; color: var(--faint); margin-left: 6px; }
.bt-sum { color: var(--faint); margin-right: 4px; }
.bt-sum b { color: var(--text); font-weight: 600; }
.bt-add { font-size: 11.5px; color: var(--faint); padding: 7px 9px; border: 1px solid var(--line); border-top: 0; }
.bt-addtable { font-size: 12px; color: var(--faint); padding: 4px 0 8px; }
.own-c { display: inline-flex; align-items: center; gap: 6px; }
.st.p { background: #d7c8ff; }
.tbl td.editing { position: relative; box-shadow: inset 0 0 0 2px #9fd8c3; overflow: visible; }
.edit-badge { position: absolute; top: -9px; right: -2px; z-index: 2; display: inline-flex; align-items: center; gap: 3px; background: #9fd8c3; color: #0a0a0b; font-size: 9.5px; font-weight: 700; padding: 1px 5px 1px 1px; line-height: 1.2; }
.edit-badge .av { width: 13px; height: 13px; }
/* dismissed action card */
.card.dismissed { opacity: .45; }
.card.dismissed .ti { text-decoration: line-through; text-decoration-color: rgba(236,238,240,.35); }
.card .undo { margin-left: auto; font-size: 11.5px; color: var(--muted); }
/* board replica */
.board { padding: 14px 16px; }
.board .bt { font-family: "EB Garamond", serif; font-size: 18px; margin-bottom: 8px; display: flex; align-items: center; justify-content: space-between; }
.board .bt small { font-family: "Open Sans", sans-serif; font-size: 10.5px; color: var(--faint); border: 1px solid var(--line-2); padding: 2px 8px; }
.tbl { width: 100%; border-collapse: collapse; font-size: 12px; }
.tbl th { text-align: left; font-weight: 600; font-size: 11px; color: rgba(236,238,240,.7); background: var(--panel); padding: 6px 9px; border: 1px solid var(--line); }
.tbl td { padding: 6px 9px; border: 1px solid var(--line); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 1px; }
.tbl tr.new td { animation: rowIn 1.6s ease; }
@keyframes rowIn { 0% { background: rgba(61,220,151,.18); } 100% { background: transparent; } }
.st { font-size: 10.5px; padding: 1px 7px; color: #0a0a0b; font-weight: 600; }
.st.g { background: #9fd8c3; } .st.y { background: #ffd89a; } .st.b { background: #a9c9ff; }
/* agent log */
.log { font-family: var(--mono); font-size: 11.5px; line-height: 1.8; color: rgba(236,238,240,.62); }
.log .ln { opacity: 0; transition: opacity .25s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.log .ln.show { opacity: 1; }
.log .ok { color: var(--green); }
.log .c { color: var(--text); }

/* ══ More app replicas: settings pages, activity panel, share dialog, project editor ══ */
.app-frame.no-rail { grid-template-columns: 196px minmax(0, 1fr); }
.set-page { flex: 1; min-height: 0; overflow: hidden; padding: 22px clamp(18px, 3vw, 40px); position: relative; }
.set-page h4 { font-family: "EB Garamond", serif; font-weight: 400; font-size: 22px; margin: 0 0 16px; }
.set-sec { margin-bottom: 18px; }
.set-sec .st-title { font-size: 9.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.set-panel { border: 1px solid rgba(236,238,240,.12); background: var(--panel); }
.tog { width: 28px; height: 16px; border: 1px solid rgba(236,238,240,.2); background: rgba(236,238,240,.08); position: relative; display: inline-block; flex-shrink: 0; vertical-align: middle; transition: background .2s, border-color .2s; }
.tog::after { content: ""; position: absolute; top: 2px; left: 2px; width: 10px; height: 10px; background: rgba(236,238,240,.6); transition: transform .2s, background .2s; }
.tog.on { background: #00df8f; border-color: #00df8f; }
.tog.on::after { transform: translateX(12px); background: #0a0a0b; }
.sel { font-size: 11.5px; border: 1px solid rgba(236,238,240,.15); padding: 3px 8px; background: var(--bg); display: inline-flex; align-items: center; gap: 6px; transition: border-color .2s, background .2s; }
.sel.hot { border-color: rgba(236,238,240,.5); background: var(--panel-2); }
.sel::after { content: "▾"; font-size: 8px; color: var(--faint); }
.field { display: grid; gap: 4px; margin-bottom: 8px; }
.field label { font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.field .in { font-family: var(--mono); font-size: 11.5px; border: 1px solid rgba(236,238,240,.15); background: var(--bg); padding: 5px 8px; min-height: 26px; color: var(--text); }
.pill-btn { font-size: 11.5px; padding: 4px 11px; border: 1px solid rgba(236,238,240,.2); color: var(--text); display: inline-flex; align-items: center; gap: 6px; transition: background .2s; }
.pill-btn.primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); font-weight: 600; }
.pill-btn.hot { background: rgba(236,238,240,.18); }
.ok-t { color: var(--green); font-size: 11.5px; }
.bad-t { color: #ff9b9b; font-size: 11.5px; }
/* connections */
.conn { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.conn img { width: 26px; height: 26px; object-fit: contain; }
.conn .ci { flex: 1; min-width: 0; }
.conn .cn { font-size: 13px; font-weight: 600; }
.conn .cb { font-size: 11.5px; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.status { font-size: 10.5px; padding: 2px 8px; border: 1px solid var(--line-2); color: var(--faint); white-space: nowrap; }
.status.on { color: var(--green); border-color: rgba(61,220,151,.4); }
.conn-form { padding: 12px 14px 6px 52px; border-bottom: 1px solid var(--line); display: none; }
.conn-form.show { display: block; }
.conn-form .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 10px; }
/* members table */
.mtbl { width: 100%; border-collapse: collapse; font-size: 12px; }
.mtbl th { text-align: left; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); padding: 8px 10px; border-bottom: 1px solid var(--line); background: var(--bg-2); white-space: nowrap; }
.mtbl td { padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.mtbl td.c, .mtbl th.c { text-align: center; }
.mtbl .mem { display: flex; align-items: center; gap: 8px; }
.mtbl .mem small { display: block; color: var(--faint); font-size: 10.5px; }
.mtbl tr.new td { animation: rowIn 1.6s ease; }
.addbar { display: flex; gap: 8px; padding: 10px; border-bottom: 1px solid var(--line); }
.addbar .in { flex: 1; font-size: 12px; border: 1px solid rgba(236,238,240,.15); background: var(--bg); padding: 5px 9px; color: var(--text); min-height: 28px; }
.toast { position: absolute; right: 18px; bottom: 16px; background: var(--panel-2); border: 1px solid rgba(61,220,151,.4); color: var(--text); font-size: 12px; padding: 8px 12px; display: flex; align-items: center; gap: 8px; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; z-index: 4; }
.toast.show { opacity: 1; transform: none; }
.toast.warn { border-color: rgba(255,155,155,.45); }
/* activity panel (between nav and content, like the app) */
.app-frame.with-activity { grid-template-columns: 196px 300px minmax(0, 1fr); }
.act-panel { border-right: 1px solid var(--line); background: var(--bg); display: flex; flex-direction: column; min-width: 0; overflow: hidden; }
.act-head { height: 52px; display: flex; align-items: center; gap: 8px; padding: 0 14px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.act-head .lbl { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); }
.act-head .new { font-size: 9.5px; color: var(--faint); }
.act-head .mar { margin-left: auto; font-size: 11px; color: rgba(236,238,240,.7); transition: color .2s; }
.act-head .mar.dim { color: rgba(236,238,240,.25); }
.act-list { flex: 1; min-height: 0; overflow: hidden; }
.act-day { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); padding: 8px 14px 4px; border-bottom: 1px solid rgba(236,238,240,.05); }
.act-row { display: flex; gap: 10px; padding: 9px 14px; position: relative; }
.act-row.unread::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: rgba(236,238,240,.7); }
.act-row.fresh { animation: rowIn 1.6s ease; }
.act-row .ico { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.act-row .glyph { width: 22px; height: 22px; border-radius: 50%; background: rgba(236,238,240,.1); display: flex; align-items: center; justify-content: center; color: rgba(236,238,240,.75); font-size: 11px; }
.act-row .badge { position: absolute; right: -4px; bottom: -4px; width: 13px; height: 13px; border-radius: 50%; box-shadow: 0 0 0 2px var(--bg); }
.act-row .tx { flex: 1; min-width: 0; font-size: 12px; color: rgba(236,238,240,.72); line-height: 1.4; }
.act-row.unread .tx { color: rgba(236,238,240,.92); }
.act-row .tx b { color: var(--text); font-weight: 600; }
.act-row .tx small { display: block; color: var(--faint); font-size: 10.5px; margin-top: 2px; }
.act-row .tm { font-size: 10px; color: var(--faint); white-space: nowrap; }
.bell-wrap.hot { outline: 1px solid rgba(236,238,240,.4); outline-offset: 4px; }
/* share dialog */
.scrim { position: absolute; inset: 0; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 6; }
.scrim.show { opacity: 1; }
.dialog { width: min(380px, 90%); background: var(--bg); border: 1px solid rgba(236,238,240,.15); padding: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.7); }
.dialog h5 { margin: 0 0 12px; font-size: 14px; font-weight: 600; }
.dialog .hint { font-size: 11.5px; color: var(--faint); margin: 0 0 12px; }
.seg { display: inline-flex; border: 1px solid rgba(236,238,240,.15); margin-bottom: 12px; }
.seg span { font-size: 11.5px; padding: 5px 12px; color: rgba(236,238,240,.7); transition: background .2s, color .2s; }
.seg span.on { background: var(--accent); color: var(--on-accent); font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; min-height: 26px; margin-bottom: 12px; }
.pchip { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; border: 1px solid rgba(236,238,240,.15); padding: 2px 8px 2px 2px; animation: rowIn 1.2s ease; }
.lock { font-size: 10px; color: var(--faint); margin-left: 6px; }
.dlg-foot { display: flex; justify-content: flex-end; gap: 8px; }
/* project editor */
.proj-edit { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -46%); width: min(440px, 88%); background: var(--bg); border: 1px solid rgba(236,238,240,.18); padding: 16px 18px; box-shadow: 0 30px 80px rgba(0,0,0,.75); opacity: 0; transition: opacity .3s, transform .3s; pointer-events: none; z-index: 6; }
.proj-edit.show { opacity: 1; transform: translate(-50%, -50%); }
.proj-edit h5 { margin: 0 0 12px; font-size: 14px; font-weight: 600; }
.in.tall { min-height: 62px; white-space: pre-wrap; font-family: "Open Sans", sans-serif !important; font-size: 12px !important; }
.row.child { padding-left: 24px; }
.pane-wrap { position: relative; display: flex; flex-direction: column; min-width: 0; }
/* theme demo */
.theme-demo .swatches { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.sw { width: 26px; height: 26px; border: 1px solid rgba(236,238,240,.2); transition: box-shadow .2s; }
.sw.on { box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--text); }
.slider-row { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); display: flex; justify-content: space-between; }
.slider { height: 10px; border: 1px solid rgba(236,238,240,.15); position: relative; margin: 5px 0 12px; }
.slider i { position: absolute; top: -4px; width: 8px; height: 16px; background: #fff; border: 2px solid #0a0a0b; transition: left .6s ease; }
.mini-preview { border: 1px solid var(--line-2); padding: 12px; display: flex; gap: 10px; align-items: center; transition: background .6s; }
.mini-preview .mbtn { padding: 5px 12px; font-size: 11.5px; font-weight: 600; transition: background .6s, color .6s; }

/* marketplace */
.mk-sub { font-size: 12.5px; color: var(--muted); margin: -8px 0 16px; }
#mk-page { overflow-y: scroll; scrollbar-width: thin; scrollbar-color: rgba(236,238,240,.25) transparent; }
#mk-page::-webkit-scrollbar { width: 6px; }
#mk-page::-webkit-scrollbar-thumb { background: rgba(236,238,240,.25); }
.mk-cat { grid-column: 1 / -1; font-size: 9.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin: 8px 0 -2px; }
.mk-cat:first-child { margin-top: 0; }
.mk-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.mk-card { border: 1px solid rgba(236,238,240,.12); background: var(--panel); padding: 12px 14px; transition: border-color .25s, background .25s; }
.mk-card.hover { border-color: rgba(236,238,240,.45); background: var(--panel-2); }
.mk-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.mk-name { font-size: 13px; font-weight: 600; flex: 1; min-width: 0; }
.mk-btn { font-size: 11px; padding: 3px 9px; border: 1px solid rgba(236,238,240,.25); white-space: nowrap; }
.mk-btn.inc { color: var(--faint); border-color: var(--line-2); }
.mk-btn.done { color: var(--green); border-color: rgba(61,220,151,.45); }
.mk-btn.busy { color: var(--muted); }
.mk-desc { font-size: 11.5px; color: var(--faint); line-height: 1.45; }
.mk-cover { position: absolute; inset: 0; background: var(--bg); display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mk-cover.show { opacity: 1; }
.mk-cover .pane-body { justify-content: flex-start; }
.nav-item.fresh-tool { animation: rowIn 1.6s ease; }
.nav-item.hot-item { background: rgba(236,238,240,.12); color: var(--text); }

/* ══ Viewports: demos render at a fixed desktop size and scale to fit any screen;
   each has a Desktop / Mobile toggle (mobile = the same demo in a phone). ══ */
.vtoggle { display: flex; justify-content: flex-end; margin-bottom: 12px; }
.vtoggle .seg2 { display: inline-flex; border: 1px solid var(--line-2); }
.vtoggle span { font-size: 12px; padding: 6px 14px; color: var(--muted); cursor: pointer; user-select: none; display: inline-flex; align-items: center; gap: 7px; transition: background .2s, color .2s; }
.vtoggle span svg { width: 13px; height: 13px; }
.vtoggle span.on { background: var(--accent); color: var(--on-accent); font-weight: 600; }
.viewport { position: relative; width: 100%; }
/* Demos are look-only: no scrolling, dragging, or selecting inside them —
   wheel/touch over a demo scrolls the page instead. */
.device, .device * { pointer-events: none; user-select: none; }
.device { position: absolute; top: 0; left: 0; transform-origin: top left; }
.device > .app { width: 100%; height: 100%; display: flex; flex-direction: column; }
.device > .app > .app-frame { flex: 1; min-height: 0; height: auto !important; }
.device.phone { padding: 12px; background: #1b1c1f; border-radius: 44px; box-shadow: 0 0 0 1px #2c2e30, 0 50px 120px -40px rgba(0,0,0,.95); }
.device.phone::before { content: ""; position: absolute; top: 20px; left: 50%; width: 96px; height: 22px; transform: translateX(-50%); background: #0a0a0b; border-radius: 12px; z-index: 9; }
.device.phone > .app { border-radius: 32px; border-color: #0a0a0b; }

/* mobile app layout (mirrors Flospace on a phone) */
.m-topbar { display: none; }
.app.mobile .m-topbar { display: flex; align-items: center; gap: 12px; height: 88px; padding: 40px 18px 0; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.m-topbar .hb { width: 20px; height: 20px; color: var(--muted); }
.m-topbar img { height: 22px; width: auto; }
.m-topbar .bell-wrap { margin-left: auto; }
.app.mobile .app-frame { grid-template-columns: minmax(0, 1fr) !important; }
.app.mobile .nav, .app.mobile .rail { display: none !important; }
.app.mobile .app-frame.with-activity .pane { display: none; }
.app.mobile .act-panel { border-right: 0; }
/* Phones: one column, tabs on top; the Transcript tab swaps in the transcript. */
.app.mobile .m-tab.m-only { display: inline-block; }
.app.mobile .m-left { display: none; }
.app.mobile .m-split { display: flex; flex-direction: column; }
.app.mobile .m-right { border-left: 0; order: -1; flex: 1 1 0; min-height: 0; }
.app.mobile .m-split.tx .m-right { flex: 0 0 auto; }
.app.mobile .m-split.tx .m-panel { display: none; }
.app.mobile .m-split.tx .m-left { display: flex; flex-direction: column; flex: 1 1 0; min-height: 0; }
.app.mobile .m-split.tx .m-scroll { flex: 1 1 0; height: auto; min-height: 0; }
.app.mobile .mk-grid { grid-template-columns: minmax(0, 1fr); }
.app.mobile .mtbl .c { display: none; }
.app.mobile .set-page { padding: 16px; }
.app.mobile .grid2 { grid-template-columns: minmax(0, 1fr) !important; }
.app.mobile .conn .cb { white-space: normal; }
.app.mobile .conn-form { padding-left: 14px; }
.app.mobile .tbl th:nth-child(n+4), .app.mobile .tbl td:nth-child(n+4) { display: none; }
.app.mobile .pane-head .chip:first-of-type { display: none; }
.app.mobile .pane-head .ttl { font-size: 13px; }
.app.mobile .bpage-head { padding: 0 14px; }
.app.mobile .bpage-body { padding: 14px; }
.app.mobile .addbar { flex-wrap: wrap; }
.app.mobile .toast { left: 12px; right: 12px; }

/* work from anywhere */
.anywhere { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(20px, 3vw, 44px); align-items: center; }
.anywhere .lab-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--faint); margin-bottom: 10px; letter-spacing: .04em; }
.anywhere .lab-row svg { width: 14px; height: 14px; }
@media (max-width: 760px) { .anywhere { grid-template-columns: minmax(0, 1fr) 42%; } }

/* side-by-side session panes (multi-pane, like the app) */
.panes2 { display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 8px; min-width: 0; min-height: 0; background: var(--bg); }
.panes2.two { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.panes2 > .pane { animation: pageIn .35s ease; }
.ai-empty { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(236,238,240,.5); text-align: center; padding: 0 24px; }
.ai-empty img { width: 16px; height: 16px; }
.composer.focus { box-shadow: inset 0 0 0 1px rgba(236,238,240,.35); }
.panes2 > .pane { border: 1px solid var(--line); min-height: 0; }
.panes2 .pane-head .chip:first-of-type { display: none; }
.app.mobile .panes2 { grid-template-columns: minmax(0, 1fr); padding: 0; }
.app.mobile .panes2 > .pane { border: 0; }
/* Real app: open sessions sit side by side on phones too. */
.app.mobile .panes2.two { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 6px; padding: 6px; }
.app.mobile .panes2.two > .pane { border: 1px solid var(--line); }
.app.mobile .panes2.two .pane-head .chip { display: none; }
.app.mobile .panes2.two .pane-head .chip:last-of-type { display: inline-flex; }
/* Mobile sessions drawer (opened from the menu button, like the app). */
.app.mobile .app-frame { position: relative; }
.app.mobile.drawer .rail { display: flex !important; position: absolute; left: 0; top: 0; bottom: 0; width: 80%; z-index: 7; box-shadow: 20px 0 60px rgba(0,0,0,.6); animation: drawerIn .3s ease; }
.app.mobile.drawer .app-frame::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.5); z-index: 6; }
@keyframes drawerIn { from { transform: translateX(-100%); } to { transform: none; } }

/* ── legal pages ────────────────────────────────────────────────────────── */
.doc { padding: clamp(48px, 9vh, 96px) 0 clamp(64px, 12vh, 120px); max-width: 760px; }
.doc h1 { font-size: clamp(36px, 5vw, 52px); }
.doc .meta { color: var(--faint); font-size: 14px; margin: 12px 0 40px; }
.doc h2 { font-size: 26px; margin: 40px 0 10px; }
.doc p, .doc li { color: var(--muted); font-size: 15.5px; }
.doc ul { padding-left: 20px; }
.doc strong { color: var(--text); font-weight: 600; }

/* ── footer ─────────────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); }
footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 30px; padding-bottom: 36px; font-size: 13px; color: var(--faint); }
footer .brand img { height: 20px; }
footer .links a { color: var(--faint); text-decoration: none; margin-left: 22px; }
footer .links a:hover { color: var(--text); }

/* ── responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .value-head { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 680px) {
  nav { gap: 8px; }
  nav .btn { padding: 9px 13px; font-size: 13px; }
  .brand span { display: none; }
  .logos .sep { display: none; }
  /* Logo strip on phones: label on its own line, then a 3×2 grid (AI row, tools row). */
  .logos .wrap { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 8px; justify-items: center; padding-top: 22px; padding-bottom: 22px; }
  .logos .label { grid-column: 1 / -1; text-align: center; margin-bottom: 2px; }
  .logo { flex-direction: column; gap: 7px; font-size: 12.5px; text-align: center; line-height: 1.25; }
  .logo img { height: 24px; }
  footer .links a { margin: 0 18px 0 0; }
}
@media (min-width: 1800px) { :root { --max: 1480px; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .msg, .card, .log .ln, .menu { opacity: 1 !important; transform: none !important; }
}
