/*
 * Aegis marketing page — Axis design system, transcribed.
 *
 * ⚠️ THE SAME TOKEN SUBSET `portal-spa/src/styles.css` AND THE `/download` PAGE CARRY, and
 * deliberately not an import of the real `bedrock-platform-ou/axis/assets/css/axis.css` (212 KB
 * of application styling, with no hero/pricing/steps primitives — Axis is an app system, so a
 * marketing page is composed from its tokens, `.card`, `.hs-chip` and `.btn-primary`). Light
 * values come from axis.css `:root`; the dark surfaces are axis.css's own `[data-hs-theme="dark"]`
 * values, the same ones the `/download` page uses. `test/claims.test.ts` pins the palette so the
 * three customer-facing surfaces cannot drift apart silently; when the company palette changes,
 * re-extract from axis.css and update all three together.
 *
 * Theme mechanics: every token is defined on bare `:root` (light), redefined under
 * `prefers-color-scheme: dark` guarded by `:root:not([data-hs-theme="light"])`, and again under
 * `:root[data-hs-theme="dark"]` so an explicit choice wins in both directions. `theme.js` sets the
 * attribute before first paint.
 *
 * 🔴 NO `style=""` ATTRIBUTES AND NO `<style>` BLOCKS IN THE HTML. The CloudFront CSP is
 * `style-src 'self'`; anything inline is silently dropped by the browser and looks like a bug.
 */

:root {
  --axis-blue-950: #12323f;
  --axis-blue-900: #184f6d;
  --axis-blue-800: #285f7a;
  --axis-blue-200: #b9e5f7;
  --axis-blue-100: #c6edfe;
  --axis-blue-100-rgb: 198, 237, 254;
  --axis-blue-800-rgb: 40, 95, 122;
  --axis-blue-900-rgb: 24, 79, 109;

  --hs-bg: #ffffff;
  --hs-surface: #ffffff;
  --hs-muted-surface: #f5f6f8;
  --hs-text: #141414;
  --hs-muted-text: #666666;
  --hs-border: #dedede;
  --hs-border-strong: #c7c7c7;

  --hs-primary: var(--axis-blue-800);
  --hs-primary-text: var(--axis-blue-900);
  --hs-primary-soft: rgba(var(--axis-blue-100-rgb), 0.42);
  --hs-primary-border: rgba(var(--axis-blue-800-rgb), 0.24);

  --hs-warning-solid: #9b7432;
  --hs-warning-text: #6f501d;
  --hs-warning-soft: rgba(155, 116, 50, 0.15);
  --hs-warning-border: rgba(155, 116, 50, 0.28);

  --hs-success: #3f7f68;
  --hs-success-text: #2f654f;
  --hs-success-soft: rgba(63, 127, 104, 0.12);

  --hs-card-border: rgba(20, 20, 20, 0.058);
  --hs-card-surface: linear-gradient(180deg, rgba(var(--axis-blue-100-rgb), 0.1) 0%, rgba(255, 255, 255, 0) 70px), var(--hs-surface);
  --hs-card-shadow: 0 1px 2px rgba(20, 20, 20, 0.035), 0 12px 34px rgba(20, 20, 20, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  --hs-card-shadow-hover: 0 1px 2px rgba(20, 20, 20, 0.045), 0 16px 42px rgba(20, 20, 20, 0.07),
    inset 0 0 0 1px rgba(var(--axis-blue-100-rgb), 0.28);
  --hs-header-bg: rgba(255, 255, 255, 0.96);
  /* 🔴 THE 800-LEVEL TOKEN IN LIGHT MODE, the 100-level in dark. The pale tint over white
   * measured 1.10:1 against WCAG's 3:1 for a focus indicator (portal-spa/styles.css:47-57). */
  --hs-focus-ring: rgba(var(--axis-blue-800-rgb), 0.85);
  --hs-radius: 8px;
  --hs-radius-sm: 6px;

  --hs-hero-glow: radial-gradient(60% 50% at 50% 0%, rgba(var(--axis-blue-100-rgb), 0.55) 0%, rgba(255, 255, 255, 0) 100%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-hs-theme="light"]) {
    --hs-bg: #202329;
    --hs-surface: #2b2f36;
    --hs-muted-surface: #363b44;
    --hs-text: #f4f6f8;
    --hs-muted-text: #c5cad3;
    --hs-border: rgba(255, 255, 255, 0.18);
    --hs-border-strong: rgba(255, 255, 255, 0.28);
    --hs-primary: var(--axis-blue-200);
    --hs-primary-text: #d8f3ff;
    --hs-primary-soft: rgba(var(--axis-blue-100-rgb), 0.12);
    --hs-primary-border: rgba(var(--axis-blue-100-rgb), 0.24);
    --hs-warning-solid: #c4a15e;
    --hs-warning-text: #e7c98a;
    --hs-success-text: #8fd0b6;
    --hs-card-border: rgba(255, 255, 255, 0.07);
    --hs-card-surface: linear-gradient(180deg, rgba(var(--axis-blue-100-rgb), 0.05) 0%, rgba(43, 47, 54, 0) 70px), var(--hs-surface);
    --hs-card-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 12px 34px rgba(0, 0, 0, 0.35);
    --hs-card-shadow-hover: 0 1px 2px rgba(0, 0, 0, 0.45), 0 16px 42px rgba(0, 0, 0, 0.4),
      inset 0 0 0 1px rgba(var(--axis-blue-100-rgb), 0.18);
    --hs-header-bg: rgba(32, 35, 41, 0.96);
    --hs-focus-ring: rgba(var(--axis-blue-100-rgb), 0.55);
    --hs-hero-glow: radial-gradient(60% 50% at 50% 0%, rgba(var(--axis-blue-800-rgb), 0.45) 0%, rgba(32, 35, 41, 0) 100%);
    color-scheme: dark;
  }
}

