@charset "UTF-8";
:root {
  --navy: #14213d;
  --navy-2: #0d1730;
  --navy-3: #1f2f55;
  --ink: #14213d;
  --ink-2: #3f4b66;
  --gray: #6b7488;
  --gray-2: #9aa3b5;
  --sand: #f4efe6;
  --sand-2: #e9e1d2;
  --cloud: #eef2f6;
  --cloud-2: #e3e9f0;
  --sky: #d3e3f0;
  --sky-2: #b9d1e6;
  --line: #dfe4ea;
  --line-2: #c9d1db;
  --orange: #ff7a1a;
  --orange-600: #e8690c;
  --aero: #2b6cb0;
  --mint: #d8efe6;
  --mint-ink: #1f6b4a;
  --white: #ffffff;
  --font-head: "Valley Sans", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Valley Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --container: 1200px;
  --radius: 8px;
  --radius-sm: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--navy-2); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(36px, 4.4vw, 56px); }
h2 { font-size: clamp(28px, 3.2vw, 42px); }
h3 { font-size: 21px; line-height: 1.2; }
h4 { font-size: 16px; line-height: 1.3; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
.accent { color: var(--aero); }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 104px 0; }
.section--tight { padding: 56px 0; }
.section--white { background: var(--white); }
.section--soft { background: var(--cloud); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--navy); color: #fff; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .lead, .section--dark p { color: #d6deea; }
.section--dark .eyebrow { color: var(--sky-2); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--aero); margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 20px; height: 1px; background: currentColor; }
.center .eyebrow::before { display: none; }
.lead { font-size: 19px; line-height: 1.5; color: var(--ink-2); max-width: 640px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 48px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 + .lead { margin-top: 18px; }
.muted { color: var(--ink-2); }
.small { font-size: 14px; }
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; font-weight: 500; font-size: 15px; line-height: 1.2; border: 1px solid transparent; border-radius: var(--radius-sm); transition: background .2s, color .2s, border-color .2s, transform .2s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--orange); color: var(--navy-2); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-600); border-color: var(--orange-600); }
.btn--outline { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--outline:hover { background: var(--navy-3); border-color: var(--navy-3); }
.btn--white { background: var(--orange); color: var(--navy-2); border-color: var(--orange); }
.btn--white:hover { background: var(--orange-600); border-color: var(--orange-600); }
.btn--outline-white { background: var(--sky); color: var(--navy); border-color: var(--sky); }
.btn--outline-white:hover { background: #fff; border-color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { padding: 14px 24px; font-size: 16px; }
.btn--sm { padding: 9px 14px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.link-arrow { font-weight: 500; color: var(--aero); display: inline-flex; align-items: center; gap: 6px; }
.link-arrow::after { content: "\2192"; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(3px); }
.section--dark .link-arrow { color: var(--sky-2); }

/* Top bar + header */
.topbar { background: var(--navy-2); color: #fff; font-size: 13px; }
.topbar__inner { display: flex; align-items: center; justify-content: flex-end; gap: 26px; height: 36px; }
.topbar a { color: #fff; font-weight: 500; }
.topbar a:hover { color: var(--orange); }
.header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; height: 72px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 19px; letter-spacing: 0; color: var(--ink); }
.brand img { width: 30px; height: 28px; }
.brand span small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 10px; letter-spacing: 0.14em; color: var(--gray); text-transform: uppercase; margin-top: -3px; }
.nav { display: flex; align-items: stretch; gap: 4px; margin-left: auto; height: 72px; }
.nav__item { position: static; display: flex; }
.nav__link { position: relative; display: inline-flex; align-items: center; gap: 6px; padding: 0 14px; font-weight: 500; font-size: 15px; color: var(--ink); background: none; border: 0; }
.nav__link::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 0; height: 2px; background: var(--navy); transform: scaleX(0); transition: transform .2s var(--ease); }
.nav__link:hover::after, .nav__item.is-open > .nav__link::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link svg { width: 12px; height: 12px; transition: transform .2s; }
.nav__item.is-open > .nav__link svg { transform: rotate(180deg); }
.menu { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 30px 50px rgba(20, 33, 61, .12); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s, transform .2s var(--ease), visibility .2s; }
.nav__item.is-open > .menu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu__inner { display: grid; grid-template-columns: repeat(3, 1fr) 320px; gap: 0; padding: 44px 0 52px; }
.menu__inner--2 { grid-template-columns: repeat(2, 1fr) 320px; }
.menu__col { padding: 0 32px; border-left: 1px solid var(--line); }
.menu__col:first-child { border-left: 0; padding-left: 0; }
.menu__col h5 { font-family: var(--font-body); font-weight: 600; font-size: 15px; margin-bottom: 14px; }
.menu__col a { display: block; padding: 8px 0; font-size: 15px; color: var(--ink); }
.menu__col a:hover { color: var(--aero); }
.menu__col a.menu__more { font-size: 13.5px; color: var(--gray); margin-top: 6px; }
.menu__card { margin-left: 32px; background: var(--sand); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.menu__card h5 { font-size: 19px; line-height: 1.15; }
.menu__card p { font-size: 14.5px; color: var(--ink-2); margin: 0 0 8px; }
.header__cta { margin-left: 8px; }
.burger { display: none; width: 44px; height: 44px; background: none; border: 0; padding: 0; margin-left: auto; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; transition: transform .2s, opacity .2s; }
.mobile-nav { display: none; }

/* Figures (drawing frames) */
.fig { margin: 0; position: relative; }
.fig--frame { padding: 28px 28px 22px; border: 1px solid var(--line-2); border-radius: 4px; background: rgba(255, 255, 255, .55); }
.fig--frame::before, .fig--frame::after { content: ""; position: absolute; width: 14px; height: 14px; border-color: var(--navy); border-style: solid; }
.fig--frame::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.fig--frame::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.fig figcaption { margin-top: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); display: flex; justify-content: space-between; gap: 12px; }
.fig figcaption span:first-child { white-space: nowrap; }
.fig figcaption span:last-child { text-align: right; }
.fig--frame figcaption { border-top: 1px solid var(--line); padding-top: 12px; }
.fig--frame .illus { max-height: 280px; }
.section--dark .fig figcaption { color: var(--sky-2); }

/* Hero */
.hero { padding: 88px 0 72px; background: var(--sand); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 28px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--ink); border-radius: var(--radius-sm); padding: 6px 12px; background: rgba(255, 255, 255, .7); }
.chip svg { width: 15px; height: 15px; color: var(--aero); }
.statement { background: var(--sky); overflow: hidden; }
.statement__grid { display: grid; grid-template-columns: 1fr 1.15fr; align-items: end; gap: 48px; }
.statement__text { padding: 84px 0 80px; align-self: center; }
.statement h2 { font-size: clamp(34px, 4.2vw, 56px); line-height: 1.06; margin-bottom: 22px; }
.statement h2 .dim { color: var(--gray-2); }
.statement .lead { margin-bottom: 32px; }
.statement .lead strong { color: var(--ink); font-weight: 600; }
.statement__facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 28px; margin: 0; padding: 0; list-style: none; }
.statement__facts li { border-top: 1px solid rgba(20, 33, 61, .18); padding-top: 12px; font-size: 14px; color: var(--ink-2); }
.statement__facts strong { display: block; font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 2px; }
.statement__media { margin: 0; padding-top: 48px; }
.statement__media .illus { max-height: 540px; width: 100%; object-fit: contain; object-position: center bottom; }

