/* GodBrowser base component structure. Aperture layouts follow from design/site.css.
   Design language: busymate-devtools/design-system (HARD-RULES R1–R16). Palette/type/prose
   live in assets/theme-tokens.css (loaded first); THIS file is layout-only + the DS recipes. */
:root {
  /* Layout-only vars. ALL colour/radius/font tokens come from theme-tokens.css. */
  --maxw: 80rem;
  --header-height: 3rem;   /* 48px CHROME BAR (DS §2.9) */
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }  /* a class display rule (e.g. .btn-login) overrides the UA [hidden]; force it */
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
code, pre, .mono { font-family: var(--font-mono); }
.muted { color: var(--muted-foreground); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ---- header ---- */
/* R1: FLAT var(--background) + a 1px border-b seam (never a translucent fill / blur). */
.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--border);
  background: var(--background);
}
.header-inner { display: flex; align-items: center; gap: 1rem; height: var(--header-height); }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.75rem; height: 1.75rem; border-radius: var(--radius-md);
  background: var(--primary); color: var(--primary-foreground);
  font-family: var(--font-mono); font-weight: 500; font-size: .8rem; letter-spacing: -.03em;
}
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 500; font-size: .9rem; letter-spacing: -.01em; }
.brand-accent { color: var(--muted-foreground); }
.brand-sub { font-size: .62rem; color: var(--muted-foreground); letter-spacing: .04em; }
.nav { display: none; margin-left: .5rem; gap: .15rem; }
/* R4: selected nav = the NEUTRAL rounded pill (background-selection), never brand,
   never a left bar. Hover rides the surface-200 tier. */
.nav-link {
  display: inline-flex; align-items: center; height: var(--control-h-nav); padding: 0 .5rem;
  border-radius: var(--radius-md); font-size: .875rem; font-weight: 500; text-decoration: none;
  color: var(--foreground-light); transition: background .12s, color .12s;
}
.nav-link:hover { background: var(--surface-200); color: var(--foreground); }
.nav-link.active { background: var(--background-selection); color: var(--foreground); }
.nav-mobile { margin-left: auto; position: relative; }
.nav-mobile summary {
  list-style: none; cursor: pointer; width: 2.75rem; height: 2.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong); border-radius: var(--radius-md); font-size: 1.25rem;
}
.nav-mobile summary::-webkit-details-marker { display: none; }
/* Floating overlay — the R1 popover exception (bg-popover + border + a subtle shadow). */
.nav-mobile-menu {
  position: absolute; right: 0; top: 2.75rem; width: 12rem;
  display: flex; flex-direction: column; gap: .15rem; padding: .5rem;
  border: 1px solid var(--border-overlay); border-radius: var(--radius-lg); background: var(--popover);
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.nav-mobile-menu .nav-link { min-height: 2.75rem; }
/* T-0700 login entry-point: header auth button (Login when logged-out / Dashboard
   when the .godbrowser.io gb_auth hint cookie is present). margin-left:auto pushes it
   to the right at every width (nav is mobile-hidden, nav-mobile is desktop-hidden). */
.header-auth { margin-left: auto; display: inline-flex; align-items: center; gap: .5rem; }
/* DS Button primary (green fill, weight 500) at the sanctioned marketing nav-item box (h-9). */
.btn-login {
  display: inline-flex; align-items: center; height: var(--control-h-nav); padding: 0 .8rem;
  border-radius: var(--radius-md); font-size: .875rem; font-weight: 500; text-decoration: none;
  background: var(--primary); color: var(--primary-foreground);
  border: 1px solid transparent; transition: opacity .12s, background .12s;
}
.btn-login:hover { opacity: .9; }
/* DS Button outline — opaque only (border-strong, hover surface-300). */
.btn-login.btn-ghost { background: transparent; color: var(--foreground); border-color: var(--border-strong); }
.btn-login.btn-ghost:hover { background: var(--surface-300); }

/* ---- layout / sections ---- */
main.container { padding-top: 2.5rem; padding-bottom: 3rem; }
.section { margin-top: 4rem; }
.section-head { max-width: 44rem; }
/* The ONE signature Supabase eyebrow — the heading-meta recipe (mono·UPPERCASE·
   tracking-wider·12px/500·muted-foreground). Replaces the old 600-weight sans eyebrow. */
.eyebrow {
  display: inline-block; font-family: var(--font-mono); font-size: .75rem; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: .75rem;
}
/* R8: heading weight 400–500, NEVER 600/700 (the loudest current violation). */
h1 { font-size: clamp(1.5rem, 3vw, 1.875rem); line-height: 1.15; letter-spacing: -.025em; margin: 0 0 1rem; font-weight: 400; }
h2 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); letter-spacing: -.015em; margin: 0 0 .75rem; font-weight: 400; }
h3 { font-size: 1rem; margin: 0 0 .4rem; font-weight: 400; }
.lead { font-size: 1rem; line-height: 1.6; color: var(--muted-foreground); max-width: 46rem; margin: 0 0 1rem; }
.page-head { margin-bottom: 1rem; max-width: 50rem; }

/* ---- hero ---- */
.hero { padding: 3rem 0 1rem; max-width: 52rem; }
/* Hero rides the prose-docs h1 register (30px/400) — flat, weight 400. */
.hero h1 { font-size: clamp(1.875rem, 4vw, 2.25rem); }
/* R8 / R4: no gradient text in the DS — flat var(--foreground). */
.grad { color: var(--foreground); }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* ---- buttons (DS Button — marketing CTA at the sanctioned h-9 box) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: var(--control-h-nav); padding: 0 1rem; border-radius: var(--radius-md);
  font-size: .875rem; font-weight: 500; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: opacity .12s, background .12s, border-color .12s;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { opacity: .9; }