:root[data-hs-theme="dark"] {
  --hs-bg: #202329;
  --hs-surface: #2b2f36;
  --hs-muted-surface: #363b44;
  --hs-text: #f4f6f8;
  --hs-muted-text: #c5cad3;
  --hs-border: rgba(255, 255, 255, 0.18);
  --hs-border-strong: rgba(255, 255, 255, 0.28);
  --hs-primary: var(--axis-blue-200);
  --hs-primary-text: #d8f3ff;
  --hs-primary-soft: rgba(var(--axis-blue-100-rgb), 0.12);
  --hs-primary-border: rgba(var(--axis-blue-100-rgb), 0.24);
  --hs-warning-solid: #c4a15e;
  --hs-warning-text: #e7c98a;
  --hs-success-text: #8fd0b6;
  --hs-card-border: rgba(255, 255, 255, 0.07);
  --hs-card-surface: linear-gradient(180deg, rgba(var(--axis-blue-100-rgb), 0.05) 0%, rgba(43, 47, 54, 0) 70px), var(--hs-surface);
  --hs-card-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 12px 34px rgba(0, 0, 0, 0.35);
  --hs-card-shadow-hover: 0 1px 2px rgba(0, 0, 0, 0.45), 0 16px 42px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(var(--axis-blue-100-rgb), 0.18);
  --hs-header-bg: rgba(32, 35, 41, 0.96);
  --hs-focus-ring: rgba(var(--axis-blue-100-rgb), 0.55);
  --hs-hero-glow: radial-gradient(60% 50% at 50% 0%, rgba(var(--axis-blue-800-rgb), 0.45) 0%, rgba(32, 35, 41, 0) 100%);
  color-scheme: dark;
}

/* ------------------------------------------------------------------------------------------
 * Base
 * ---------------------------------------------------------------------------------------- */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
html, body { min-height: 100%; background: var(--hs-bg); }
body {
  margin: 0;
  color: var(--hs-text);
  /* Inter is referenced, not embedded: the variable TTF is ~850 KB. The fallback order is axis.css's. */
  font: 17px/1.55 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--hs-primary-text); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