/* Dark showcase band */
.showcase { background: var(--navy); color: #fff; padding: 96px 0; }
.showcase__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.showcase h2 { color: #fff; }
.showcase .eyebrow { color: var(--sky-2); }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab { padding: 9px 18px; background: transparent; border: 1px solid rgba(255, 255, 255, .35); border-radius: 999px; color: #fff; font-weight: 500; font-size: 14px; }
.tab.is-active { background: var(--sky); border-color: var(--sky); color: var(--navy); }
.tab-panel { display: none; }
.tab-panel.is-active { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; animation: fade .4s var(--ease); }
.tab-panel > div { max-width: 600px; }
.tab-panel h3 { color: #fff; margin-bottom: 12px; font-size: 24px; }
.tab-panel p { color: #d6deea; }
.tab-panel ul { margin-top: 16px; display: grid; gap: 9px; }
.tab-panel li { padding-left: 22px; position: relative; color: #fff; font-size: 15px; }
.tab-panel li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.tab-panel .illus--dark { height: 360px; width: auto; max-width: 100%; justify-self: start; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Cards & grids */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 14px; transition: transform .25s var(--ease), box-shadow .25s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(20, 33, 61, .10); }
.section--soft .card, .section--sand .card { border-color: transparent; }
.card__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--aero); }
.card h3 { font-size: 21px; }
.card h3 .sub { display: block; font-family: var(--font-body); font-weight: 400; font-size: 15px; color: var(--ink-2); margin-top: 6px; letter-spacing: 0; }
.card ul { display: grid; gap: 8px; }
.card li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.card li::before { content: ""; flex: 0 0 6px; width: 6px; height: 6px; margin-top: 10px; border-radius: 50%; background: var(--orange); }
.card .link-arrow { margin-top: auto; padding-top: 8px; }
.card__icon { width: 44px; height: 44px; display: grid; place-items: center; background: var(--sky); color: var(--navy); border-radius: var(--radius-sm); }
.card__icon svg { width: 22px; height: 22px; }
.card--img { padding: 0; overflow: hidden; }
.card--img .card__body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card--img h3 { font-size: 19px; }
.card--img p { color: var(--ink-2); font-size: 15px; }
.card--illus img { height: 190px; object-fit: contain; padding: 18px 30px; background: var(--sand); }
.card p.muted { font-size: 15px; }

/* Roles */
.role { background: #fff; border-radius: var(--radius); padding: 24px 22px; }
.role .mono { display: block; margin-bottom: 12px; color: var(--aero); }
.role h4 { margin-bottom: 8px; }
.role p { font-size: 14.5px; color: var(--ink-2); }

/* Feature rows */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 64px 0; border-top: 1px solid var(--line); }
.feature:first-of-type { border-top: 0; padding-top: 0; }
.feature--flip .feature__media { order: 2; }
.feature h3 { font-size: clamp(22px, 2.2vw, 28px); margin-bottom: 14px; }
.feature p { color: var(--ink-2); }
.checks { display: grid; gap: 10px; margin: 18px 0 22px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.checks li::before { content: ""; flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: var(--sky) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314213d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat; }

/* Audience */
.aud__roles { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.pill { display: inline-block; font-size: 12.5px; font-weight: 500; padding: 5px 11px; border-radius: 999px; background: var(--cloud-2); color: var(--ink); }
.pill--blue { background: var(--sky); color: var(--navy); }
.pill--amber { background: #ffe1c7; color: #8a3f05; }
.pill--green { background: var(--mint); color: var(--mint-ink); }

/* Steps / timeline */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; background: #fff; border-radius: var(--radius); padding: 26px 24px 24px; }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: var(--aero); display: block; margin-bottom: 12px; }
.step h4 { margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-2); }
.step__illus { height: 80px; display: flex; align-items: center; margin-bottom: 14px; }
.step__illus img { height: 100%; width: auto; }
.timeline { display: grid; }
.timeline__item { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.timeline__item:first-child { border-top: 0; }
.timeline__n { font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; color: var(--aero); padding-top: 6px; }
.timeline__item h4 { margin-bottom: 4px; }
.timeline__item p { color: var(--ink-2); font-size: 15px; }

/* Module grid */
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mod-grid--4 { grid-template-columns: repeat(4, 1fr); }
.mod { display: flex; flex-direction: column; gap: 10px; padding: 24px 22px; background: #fff; border-radius: var(--radius); transition: transform .25s var(--ease), box-shadow .25s; }
.mod:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(20, 33, 61, .08); }
.mod__icon { width: 42px; height: 42px; display: grid; place-items: center; background: var(--sky); color: var(--navy); border-radius: var(--radius-sm); margin-bottom: 4px; }
.mod__icon svg { width: 21px; height: 21px; }
.mod h4 { font-size: 17px; }
.mod p { font-size: 14.5px; color: var(--ink-2); margin: 0; }

/* Table */
.tbl { width: 100%; border-collapse: collapse; background: #fff; font-size: 15px; }
.tbl th, .tbl td { padding: 13px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.tbl th { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); background: var(--cloud); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }

/* Form */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13.5px; font-weight: 500; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea, .field select { width: 100%; padding: 12px 14px; border: 1px solid var(--line-2); background: #fff; font: inherit; font-size: 15px; color: var(--ink); border-radius: var(--radius-sm); }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--navy); outline-offset: -1px; border-color: var(--navy); }
.field textarea { min-height: 130px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); }
.consent input { margin-top: 4px; }
.form__note { font-size: 13.5px; color: var(--ink-2); }
.form__err { display: none; padding: 16px; background: #fdecec; color: #8a1f1f; border-radius: var(--radius-sm); grid-column: 1 / -1; }
.cf-turnstile { min-height: 65px; }
.form__ok { display: none; padding: 16px; background: var(--mint); color: var(--mint-ink); border-radius: var(--radius-sm); grid-column: 1 / -1; }

/* Page hero (inner pages) */
.page-hero { padding: 80px 0 64px; background: var(--sand); }
.page-hero h1 { margin: 12px 0 18px; max-width: 900px; font-size: clamp(32px, 3.8vw, 48px); }
.page-hero .lead { margin-bottom: 26px; }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.crumbs { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); display: flex; gap: 8px; align-items: center; }
.crumbs a:hover { color: var(--ink); }

/* Split section with image */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* FAQ */
.faq-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.faq-cat { padding: 9px 16px; border: 1px solid var(--line-2); border-radius: 999px; background: transparent; font-weight: 500; font-size: 14px; color: var(--ink); }
.faq-cat.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.faq { display: grid; gap: 10px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; padding: 18px 22px; background: none; border: 0; font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--ink); }
.faq__q::after { content: "+"; font-family: var(--font-mono); font-size: 22px; color: var(--aero); flex: 0 0 auto; transition: transform .2s; }
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { display: none; padding: 0 22px 20px; color: var(--ink-2); font-size: 15px; }
.faq__item.is-open .faq__a { display: block; }
.faq__item[data-cat][hidden] { display: none; }

/* Note */
.note { border-left: 3px solid var(--orange); background: #fff3e8; padding: 14px 18px; font-size: 15px; color: var(--ink); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* Footer */
.footer { background: var(--navy-2); color: #fff; padding: 72px 0 28px; }
.footer .brand { color: #fff; }
.footer .brand span small { color: var(--gray-2); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.footer h4 { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: #fff; margin-bottom: 14px; }
.footer ul { display: grid; gap: 9px; font-size: 14.5px; color: #c9d2e0; }
.footer a:hover { color: var(--orange); }
.footer__brand p { color: #c9d2e0; font-size: 14.5px; max-width: 300px; margin-top: 14px; }
.footer__cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 28px 0; border-top: 1px solid rgba(255, 255, 255, .15); border-bottom: 1px solid rgba(255, 255, 255, .15); margin-bottom: 24px; }
.footer__cta h4 { font-family: var(--font-head); font-size: 19px; margin-bottom: 6px; }
.footer__cta p { color: #c9d2e0; font-size: 14.5px; margin: 0; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: var(--gray-2); }
.footer__bottom ul { display: flex; gap: 18px; }

/* Prose lists (policy pages) */
.prose-list { display: grid; gap: 8px; margin: 0 0 18px; padding-left: 18px; list-style: disc; color: var(--ink-2); }
.prose h4 { margin: 22px 0 8px; font-size: 16px; }

/* Cookie notice */
.cookie[hidden] { display: none; }
.is-hidden { display: none !important; }
.qualify { text-decoration: underline; text-decoration-style: wavy; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: .2em; text-decoration-skip-ink: none; border-radius: 3px; padding: 0 .08em; margin: 0 -.08em; transition: background-color .15s, color .15s, text-decoration-color .15s; }
@media (hover: hover) {
  .qualify:hover { text-decoration-color: transparent; background: var(--orange); color: #fff; }
}
h1 .qualify, h2 .qualify { text-decoration-thickness: 3px; text-underline-offset: .14em; }
.eyebrow .qualify, figcaption .qualify, .crumbs .qualify { text-decoration-thickness: 1px; text-underline-offset: .3em; }
.cookie { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 60; display: flex; justify-content: center; }
.cookie__inner { width: 100%; max-width: 760px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 20px 50px rgba(20, 33, 61, .18); padding: 18px 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie__inner p { margin: 0; flex: 1 1 320px; font-size: 14px; color: var(--ink-2); }
.cookie__inner a { color: var(--aero); text-decoration: underline; }
.cookie__actions { display: flex; gap: 8px; }

/* Illustrations: one scale for the whole site */
.illus { width: 100%; height: auto; object-fit: contain; border: 0 !important; box-shadow: none !important; background: transparent !important; }
.hero__illus { max-width: 600px; max-height: 300px; margin: 0 auto; }
.page-hero__grid .illus { max-height: 280px; }
.split .illus { max-height: 320px; }
.feature__media .illus { max-height: 300px; }
.illus--sm { max-width: 320px; max-height: 220px; margin: 0 auto 24px; }
.card__illus { height: 170px; display: flex; align-items: center; justify-content: center; margin: -4px 0 6px; }
.card__illus img { width: 100%; height: 170px; object-fit: contain; }

/* Reveal */
html.js .reveal:not(.is-in) { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal:not(.is-in) { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* Utility */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; } .mt-5 { margin-top: 64px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 40px; }
.prose { max-width: 760px; }
.prose h3 { margin: 32px 0 10px; }
.prose p { color: var(--ink-2); }

/* Responsive */
@media (max-width: 1080px) {
  .grid--4, .grid--5, .steps, .mod-grid, .mod-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .menu__inner, .menu__inner--2 { grid-template-columns: repeat(2, 1fr) 260px; }
}
@media (max-width: 900px) {
  .topbar { display: none; }
  .nav, .header__cta { display: none; }
  .burger { display: block; }
  .mobile-nav { display: none; position: fixed; inset: 72px 0 0; background: #fff; z-index: 49; overflow-y: auto; padding: 16px 32px 40px; }
  .mobile-nav.is-open { display: block; }
  .mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
  .mobile-nav .mobile-nav__group { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); padding: 18px 0 6px; }
  .mobile-nav a.btn { display: flex; justify-content: center; margin-top: 20px; width: 100%; padding: 14px; border-bottom: 0; }
  .body-lock { overflow: hidden; }
  .burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.is-open span:nth-child(2) { opacity: 0; }
  .burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 56px 0 48px; }
  .statement__grid { grid-template-columns: 1fr; gap: 0; }
  .statement__text { padding: 56px 0 8px; }
  .statement__media { padding-top: 16px; }
  .statement__media .illus { max-height: 300px; }
  .hero__grid, .feature, .split, .page-hero__grid, .tab-panel.is-active { grid-template-columns: 1fr; }
  .feature__media .illus, .split .illus, .page-hero__grid .illus { max-height: 240px; }
  .tab-panel .illus--dark { height: 240px; }
  .feature--flip .feature__media { order: 0; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .form { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .grid--4, .grid--5, .steps, .footer__grid, .mod-grid, .mod-grid--4 { grid-template-columns: 1fr; }
  .statement__facts { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
}