.btn-ghost { background: transparent; color: var(--foreground); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--surface-300); }

/* ---- stats (== metric-card: mono value, sans label; flat surface-100 + 1px border) ---- */
.stats-row {
  margin-top: 2.5rem; display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.stat {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface-100); padding: 1rem;
}
.stat-value { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 500; letter-spacing: -.02em; }
.stat-label { font-size: .82rem; color: var(--muted-foreground); margin-top: .15rem; }

/* ---- cards / grids ---- */
.grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface-100); padding: 1rem;
}
.card h3 code, .feature code, .card p code, .lead code, .muted code {
  font-family: var(--font-mono); font-size: .85em; background: var(--surface-200);
  border: 1px solid var(--border-muted); border-radius: var(--radius-sm); padding: .05rem .35rem;
}
.feature h3 { margin-bottom: .5rem; }
.meta { font-size: .82rem; color: var(--muted-foreground); margin-top: .75rem; }
.cta-card { text-align: left; }
.cta-card h2 { margin-bottom: .5rem; }
/* Early-access signup (2026-09-06, INSTALL_DISABLED) */
.ea-form { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; align-items: flex-start; }
.ea-form .ea-input { flex: 1 1 16rem; margin: 0; }
.ea-form .btn { height: var(--control-h-nav); }
.ea-form .ea-msg { flex-basis: 100%; margin: .25rem 0 0; min-height: 1.1em; font-size: .85rem; }
.ea-form .ea-msg.ok { color: var(--success); }
.ea-form .ea-msg.err { color: var(--destructive, #f85149); }
/* Data-rights / support request form (/delete-account, /support) */
.dr-card { max-width: 52rem; }
.dr-form { display: grid; gap: .9rem; margin-top: 1rem; }
.dr-field { display: grid; gap: .35rem; }
.dr-field label { font-size: .875rem; color: var(--foreground); }
.dr-field label .muted { font-weight: 400; }
.dr-req { color: var(--muted-foreground); font-weight: 400; }
.dr-textarea { height: auto; min-height: 7rem; padding: .6rem .8rem; resize: vertical; line-height: 1.5; }
.dr-actions { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.dr-actions .ea-msg { flex-basis: 100%; margin: .25rem 0 0; min-height: 1.1em; font-size: .9rem; }
.dr-actions .ea-msg.ok { color: var(--success); }
.dr-actions .ea-msg.err { color: var(--destructive, #f85149); }
.dr-form.done .dr-field, .dr-form.done button { display: none; }
.dr-alt { margin-top: 1rem; font-size: .85rem; }
.support-grid .card h2 { font-size: 1rem; margin-bottom: .4rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* MCP tools — compact rows (name + one-line blurb), responsive (stack on mobile). */
.mcp-tools { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.25rem; }
.mcp-tool {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .25rem .75rem;
  padding: .7rem .9rem; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface-100);
}
.mcp-tool .mcp-name {
  font-family: var(--font-mono); font-size: .875rem; color: var(--foreground);
  font-weight: 500; flex: 0 0 auto;
}
.mcp-tool span { color: var(--muted-foreground); font-size: .875rem; flex: 1 1 16rem; }
.mcp-tool span code {
  font-family: var(--font-mono); font-size: .85em; color: var(--foreground);
  background: var(--surface-200); padding: 0 .25rem; border-radius: var(--radius-sm);
}
/* T-1572 — per-verb PARAMETERS, collapsed by default so the 90-verb index stays scannable and the
   full 730-param surface is one click away rather than absent. <details> so it works with no JS. */
.mcp-args { margin-top: .5rem; }
.mcp-args > summary {
  cursor: pointer; list-style: none; display: inline-block;
  font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted-foreground); background: var(--surface-75);
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .1rem .5rem;
}
.mcp-args > summary::-webkit-details-marker { display: none; }
.mcp-args > summary:hover { color: var(--foreground); }
.mcp-args[open] > summary { margin-bottom: .45rem; }
.mcp-arg {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .2rem .5rem;
  padding: .3rem 0 .3rem .75rem; border-left: 1px solid var(--border);
}
.mcp-arg > code {
  font-family: var(--font-mono); font-size: .8rem; color: var(--foreground);
  background: var(--surface-200); padding: 0 .25rem; border-radius: var(--radius-sm); flex: 0 0 auto;
}
.mcp-arg > span { flex: 1 1 14rem; font-size: .8125rem; color: var(--muted-foreground); }
.mcp-arg-req, .mcp-arg-opt {
  flex: 0 0 auto; font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase;
  letter-spacing: .04em; border-radius: var(--radius-sm); padding: 0 .35rem; border: 1px solid var(--border);
}
.mcp-arg-req { color: var(--foreground); background: var(--surface-200); }
.mcp-arg-opt { color: var(--muted-foreground); background: transparent; }
/* Outline chip — flat canvas fill + 1px opaque border (DS Badge outline). */
.mcp-soon {
  flex: 0 0 auto; font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted-foreground); background: var(--surface-75); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .05rem .5rem;
}
/* T-0879/T-0880: Know / Drive / Run-at-scale group headers on the /mcp tool list. The name + one-line
   note are STACKED (each its own block) so the label can never glue to its description (T-0880 M-1308). */
.mcp-group {
  display: block; margin-top: 1rem; padding-bottom: .35rem; border-bottom: 1px solid var(--border);
}
.mcp-group:first-child { margin-top: 0; }
.mcp-group-name { display: block; font-weight: 500; font-size: .9375rem; color: var(--foreground); }
.mcp-group-note { display: block; margin-top: .15rem; font-size: .8rem; color: var(--muted-foreground); }
/* Category (sub) headers = the ONE heading-meta eyebrow (mono·UPPERCASE·tracking-wider·
   12px/500·muted-foreground). R4: no left accent bar, R1: no fill. */
.mcp-sub {
  display: block; margin: 1.35rem 0 .1rem;
  font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 500;
  color: var(--muted-foreground);
}
.mcp-playbook { margin: .5rem 0 0; padding-left: 1.25rem; display: flex; flex-direction: column; gap: .4rem; }
.mcp-playbook li { color: var(--muted-foreground); font-size: .92rem; }

/* footer columns (Pages + Legal) */
.footer-nav { display: flex; gap: 2.5rem; flex-wrap: wrap; }

/* Legal pages (/privacy, /terms) — readable long-form; [PLACEHOLDER]s highlighted for the Master. */
.legal { max-width: 52rem; }
.legal h1 { font-size: 1.9rem; margin: 0 0 .4rem; letter-spacing: -.02em; }
.legal h2 { font-size: 1.15rem; margin: 2rem 0 .5rem; }
.legal h3 { font-size: 1rem; margin: 1.4rem 0 .4rem; }
.legal p, .legal li { color: var(--muted-foreground); line-height: 1.7; font-size: .95rem; }
.legal ul { margin: .5rem 0 1rem 1.2rem; }
.legal li { margin: .3rem 0; }
.legal hr { border: 0; border-top: 1px solid var(--border); margin: 1.8rem 0; }
.legal a { color: var(--brand-link); text-decoration: underline; text-underline-offset: 2px; }
.legal code { font-family: var(--font-mono); font-size: .85em; background: var(--surface-200); border: 1px solid var(--border-muted); padding: 0 .25rem; border-radius: var(--radius-sm); }
.legal mark.ph {
  background: var(--surface-200); color: var(--warning-600);
  border: 1px solid var(--warning-500); border-radius: var(--radius-sm);
  padding: 0 .3rem; font-weight: 500; font-size: .88em;
}

/* ---- code blocks ---- */
.code { position: relative; margin: 1.1rem 0; }
.code pre {
  margin: 0; overflow-x: auto;
  background: var(--surface-200); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1rem 1.1rem;
  font-size: .85rem; line-height: 1.6;
}
.code code { font-family: var(--font-mono); color: var(--foreground); white-space: pre; }
.copy-btn {
  position: absolute; top: .55rem; right: .55rem;
  background: var(--surface-300); color: var(--foreground);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .25rem .6rem; font-size: .72rem; font-weight: 500;
  cursor: pointer; font-family: var(--font-sans); transition: background .12s;
}
.copy-btn:hover { background: var(--background-selection); }
.copy-btn.copied { color: var(--success); border-color: var(--success); }

/* ---- notice / lists (flat card, full 1px border seam — no left accent bar) ---- */
.notice {
  margin-top: 1.5rem; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--surface-100); padding: 1rem 1.2rem;
  font-size: .92rem; color: var(--muted-foreground);
}
.notice strong { color: var(--foreground); }
.bullet { padding-left: 1.2rem; color: var(--muted-foreground); }
.bullet li { margin: .4rem 0; }
.bullet code { font-size: .85em; }

/* ---- chips ---- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.chip {
  display: inline-flex; align-items: center; padding: .3rem .7rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface-75); font-size: .82rem; color: var(--muted-foreground);
}

/* ---- params page ---- */
.params-summary {
  margin-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
}
.summary-headline { display: flex; align-items: baseline; gap: .6rem; }
.summary-big { font-family: var(--font-mono); font-size: 2rem; font-weight: 500; letter-spacing: -.02em; }
.summary-label { color: var(--muted-foreground); font-size: .95rem; }
.summary-pills { display: flex; flex-wrap: wrap; gap: .4rem; }
.summary-meta { width: 100%; font-size: .8rem; font-family: var(--font-mono); }
.params-controls { display: grid; gap: .6rem; margin-top: 1.5rem; grid-template-columns: 1fr; }
.search, .select {
  width: 100%; height: var(--control-h-field); padding: 0 .8rem;
  background: var(--surface-100); color: var(--foreground);
  border: 1px solid var(--border-control); border-radius: var(--radius-md); font-size: .875rem;
  font-family: var(--font-sans);
}
.search:focus, .select:focus { outline: 2px solid var(--ring); outline-offset: 1px; }

/* ---- /docs parameter search ---- */
.docs-search-wrap { position: relative; margin: 1.5rem 0 .25rem; }
.docs-search { padding-right: 5rem; }
.docs-search-clear {
  position: absolute; top: 0; right: .4rem; height: var(--control-h-field);
  padding: 0 .7rem; background: none; border: 0; cursor: pointer;
  color: var(--muted-foreground); font-family: var(--font-sans); font-size: .8rem;
}
.docs-search-clear:hover { color: var(--foreground); text-decoration: underline; }
.docs-search-status { margin: .5rem 0 0; font-size: .82rem; min-height: 1.1em; }
.doc-no-results { margin: 0 0 1rem; color: var(--muted-foreground); font-size: .9rem; }
/* a hidden card/section must not keep its grid or flex box alive */
.param-entry[hidden], .doc-section[hidden], .doc-nav li[hidden] { display: none !important; }
.table-wrap { margin-top: 1.25rem; overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.params-table { width: 100%; border-collapse: collapse; font-size: .875rem; min-width: 640px; }
/* thead = the heading-meta eyebrow on the surface-200 raise (not --card). */
.params-table thead th {
  text-align: left; padding: .75rem 1rem; font-family: var(--font-mono); font-size: .75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .05em; color: var(--muted-foreground);
  background: var(--surface-200); border-bottom: 1px solid var(--border); position: sticky; top: 0;
}
.params-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.params-table tr:last-child td { border-bottom: none; }
.params-table tbody tr:hover { background: var(--surface-200); }
.switch-cell { font-family: var(--font-mono); color: var(--foreground); font-weight: 500; white-space: nowrap; }
.type-cell { color: var(--foreground); font-weight: 500; white-space: nowrap; }
.task-cell { color: var(--muted-foreground); white-space: nowrap; font-size: .82em; }
.meta-ticket { display: inline-block; margin-left: .3rem; font-size: .78em; color: var(--muted-foreground); opacity: .8; }
.fam-cell { color: var(--muted-foreground); white-space: nowrap; }
.desc-cell { color: var(--muted-foreground); }
.no-results { padding: 1.5rem; text-align: center; }

/* ---- /docs param reference (docs.busymate.net-style sidebar) ---- */
.doc-note {
  margin-top: 1.25rem; padding: .85rem 1.1rem; font-size: .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--surface-100);
}
.docs-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; align-items: start; }
.docs-sidebar { display: none; }
.doc-nav-group { margin-bottom: 1.25rem; }
/* Group head = the heading-meta eyebrow (mono·UPPERCASE·tracking-wider·12px/500·muted). */
.doc-nav-head {
  display: block; font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted-foreground); margin-bottom: .4rem; font-weight: 500;
}
.doc-nav ul { list-style: none; margin: 0; padding: 0; }
.doc-nav li a {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  padding: .28rem .55rem; border-radius: var(--radius-md); text-decoration: none;
  color: var(--foreground-light); font-size: .875rem; line-height: 1.3;
}
.doc-nav li a:hover { background: var(--surface-200); color: var(--foreground); }
/* T-1189 scroll-spy active entry — the NEUTRAL rounded pill (R4: background-selection,
   never brand, never a left bar) + a heavier-but-flat weight (500) + a lifted fg. Two
   token-driven cues (weight + pill fill), never colour-alone. DO NOT regress this class. */