p { margin: 0 0 12px; }
h1, h2, h3 { margin: 0; letter-spacing: -0.01em; line-height: 1.15; }
code, pre, kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}
code {
  font-size: 0.88em; padding: 1px 6px; border-radius: var(--hs-radius-sm);
  background: var(--hs-primary-soft); color: var(--hs-primary-text);
}
:focus-visible { outline: 3px solid var(--hs-focus-ring); outline-offset: 2px; border-radius: var(--hs-radius-sm); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ------------------------------------------------------------------------------------------
 * Header — Axis `.hs-app-header` / `.hs-brand`
 * ---------------------------------------------------------------------------------------- */

.hs-app-header {
  position: sticky; top: 0; z-index: 1000;
  min-height: 64px; border-bottom: 1px solid var(--hs-border);
  background: var(--hs-header-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hs-header-inner { display: flex; align-items: center; gap: 16px; min-height: 64px; }
.hs-brand { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.hs-brand:hover { text-decoration: none; }
.hs-brand-mark {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--hs-primary-soft); color: var(--hs-primary);
}
.hs-brand-icon { width: 22px; height: 22px; }
.hs-brand-title { font-size: 16px; font-weight: 720; line-height: 1.1; display: block; }
.hs-brand-subtitle { font-size: 12px; color: var(--hs-muted-text); line-height: 1.1; display: block; }
.hs-nav { display: flex; gap: 2px; margin-left: 12px; flex-wrap: wrap; }
.hs-nav a {
  display: inline-block; padding: 7px 11px; border-radius: var(--hs-radius);
  font-size: 15px; color: var(--hs-muted-text);
}
.hs-nav a:hover { background: var(--hs-muted-surface); color: var(--hs-text); text-decoration: none; }
.hs-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }

/* ------------------------------------------------------------------------------------------
 * Buttons — Axis `.btn-primary` (solid --axis-blue-800 in BOTH schemes; the dark primary token
 * flips pale and would force dark text on a light fill) and `.btn-white-outline`.
 * ---------------------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-size: 15px; font-weight: 600; line-height: 1.2;
  padding: 10px 16px; border-radius: var(--hs-radius); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--axis-blue-800); border-color: var(--axis-blue-800); color: #ffffff; }
.btn-primary:hover { background: var(--axis-blue-900); border-color: var(--axis-blue-900); }
.btn-outline {
  background: var(--hs-surface); border-color: var(--hs-border-strong); color: var(--hs-text);
}
.btn-outline:hover { background: var(--hs-primary-soft); border-color: var(--hs-primary-border); }
.btn-lg { padding: 13px 22px; font-size: 16px; }
.btn-sm { padding: 7px 12px; font-size: 14px; }
.btn-icon { width: 36px; height: 36px; padding: 0; border-radius: 999px; }
.btn-icon svg { width: 18px; height: 18px; }
/* The toggle draws a sun in dark mode and a moon in light mode: the icon is the destination. */
.icon-sun, .icon-moon { display: none; }
:root[data-hs-theme="dark"] .icon-sun { display: block; }
:root:not([data-hs-theme="dark"]) .icon-moon { display: block; }

/* ------------------------------------------------------------------------------------------
 * Hero
 * ---------------------------------------------------------------------------------------- */

.hero {
  position: relative; padding: 72px 0 40px;
  background-image: var(--hs-hero-glow); background-repeat: no-repeat;
}
.hero-copy { max-width: 46rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  font-size: 12px; font-weight: 680; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--hs-primary-text);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--hs-primary); border-radius: 2px; }
.hero h1 { font-size: clamp(2rem, 4.4vw, 3.05rem); font-weight: 760; letter-spacing: -0.02em; line-height: 1.08; }
.lede { margin: 20px 0 26px; font-size: 1.12rem; line-height: 1.55; color: var(--hs-muted-text); max-width: 36rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-fineprint { margin-top: 16px; font-size: 14px; color: var(--hs-muted-text); }

/* ------------------------------------------------------------------------------------------
 * Sections & cards — Axis `.card` (gradient surface + layered shadow), `.hs-toolbar` gradient
 * ---------------------------------------------------------------------------------------- */

.section { padding: 56px 0; }
.section-alt {
  background-color: var(--hs-bg);
  background-image: linear-gradient(180deg, var(--hs-muted-surface) 0, var(--hs-bg) 100%);
  background-repeat: no-repeat; background-size: 100% 220px;
  border-top: 1px solid var(--hs-border);
}
.section-head { max-width: 42rem; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(1.55rem, 2.6vw, 2.05rem); font-weight: 740; }
.section-head p { margin: 12px 0 0; font-size: 1.02rem; color: var(--hs-muted-text); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
/* Four-card sections read as 2x2, never 3-across with an orphan. */
.grid-2x2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: var(--hs-card-surface); border: 1px solid var(--hs-card-border);
  border-radius: var(--hs-radius); box-shadow: var(--hs-card-shadow);
  padding: 22px 22px 20px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.card:hover { box-shadow: var(--hs-card-shadow-hover); }
.card h3 { font-size: 1.08rem; font-weight: 720; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--hs-muted-text); line-height: 1.55; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 38px; height: 38px; margin-bottom: 14px; display: inline-flex; align-items: center;
  justify-content: center; border-radius: 10px; background: var(--hs-primary-soft); color: var(--hs-primary);
}
.card-icon svg { width: 20px; height: 20px; }
.card-muted { background: var(--hs-muted-surface); box-shadow: none; }
.card-warn {
  border-left: 3px solid var(--hs-warning-solid); border-radius: 0 var(--hs-radius) var(--hs-radius) 0;
  background: var(--hs-warning-soft); box-shadow: none; border-color: var(--hs-warning-border);
  border-left-color: var(--hs-warning-solid);
}
.card-warn p, .card-warn h3 { color: var(--hs-warning-text); }

/* Chips — Axis `.hs-chip` (24px, pill, 12px/680) */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.hs-chip {
  min-height: 26px; display: inline-flex; align-items: center; gap: 6px; padding: 0 10px;
  border: 1px solid var(--hs-border); border-radius: 999px; background: var(--hs-surface);
  color: var(--hs-muted-text); font-size: 12.5px; font-weight: 680; line-height: 1; white-space: nowrap;
}
.hs-chip-soft { border-color: transparent; background: var(--hs-primary-soft); color: var(--hs-primary-text); }

/* Models — two grids that must never merge (the tiers are different promises) */
.tier { margin-top: 18px; }
.tier-title { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 1.02rem; font-weight: 720; }
.tier-tag {
  display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 12px; font-weight: 600;
  border: 1px solid transparent; white-space: nowrap;
}
.tier-tag--tier1 { background: var(--hs-primary-soft); color: var(--hs-primary-text); border-color: var(--hs-primary-border); }
.tier-tag--tier2 { background: var(--hs-warning-soft); color: var(--hs-warning-text); border-color: var(--hs-warning-border); }
.models {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr)); gap: 10px;
  margin: 12px 0 0; padding: 0; list-style: none;
}
.model {
  display: flex; flex-direction: column; gap: 2px; padding: 10px 12px;
  border: 1px solid var(--hs-border); border-radius: var(--hs-radius); background: var(--hs-surface);
  font-size: 14.5px;
}
.model b { font-weight: 680; }
.model span { font-size: 12.5px; color: var(--hs-muted-text); }
.tier-disclosure {
  margin: 14px 0 0; padding: 12px 14px; border-radius: var(--hs-radius);
  background: var(--hs-muted-surface); border: 1px solid var(--hs-border);
  font-size: 14.5px; line-height: 1.5; color: var(--hs-muted-text);
}
.tier-more { margin-top: 10px; font-size: 14.5px; color: var(--hs-muted-text); }