.doc-nav li a.active {
  color: var(--foreground); font-weight: 500;
  background: var(--background-selection);
}
.doc-nav li a.active .doc-count { color: var(--foreground); }
@media (prefers-reduced-motion: no-preference) {
  .doc-nav li a { transition: color .12s, background .12s; }
}
.doc-count {
  font-family: var(--font-mono); font-size: .7rem; color: var(--muted-foreground);
  background: var(--surface-200);
  border-radius: var(--radius-sm); padding: .05rem .4rem; flex: none;
}
.doc-section { margin-bottom: 2.75rem; scroll-margin-top: 4.5rem; }
.doc-section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  border-bottom: 1px solid var(--border); padding-bottom: .5rem; margin-bottom: .2rem;
}
.doc-section-head h2 { margin: 0; }
.doc-count-lg { font-size: .78rem; color: var(--muted-foreground); font-family: var(--font-mono); flex: none; }
.doc-blurb { margin: .7rem 0 1.1rem; max-width: 46rem; }
/* T-0861 #3 (Master no-horizontal-scroll fix): a grid/flex child must have min-width:0 or its long
   code lines force the whole column past the viewport = page-level horizontal scroll. */
.docs-main { min-width: 0; }
.param-list { display: grid; gap: .85rem; min-width: 0; }
.param-entry {
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1rem;
  background: var(--surface-100);
  max-width: 100%; min-width: 0; box-sizing: border-box; overflow: hidden;
}
.param-flag { margin: 0 0 .55rem; font-size: 1rem; overflow-wrap: anywhere; }
.param-flag code { font-family: var(--font-mono); color: var(--foreground); font-weight: 500; }
.param-meta { display: flex; flex-wrap: wrap; gap: .35rem 1.4rem; margin-bottom: .55rem; }
.pmeta { font-size: .8rem; color: var(--muted-foreground); min-width: 0; }
/* heading-meta eyebrow key (mono·UPPERCASE·tracking-wider·500·muted). */
.pmeta-k { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .05em; font-size: .66rem; font-weight: 500; margin-right: .4rem; }
.pmeta code { font-family: var(--font-mono); font-size: .8rem; color: var(--foreground); overflow-wrap: anywhere; }
.param-what { margin: .2rem 0 .65rem; font-size: .92rem; overflow-wrap: anywhere; }
.param-eg { position: relative; background: var(--surface-200); border: 1px solid var(--border); border-radius: var(--radius-md); margin-top: .6rem; max-width: 100%; box-sizing: border-box; overflow: hidden; }
.param-eg pre { margin: 0; overflow-x: hidden; max-width: 100%; box-sizing: border-box; padding: .55rem .7rem; padding-right: 4rem; }
/* Master M-d4d4: plain neutral monospace (no green), the command WRAPS inside the card (no h-scroll). */
.param-eg code { font-size: .82rem; color: var(--foreground); white-space: pre-wrap; overflow-wrap: anywhere; word-break: break-word; font-family: var(--font-mono); }
.lang-chip { position: absolute; top: 0; left: 0; background: var(--surface-300); color: var(--muted-foreground); border-bottom-right-radius: var(--radius-sm); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: .12rem .5rem; font: 500 .66rem/1.4 var(--font-mono); letter-spacing: .04em; text-transform: uppercase; }
.param-eg pre { padding-top: 1.4rem; }
.param-eg .copy-btn { top: .35rem; right: .4rem; padding: .18rem .5rem; font-size: .66rem; }
/* CSS-only [macOS/Linux]/[Windows] install tabs (no JS) — DS segmented-control feel. */
.os-tabs > input { position: absolute; opacity: 0; pointer-events: none; }
.os-tablabels { display: flex; gap: .4rem; margin-bottom: .8rem; }
.os-tablabels label { padding: .4rem .9rem; border: 1px solid var(--border-strong); border-radius: var(--radius-md); cursor: pointer; font-size: .82rem; font-weight: 500; color: var(--foreground-light); background: transparent; }
.os-tablabels label:hover { background: var(--surface-300); }
.os-panel { display: none; }
#os-mac:checked ~ .os-tablabels label[for="os-mac"], #os-win:checked ~ .os-tablabels label[for="os-win"] { background: var(--background-selection); color: var(--foreground); border-color: var(--border-strong); }
#os-mac:checked ~ .os-panel.os-mac, #os-win:checked ~ .os-panel.os-win { display: block; }
@media (min-width: 64rem) {
  .docs-layout { grid-template-columns: 15rem 1fr; gap: 2.5rem; }
  .docs-sidebar { display: block; position: sticky; top: 4.5rem; max-height: calc(100vh - 6rem); overflow-y: auto; }
}

.legend { margin-top: 1rem; font-size: .85rem; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }

/* ---- badges ---- */
/* DS Badge — outline recipe: flat canvas fill (surface-75) + 1px OPAQUE border +
   a semantic text tier. No translucent color-mix fills (R2/R3). */
.badge {
  display: inline-flex; align-items: center; padding: .15rem .55rem;
  border-radius: var(--radius-sm); font-size: .72rem; font-weight: 500;
  font-family: var(--font-mono); background: var(--surface-75); border: 1px solid var(--border); white-space: nowrap;
}
.badge-ok { color: var(--success); border-color: color-mix(in srgb, var(--success) 60%, var(--border)); }
.badge-warn { color: var(--warning-600); border-color: var(--warning-500); }
.badge-bad { color: var(--destructive-600); border-color: var(--destructive-500); }

/* ---- status page ---- */
.proof-card { display: flex; gap: .85rem; align-items: flex-start; }
.proof-check {
  flex: none; width: 1.6rem; height: 1.6rem; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--success); background: var(--surface-200); border: 1px solid var(--border);
  font-weight: 500; font-size: .9rem;
}
.dash-card { text-decoration: none; transition: border-color .12s, background .12s; display: block; }
.dash-card:hover { border-color: var(--border-strong); background: var(--surface-200); }
.dash-card .ext { color: var(--muted-foreground); font-size: .85em; }
.dash-card code { display: block; margin-top: .75rem; font-size: .78rem; color: var(--muted-foreground); word-break: break-all; }