/* Pricing */
.price-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 28px; align-items: start; }
/* Both prices are h3s so each line reads as a heading, not a figure with a caption. */
.price-card h3.price-big { font-size: 2.6rem; font-weight: 760; letter-spacing: -0.02em; line-height: 1; margin: 0; color: var(--hs-primary-text); }
.price-unit { font-size: 1.35rem; font-weight: 700; color: var(--hs-primary-text); letter-spacing: -0.01em; }
.price-sub { margin: 8px 0 0; font-size: 15px; color: var(--hs-muted-text); }
/* The starting credit is what a new customer is charged today, so it gets the highlight. */
.price-credit {
  margin-top: 18px; padding: 16px 18px; border-radius: 12px;
  background: var(--hs-primary-soft); border: 1px solid var(--hs-primary-border);
}
.price-credit .price-sub { color: var(--hs-text); }
.price-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.price-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--hs-text); }
.price-list li::before {
  content: ""; flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; border-radius: 999px;
  background: var(--hs-primary-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path d='M5 10.5l3 3 7-7' fill='none' stroke='%23285f7a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}
.price-note { margin-top: 16px; font-size: 13.5px; color: var(--hs-muted-text); }

/* Steps */
.steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 16px; counter-reset: step; }
.step { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 16px; align-items: start; }
.step-num {
  width: 44px; height: 44px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--axis-blue-800); color: #ffffff; font-weight: 720; font-size: 17px;
}
.step h3 { font-size: 1.08rem; font-weight: 720; margin-bottom: 6px; }
.step p { font-size: 15px; color: var(--hs-muted-text); }

/* Command blocks with a copy button; the `where` line says where to paste */
.cmd {
  position: relative; margin: 12px 0 6px; display: flex; align-items: stretch; gap: 8px;
  border: 1px solid var(--hs-border-strong); border-radius: var(--hs-radius); background: var(--hs-muted-surface);
}
.cmd pre {
  margin: 0; padding: 12px 14px; flex: 1 1 auto; min-width: 0; overflow-x: auto;
  font-size: 13.5px; line-height: 1.6; color: var(--hs-text); white-space: pre;
}
.cmd .copy {
  flex: 0 0 auto; align-self: center; margin-right: 8px;
  font: inherit; font-size: 13px; font-weight: 600; padding: 6px 11px; border-radius: var(--hs-radius-sm);
  border: 1px solid var(--hs-primary-border); background: var(--hs-surface); color: var(--hs-primary-text); cursor: pointer;
}
.cmd .copy:hover { border-color: var(--hs-primary); }
.cmd .copy.is-copied { background: var(--hs-success-soft); color: var(--hs-success-text); border-color: transparent; }
.where { margin: 0; font-size: 13.5px; color: var(--hs-muted-text); }

/* Scope honesty */
.scope-list { margin: 0; padding-left: 20px; font-size: 15px; color: var(--hs-muted-text); }
.scope-list li { margin-bottom: 6px; }

/* Footer — Axis `.hs-footer` */
.hs-footer {
  margin-top: 24px; padding: 18px 0 28px; border-top: 1px solid var(--hs-border);
  color: var(--hs-muted-text); font-size: 13px;
}
.hs-footer-inner { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; justify-content: space-between; }
.hs-footer a { color: var(--hs-muted-text); }
.hs-footer nav { display: flex; flex-wrap: wrap; gap: 14px; }

/* Legal pages — /terms and /privacy, generated by tools/legal-from-docx.py */
.legal { max-width: 46rem; padding-top: 48px; padding-bottom: 56px; }
.legal h1 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 760; letter-spacing: -0.02em; margin-top: 10px; }
.legal .lede { margin: 14px 0 22px; }
.legal-meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px 20px;
  margin: 0 0 28px; padding: 16px 18px; border: 1px solid var(--hs-card-border); border-radius: var(--hs-radius);
  background: var(--hs-muted-surface); font-size: 14px;
}
.legal-meta div { min-width: 0; }
.legal-meta dt { font-size: 12px; font-weight: 680; letter-spacing: 0.04em; text-transform: uppercase; color: var(--hs-muted-text); }
.legal-meta dd { margin: 4px 0 0; color: var(--hs-text); overflow-wrap: anywhere; }
.legal-toc { margin: 0 0 36px; padding: 0 0 24px; border-bottom: 1px solid var(--hs-border); }
.legal-toc ol { margin: 0; padding-left: 1.3em; columns: 2; column-gap: 28px; font-size: 14.5px; line-height: 1.6; }
.legal-toc li { break-inside: avoid; }
.legal-section { padding: 0; margin: 0 0 32px; scroll-margin-top: 84px; }
.legal-section h2 { font-size: 1.28rem; font-weight: 740; margin-bottom: 12px; }
.legal-section p { line-height: 1.6; margin-bottom: 12px; }
.legal-section b { font-weight: 700; }

/* 404 */
.notfound { padding: 96px 0; text-align: center; }
.notfound h1 { font-size: 2rem; font-weight: 760; margin-bottom: 10px; }
.notfound p { color: var(--hs-muted-text); }

/* ------------------------------------------------------------------------------------------
 * Responsive & motion
 * ---------------------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .price-card { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hs-header-inner { flex-wrap: wrap; gap: 8px 12px; padding: 10px 0; }
  .hs-nav { order: 3; width: 100%; margin-left: 0; }
  .hs-nav a { padding: 6px 9px; font-size: 14px; }
  .hs-actions .btn-outline { display: none; }
  .hero { padding: 44px 0 28px; }
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .step { grid-template-columns: 36px minmax(0, 1fr); gap: 12px; }
  .step-num { width: 36px; height: 36px; font-size: 15px; }
  .grid-2x2 { grid-template-columns: 1fr; }
  .legal-toc ol { columns: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