/* ---- footer ---- */
.site-footer { margin-top: 4rem; border-top: 1px solid var(--border); }
.footer-inner { display: grid; gap: 2rem; padding: 3rem 1.5rem 1.5rem; grid-template-columns: 1fr; }
.footer-brand { display: flex; gap: .75rem; align-items: flex-start; }
.footer-brand .brand-name { font-size: 1rem; }
.footer-brand p { max-width: 32rem; font-size: .9rem; margin: .4rem 0 0; }
.footer-nav h2 { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-foreground); margin: 0 0 .6rem; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.footer-nav a { font-size: .9rem; color: var(--muted-foreground); text-decoration: none; }
.footer-nav a:hover { color: var(--foreground); text-decoration: underline; }
.footer-bottom { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); }
.footer-bottom p { margin: 0; font-size: .8rem; }
/* Registered-entity line: the legally-required identity, deliberately quieter than the © line. */
.footer-entity { margin-top: .35rem !important; font-size: .74rem !important; opacity: .8; }

/* ---- responsive ---- */
@media (min-width: 640px) {
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .params-controls { grid-template-columns: 2fr 1fr 1fr; }
  .footer-inner { grid-template-columns: 2fr 1fr; }
}
@media (min-width: 768px) {
  .nav { display: flex; }
  .nav-mobile { display: none; }
}
@media (min-width: 900px) {
  .stats-row { grid-template-columns: repeat(5, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Aperture: public editorial layouts. Palette and dimensions come from tokens.json. */
:root { --maxw: 78rem; --header-height: 5rem; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { background: var(--background); }
::selection { color: var(--primary-foreground); background: var(--primary); }
:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible { outline: 2px solid var(--ring); outline-offset: 4px; }
:where(button, input, select, textarea) { font: inherit; }
:where(button, input, select, textarea):disabled { cursor: not-allowed; opacity: .55; }
:where(input, select, textarea)[aria-invalid="true"] { border-color: var(--destructive); }
:where(p, li, h1, h2, h3, dd) { overflow-wrap: anywhere; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.75rem); letter-spacing: -.055em; line-height: 1.04; }
h2 { font-size: clamp(1.7rem, 3vw, 2.65rem); line-height: 1.13; letter-spacing: -.04em; }
h3 { font-size: 1.2rem; letter-spacing: -.025em; }
p { text-wrap: pretty; }
.container { padding-inline: clamp(1.25rem, 4vw, 3rem); }
main.container { padding-block: 3.5rem 1rem; min-height: 55vh; }
.site-header { background: var(--background); }
.header-inner { gap: 1.75rem; }
.brand { gap: .75rem; flex-shrink: 0; }
.brand-mark { width: 1.75rem; height: 1.75rem; border: 0; border-radius: .5rem; background: var(--brand-gold); color: var(--brand-gold-foreground); font-size: .7rem; letter-spacing: -.03em; }
.brand-name { font-size: 1.125rem; letter-spacing: -.05em; }
.brand-accent { color: inherit; }
.brand-sub { margin-top: .3rem; font: .55rem var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.nav { gap: .35rem; margin-left: auto; }
.nav-link { height: 2.75rem; padding-inline: .8rem; border-radius: 0; font-size: .8125rem; font-weight: 400; border-bottom: 2px solid transparent; }
.nav-link.active { background: transparent; border-bottom-color: var(--brand-gold); }
.nav-link:hover { background: var(--surface-200); }
.header-auth { margin-left: 0; }
.btn-login { background: transparent; color: var(--foreground); border-color: var(--border-strong); height: 2.5rem; padding-inline: 1rem; }
.btn-login:hover { background: var(--primary); color: var(--primary-foreground); opacity: 1; }
.nav-mobile-menu { box-shadow: var(--shadow-overlay); width: 16rem; padding: .75rem; top: 3.25rem; }
.nav-mobile-menu .nav-link { border: 0; border-radius: var(--radius-md); }
.nav-mobile-menu .active { background: var(--surface-200); }
.skip-link { position: fixed; top: .5rem; left: 1rem; z-index: 100; padding: .75rem 1rem; background: var(--primary); color: var(--primary-foreground); transform: translateY(-200%); }
.skip-link:focus { transform: none; }
.eyebrow { font-size: .65rem; letter-spacing: .11em; margin-bottom: 1.25rem; }
.lead { font-size: 1.075rem; line-height: 1.75; max-width: 44rem; }
.page-head { max-width: none; padding-block: 1rem 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.page-head h1 { max-width: 20ch; }
.page-head .lead { margin-top: 1.5rem; margin-bottom: 0; }
.section { margin-top: clamp(3.5rem, 7vw, 6.5rem); }
.section-head { max-width: 45rem; }
.section-head .lead { margin-top: 1.25rem; }
.btn { min-height: var(--control-h-nav); height: auto; padding: .7rem 1.25rem; gap: .75rem; font: 500 .8125rem var(--font-sans); border-radius: var(--radius-md); line-height: 1.4; transition: background var(--motion-fast), border-color var(--motion-fast), color var(--motion-fast); }
.btn-primary { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); opacity: 1; }
.btn-ghost { background: transparent; color: var(--foreground); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--surface-200); border-color: var(--foreground); }
.btn:active, .btn-login:active { transform: translateY(1px); }
.card { border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: none; }
.grid { gap: 1.5rem; }
.feature { border: 0; border-top: 1px solid var(--border); background: transparent; border-radius: 0; padding: 1.75rem 0; }
.feature p { max-width: 43ch; font-size: .9375rem; }
.stats-row { grid-template-columns: repeat(4, 1fr); gap: 0; border-block: 1px solid var(--border); margin-top: 2rem; }
.stat { border: 0; border-right: 1px solid var(--border); border-radius: 0; padding: 1.75rem; background: transparent; }
.stat:first-child { padding-left: 0; }.stat:last-child { border-right: 0; }
.stat-value { font: 500 1.5rem var(--font-display); letter-spacing: -.04em; }
.stat-label { margin-top: .5rem; font-size: .75rem; }
.home-hero { max-width: none; padding: 2rem 0 0; }
.home-hero .eyebrow { display: flex; align-items: center; gap: .75rem; }
.home-hero .eyebrow::before { content: ""; width: .4rem; height: .4rem; background: var(--brand-gold); }
.home-hero h1 { font-size: clamp(3.25rem, 7.2vw, 6.3rem); max-width: 15ch; font-weight: 500; letter-spacing: -.075em; line-height: .99; margin: .25rem 0 2rem; }
.home-hero h1 span { color: var(--muted-foreground); }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.hero-bottom .lead { max-width: 38rem; font-size: 1.05rem; margin: 0; }
.hero-bottom .cta-row { flex-shrink: 0; margin: 0; }
.persona-plate { display: grid; grid-template-columns: 1fr 1.25fr; background: var(--gb-ink); color: var(--gb-white); border-radius: var(--radius-lg); overflow: hidden; margin: 0; }
.persona-caption { padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; border-right: 1px solid #454545; }
.persona-caption .eyebrow { color: #b9b9b3; }
.persona-caption h2 { max-width: 15ch; font-size: clamp(1.9rem, 3vw, 2.7rem); }
.persona-caption p { max-width: 36ch; font-size: .875rem; color: #b9b9b3; margin: .75rem 0 0; }
.persona-seed { display: flex; align-items: center; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid #454545; }
.persona-seed span { font: .65rem var(--font-mono); color: #b9b9b3; }.persona-seed code { font-size: .8rem; color: var(--brand-gold); }
.persona-window { margin: 2.5rem; border: 1px solid #626262; border-radius: var(--radius-md); min-width: 0; }
.persona-window-bar { padding: .8rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid #626262; color: #b9b9b3; font: .625rem var(--font-mono); }
.window-aperture { display: inline-block; width: 1.5rem; height: 1rem; border: 1px solid #b9b9b3; border-top: 4px solid #b9b9b3; }
.persona-options { display: flex; padding: 1rem 1rem 0; gap: .5rem; flex-wrap: wrap; }
.persona-option { font: .7rem var(--font-mono); min-height: 2.5rem; border: 1px solid #626262; border-radius: var(--radius-sm); padding: .5rem .7rem; background: transparent; color: #d9d9d5; cursor: pointer; }
.persona-option:hover { background: #333; }.persona-option[aria-pressed="true"] { background: var(--brand-gold); color: var(--brand-gold-foreground); border-color: var(--brand-gold); }
.persona-option:focus-visible { outline-color: white; }
.persona-fields { padding: .5rem 1rem 1rem; margin: 0; font: .725rem var(--font-mono); }
.persona-fields div { display: flex; gap: 1rem; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid #393939; }
.persona-fields div:last-child { border-bottom: 0; }.persona-fields dt { color: #b9b9b3; }.persona-fields dd { margin: 0; text-align: right; }
.persona-footnote { font: .625rem var(--font-mono); color: #b9b9b3; padding: 0 1rem 1rem; margin: 0; }
.capability-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 5rem; }
.capability-layout .grid { margin: 0; gap: .75rem 2rem; }
.capability-layout .section-head h2 { max-width: 13ch; }
.capability-layout .section-head .lead { max-width: 30ch; font-size: 1rem; }
.workflow-section { border-block: 1px solid var(--border); padding-block: 3rem; }
.workflow-title { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.workflow-title a { font-size: .875rem; text-underline-offset: .3rem; }
.workflow-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; list-style: none; padding: 0; margin: 0; counter-reset: steps; }
.workflow-steps li { counter-increment: steps; }
.workflow-steps li::before { content: "0" counter(steps); font: .75rem var(--font-mono); color: var(--brand-link); display: block; margin-bottom: 1.5rem; }
.workflow-steps p { color: var(--muted-foreground); font-size: .9rem; max-width: 32ch; }
.ea-card { padding: 3rem; border: 0; background: var(--surface-200); display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 3rem; align-items: start; scroll-margin-top: 6rem; }
.ea-card h2 { grid-column: 1; margin: 0; font-size: 2.2rem; }.ea-card > p { grid-column: 1; margin: 0; font-size: .9rem; max-width: 40ch; }
.ea-form { grid-column: 2; grid-row: 1 / 3; margin: 0; gap: .75rem; }
.ea-form label:not(.sr-only) { width: 100%; font-size: .8rem; }.ea-form .ea-input { flex-basis: 12rem; }
.ea-form .btn { height: auto; }.ea-msg { overflow-wrap: anywhere; }
.search, .select { border-radius: var(--radius-md); min-height: var(--control-h-field); }
.dr-card { margin-inline: auto; max-width: 48rem; padding: 2rem; }
.dr-form { gap: 1.5rem; }.dr-field label { font-weight: 500; }.dr-alt { padding-top: 1rem; border-top: 1px solid var(--border); }
.dr-textarea { height: auto; min-height: 9rem; padding-block: .8rem; }
.notice { background: var(--surface-200); border: 0; border-left: 2px solid var(--border-strong); border-radius: 0; padding: 1.25rem 1.5rem; }
.code pre { padding: 1.5rem; padding-top: 3rem; font-size: .8rem; background: var(--surface-200); }
.copy-btn { min-height: 2rem; min-width: 3.5rem; }
.mcp-tool { border-inline: 0; border-top: 0; border-radius: 0; padding: 1.2rem 0; background: transparent; }
.mcp-tools { gap: 0; }.mcp-group { margin-top: 2.5rem; padding-bottom: 1rem; }.mcp-group-name { font-size: 1.4rem; letter-spacing: -.03em; }
.mcp-tool, .mcp-tool > span, .mcp-tool .mcp-name, .mcp-args, .mcp-arg > code, .mcp-arg > span { min-width: 0; max-width: 100%; overflow-wrap: anywhere; }
.mcp-tool .mcp-arg-req, .mcp-tool .mcp-arg-opt { flex: 0 0 auto; }
.mcp-search-wrap { max-width: 35rem; margin-block: 2rem; }.mcp-search-wrap label { display: block; font-size: .8rem; margin-bottom: .5rem; }
.doc-note, .doc-note code { overflow-wrap: anywhere; }
.doc-note summary { cursor: pointer; padding-block: .5rem; }.doc-note summary .mcp-soon { display: inline-block; margin-left: .5rem; white-space: normal; }
.doc-note[open] summary { padding-bottom: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.param-entry { border-inline: 0; border-top: 0; border-radius: 0; padding-inline: 0; background: transparent; }.param-list { gap: 0; }
[data-page="docs"] .page-head h1, [data-page="mcp"] .page-head h1, [data-page="live"] .page-head h1 { font-size: clamp(2.5rem, 4vw, 3.5rem); max-width: 27ch; }
[data-page="docs"] .page-head { padding-bottom: 1.5rem; }[data-page="docs"] .page-head .lead { font-size: 1rem; }
.ph-card .badge { white-space: normal; max-width: 100%; overflow-wrap: anywhere; }.ph-card .ph-rows th { width: 38%; }
.mcp-args > summary { min-height: 2rem; padding: .5rem .7rem; }.mcp-arg { padding-block: .65rem; }
.docs-layout { gap: 3.5rem; }.docs-sidebar { padding-right: 1.5rem; border-right: 1px solid var(--border); }
.docs-sidebar a { padding-block: .65rem; }.docs-content { min-width: 0; }.docs-category { margin-top: 3rem; }
.param-entry { padding-block: 1.3rem; }.param-title { line-height: 1.6; }.param-title code { overflow-wrap: anywhere; }
.params-controls { padding: 1rem; border: 1px solid var(--border); background: var(--surface-200); border-radius: var(--radius-md); }
.table-wrap { border-radius: var(--radius-md); max-width: 100%; overflow-x: auto; }
table { font-variant-numeric: tabular-nums; }th { font-size: .7rem; letter-spacing: .02em; background: var(--surface-200); }td, th { padding: .9rem 1rem; }
.legal { margin-inline: auto; max-width: 47rem; }.legal h1 { font-size: clamp(2.75rem, 5vw, 4rem); margin-block: 1rem 2rem; letter-spacing: -.055em; }
.legal h2 { font-size: 1.5rem; margin-top: 3rem; letter-spacing: -.03em; }.legal p, .legal li { font-size: 1rem; line-height: 1.85; }
.site-footer { margin-top: 6rem; background: var(--surface-200); }
.footer-inner { grid-template-columns: 1fr 1.2fr; gap: 4rem; padding-block: 3.5rem; }.footer-brand p { max-width: 29rem; line-height: 1.8; margin-top: 1rem; font-size: .85rem; }
.footer-nav { justify-content: space-between; gap: 2rem; }.footer-nav h2 { color: var(--foreground); font: .65rem var(--font-mono); margin-bottom: 1rem; }.footer-nav ul { gap: .6rem; }.footer-nav a { font-size: .8rem; }
.footer-bottom { padding-block: 1.5rem; }.footer-bottom p { font-size: .7rem; }.footer-entity { opacity: 1; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }.guide-swatch { height: 5rem; border: 1px solid var(--border); margin-bottom: .75rem; }.guide-grid .mono { font-size: .75rem; }
.guide-display { font: 500 clamp(2.5rem,4vw,3.5rem)/1.05 var(--font-display); letter-spacing: -.05em; margin: 0 0 1rem; }
.guide-components { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.redirect-page { padding-block: 2rem; }
@media (min-width: 64rem) { .docs-sidebar { top: 6rem; max-height: calc(100vh - 7rem); } }
@media (max-width: 1050px) { .hero-bottom { align-items: flex-start; flex-direction: column; }.capability-layout { gap: 3rem; grid-template-columns: 1fr 1.4fr; }.nav-link { padding-inline: .5rem; }.header-inner { gap: 1rem; }.persona-caption, .persona-window { padding: 1.75rem; }.persona-window { padding: 0; margin: 1.75rem; } }
@media (max-width: 767px) {
  :root { --header-height: 4.25rem; }.nav { display: none; }.nav-mobile { display: block; margin-left: 0; }.header-auth { margin-left: auto; }.brand-sub { display: none; }
  main.container { padding-top: 2rem; }.home-hero { padding-top: 1rem; }.home-hero h1 { font-size: clamp(3rem, 11vw, 5rem); }.hero-bottom { gap: 1.5rem; margin-bottom: 2rem; }
  .persona-plate, .capability-layout { grid-template-columns: 1fr; }.persona-caption { border-right: 0; border-bottom: 1px solid #454545; padding: 1.5rem; gap: 1.25rem; }.persona-caption h2 { max-width: 19ch; }.persona-seed { padding-top: 1rem; }.persona-window { margin: 1.5rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }.stat { padding: 1.5rem 1rem; }.stat:nth-child(2) { border-right: 0; }.stat:nth-child(n+3) { border-top: 1px solid var(--border); }.stat:nth-child(3) { padding-left: 0; }
  .capability-layout { gap: 1.5rem; }.capability-layout .section-head h2 { max-width: 20ch; }.capability-layout .section-head .lead { max-width: 44ch; }.capability-layout .grid { gap: 0; }
  .workflow-title { align-items: flex-start; flex-direction: column; gap: .5rem; }.workflow-steps { grid-template-columns: 1fr; gap: 1.5rem; }.workflow-steps li { display: grid; grid-template-columns: 2rem 1fr; gap: .25rem 1rem; }.workflow-steps li::before { grid-row: 1 / 3; margin: .3rem 0 0; }.workflow-steps p { grid-column: 2; max-width: 40ch; margin: 0; }
  .ea-card { display: block; padding: 1.75rem; }.ea-card > p { margin-top: 1rem; }.ea-form { margin-top: 1.5rem; }.ea-form .ea-input { flex-basis: 100%; }.ea-form .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }.footer-nav { justify-content: flex-start; gap: 2rem 3rem; }.footer-bottom { padding-inline: 1.25rem; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }.page-head { padding-top: .75rem; }.page-head h1 { font-size: 2.6rem; }.card { padding: 1.25rem; }
}
@media (max-width: 380px) { .header-inner.container { padding-inline: 1rem; gap: .375rem; }.brand { gap: .5rem; }.brand-name { font-size: .9375rem; }.brand-mark { width: 1.6rem; }.btn-login { padding-inline: .5rem; font-size: .75rem; }.nav-mobile summary { width: 2.5rem; }.persona-window { margin: 1rem; }.persona-options { gap: .3rem; }.persona-option { padding-inline: .55rem; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } }
