/* ===========================================================================
   Hirra design system
   Light-first (credibility in this category reads light), with a full dark
   theme. No webfonts and no external requests, so the CSP stays `self` and
   there is no render-blocking font fetch.
   =========================================================================== */

:root {
  /* Ink / surface */
  --ink: #0a1020;
  --ink-2: #1c2740;
  --muted: #5a6883;
  --muted-2: #8b97ad;
  --line: #e3e7ee;
  --line-2: #eef1f5;
  --bg: #ffffff;
  --bg-2: #f7f9fb;
  --bg-3: #eef2f6;
  --surface: #ffffff;

  /* Brand */
  --accent: #0b8f7d;
  --accent-ink: #06705f;
  --accent-soft: #e6f5f2;
  --accent-contrast: #ffffff;
  --focus: #0b8f7d;

  /* Signal */
  --warn: #b45309;
  --danger: #b42318;
  --danger-soft: #fef3f2;

  /* Type scale — fluid, 1.25 ratio, tuned for dense editorial layouts */
  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.875rem);
  --step-0: clamp(0.98rem, 0.95rem + 0.15vw, 1.0625rem);
  --step-1: clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
  --step-2: clamp(1.4rem, 1.25rem + 0.7vw, 1.85rem);
  --step-3: clamp(1.75rem, 1.45rem + 1.4vw, 2.6rem);
  --step-4: clamp(2.1rem, 1.6rem + 2.4vw, 3.5rem);

  /* Space */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10, 16, 32, 0.05), 0 1px 3px rgba(10, 16, 32, 0.06);
  --shadow: 0 4px 12px rgba(10, 16, 32, 0.06), 0 12px 32px rgba(10, 16, 32, 0.06);

  --container: 1200px;
  --container-narrow: 760px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  --sans: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Inter, 'Helvetica Neue', Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
}

:root[data-theme='dark'] {
  --ink: #eef2f8;
  --ink-2: #c6d0e0;
  --muted: #94a1b8;
  --muted-2: #6f7d95;
  --line: #23304a;
  --line-2: #1a2438;
  --bg: #070c17;
  --bg-2: #0c1322;
  --bg-3: #121b2d;
  --surface: #0e1727;

  --accent: #2ad3b8;
  --accent-ink: #7ceada;
  --accent-soft: #0f2b28;
  --accent-contrast: #04211c;
  --focus: #2ad3b8;

  --warn: #fbbf24;
  --danger: #fca5a5;
  --danger-soft: #2a1414;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'kern', 'liga', 'cv11';
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  margin: 0 0 var(--sp-3);
  line-height: 1.15;
  letter-spacing: -0.021em;
  font-weight: 640;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); letter-spacing: -0.03em; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
h5 { font-size: var(--step-0); }

p { margin: 0 0 var(--sp-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-ink); text-decoration: none; text-underline-offset: 0.18em; }
a:hover { text-decoration: underline; }

strong { font-weight: 640; }
small { font-size: var(--step--1); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--accent-soft); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--accent-contrast);
  padding: var(--sp-3) var(--sp-4); font-weight: 600;
}
.skip-link:focus { left: 0; }

/* --- Layout ------------------------------------------------------------- */

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section--alt { background: var(--bg-2); }
.section--ink { background: var(--ink); color: var(--bg); }
:root[data-theme='dark'] .section--ink { background: var(--bg-3); color: var(--ink); }

.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

.split { display: grid; gap: var(--sp-7); }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; align-items: start; } }
@media (min-width: 900px) { .split--sidebar { grid-template-columns: minmax(0, 1fr) 340px; } }

/* Visual-only heading size override, so semantic level and visual weight
   can differ without breaking the document outline. */
h2.h3, .h3 { font-size: var(--step-2); }
h3.h4, .h4 { font-size: var(--step-1); }

.eyebrow {
  font-size: var(--step--1);
  font-weight: 660;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: var(--sp-3);
}

.lede { font-size: var(--step-1); color: var(--muted); max-width: 62ch; line-height: 1.55; }
.muted { color: var(--muted); }
.center { text-align: center; }
.measure { max-width: 68ch; }

.section-head { max-width: 62ch; margin-bottom: var(--sp-6); }
.section-head--center { margin-inline: auto; text-align: center; }

/* --- Header ------------------------------------------------------------- */

.header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: var(--sp-5); padding-block: var(--sp-3); }

.brand { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--ink); font-weight: 720; letter-spacing: -0.01em; font-size: 1.15rem; }
.brand:hover { text-decoration: none; }
.brand svg { width: 26px; height: 26px; color: var(--accent); }

.nav { display: none; align-items: center; gap: var(--sp-2); margin-left: auto; }
@media (min-width: 1040px) { .nav { display: flex; } }

.nav__link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: var(--sp-2) var(--sp-3);
  color: var(--ink-2); font-size: var(--step--1); font-weight: 560;
  border-radius: var(--radius); border: 1px solid transparent;
  background: none; font-family: inherit; cursor: pointer;
}
.nav__link:hover { color: var(--ink); background: var(--bg-2); text-decoration: none; }
.nav__link[aria-expanded='true'] { color: var(--ink); background: var(--bg-2); }
.nav__link svg { width: 12px; height: 12px; opacity: 0.6; }

.nav__item { position: relative; }

.menu {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 70;
  min-width: 320px; padding: var(--sp-3);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.menu[hidden] { display: none; }
.menu__link { display: block; padding: var(--sp-3); border-radius: var(--radius); color: var(--ink); }
.menu__link:hover { background: var(--bg-2); text-decoration: none; }
.menu__link strong { display: block; font-size: var(--step-0); font-weight: 620; }
.menu__link span { display: block; font-size: var(--step--1); color: var(--muted); line-height: 1.45; margin-top: 2px; }

.header__actions { display: flex; align-items: center; gap: var(--sp-2); margin-left: auto; }
@media (min-width: 1040px) { .header__actions { margin-left: 0; } }
.header__cta { display: none; }
@media (min-width: 620px) { .header__cta { display: inline-flex; } }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; padding: 0;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); font-size: 1rem; cursor: pointer; font-family: inherit;
}
.icon-btn:hover { background: var(--bg-2); }
@media (min-width: 1040px) { .nav-toggle { display: none; } }

.drawer {
  display: none; border-bottom: 1px solid var(--line); background: var(--bg);
  padding: var(--sp-4) 0 var(--sp-6);
}
.drawer[data-open='true'] { display: block; }
@media (min-width: 1040px) { .drawer { display: none !important; } }
.drawer__group + .drawer__group { margin-top: var(--sp-5); }
.drawer__label { font-size: var(--step--1); font-weight: 660; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: var(--sp-2); }
.drawer__links { display: grid; gap: 2px; }
.drawer__links a { padding: var(--sp-2) 0; color: var(--ink); font-weight: 520; }

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  font: inherit; font-size: var(--step--1); font-weight: 620;
  border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-align: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn--primary { background: var(--accent); color: var(--accent-contrast); }
.btn--primary:hover:not(:disabled) { background: var(--accent-ink); }
.btn--secondary { background: var(--ink); color: var(--bg); }
:root[data-theme='dark'] .btn--secondary { background: var(--bg-3); color: var(--ink); border-color: var(--line); }
.btn--secondary:hover:not(:disabled) { background: var(--ink-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover:not(:disabled) { background: var(--bg-2); border-color: var(--muted-2); }
.btn--lg { padding: 0.85rem 1.5rem; font-size: var(--step-0); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.btn-row--center { justify-content: center; }

.arrow-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: var(--step--1); }
.arrow-link::after { content: '→'; transition: transform 0.15s ease; }
.arrow-link:hover::after { transform: translateX(3px); }

/* --- Cards -------------------------------------------------------------- */

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-5);
  display: flex; flex-direction: column;
}
.card--link { transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease; }
.card--link:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); text-decoration: none; }
.card h3, .card h4 { margin-bottom: var(--sp-2); }
.card p { color: var(--muted); font-size: var(--step--1); }
.card__foot { margin-top: auto; padding-top: var(--sp-4); }

.tick-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-2); }
.tick-list li { display: grid; grid-template-columns: 1.1rem 1fr; gap: var(--sp-2); font-size: var(--step--1); color: var(--ink-2); line-height: 1.5; }
.tick-list li::before { content: '✓'; color: var(--accent); font-weight: 700; }

.bullet-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-3); }
.bullet-list li { display: grid; grid-template-columns: 0.5rem 1fr; gap: var(--sp-3); font-size: var(--step--1); color: var(--ink-2); line-height: 1.55; }
.bullet-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-top: 0.6em; }

.tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; margin: 0; padding: 0; }
.tag {
  display: inline-block; padding: 0.3rem 0.7rem;
  font-size: var(--step--1); font-weight: 540; line-height: 1.3;
  color: var(--ink-2); background: var(--bg-2);
  border: 1px solid var(--line); border-radius: 999px;
}
a.tag:hover { border-color: var(--accent); color: var(--accent-ink); text-decoration: none; }
.tag--accent { background: var(--accent-soft); border-color: transparent; color: var(--accent-ink); }

/* Numbered process steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-5); counter-reset: step; }
.step { display: grid; grid-template-columns: 2.25rem 1fr; gap: var(--sp-4); counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono); font-size: var(--step--1); font-weight: 600;
  color: var(--accent-ink); background: var(--accent-soft);
  width: 2.25rem; height: 2.25rem; border-radius: 8px;
  display: grid; place-items: center;
}
.step h4 { margin-bottom: var(--sp-1); }
.step p { color: var(--muted); font-size: var(--step--1); }

/* Signal blocks — the domain-fluency proof */
.signal { border-left: 2px solid var(--line); padding-left: var(--sp-4); }
.signal + .signal { margin-top: var(--sp-5); }
.signal h4 { font-size: var(--step-0); margin-bottom: var(--sp-1); }
.signal p { color: var(--muted); font-size: var(--step--1); margin: 0; }

/* Pull quote used for the positioning lines */
.pull {
  font-size: var(--step-2); line-height: 1.35; letter-spacing: -0.02em;
  font-weight: 560; color: var(--ink); text-wrap: balance;
  border-left: 3px solid var(--accent); padding-left: var(--sp-5); margin: 0;
}

/* --- Hero --------------------------------------------------------------- */

.hero { padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem); position: relative; overflow: hidden; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60rem 30rem at 85% -10%, var(--accent-soft), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 60%);
}
.hero h1 { max-width: 18ch; }
.hero .lede { margin-top: var(--sp-4); }
.hero .btn-row { margin-top: var(--sp-6); }

.hero__meta { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-6); }

.page-head { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.page-head h1 { max-width: 20ch; }
.page-head .lede { margin-top: var(--sp-4); }

/* --- Breadcrumbs -------------------------------------------------------- */

.crumbs { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; margin: 0 0 var(--sp-4); padding: 0; font-size: var(--step--1); color: var(--muted); }
.crumbs li::after { content: '/'; margin-left: var(--sp-2); color: var(--muted-2); }
.crumbs li:last-child::after { content: ''; }
.crumbs a { color: var(--muted); }

/* --- Forms -------------------------------------------------------------- */

.form { display: grid; gap: var(--sp-4); }
.form__row { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 0.35rem; }
.field > label { font-size: var(--step--1); font-weight: 600; color: var(--ink); }
.field__hint { font-size: var(--step--1); color: var(--muted); }
.field__optional { color: var(--muted-2); font-weight: 500; }

input[type='text'], input[type='email'], input[type='url'], input[type='tel'],
input[type='number'], input[type='date'], select, textarea {
  width: 100%; padding: 0.65rem 0.75rem;
  font: inherit; font-size: var(--step--1);
  color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
textarea { resize: vertical; min-height: 7.5rem; line-height: 1.55; }
::placeholder { color: var(--muted-2); }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235a6883' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 12px;
  padding-right: 2.25rem;
}

.field[data-invalid='true'] input,
.field[data-invalid='true'] select,
.field[data-invalid='true'] textarea { border-color: var(--danger); }

.field__error { font-size: var(--step--1); color: var(--danger); min-height: 1.15rem; }
.field__error:empty { min-height: 0; }

.checkgrid { display: grid; gap: var(--sp-2); grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.check { display: flex; align-items: flex-start; gap: var(--sp-2); font-size: var(--step--1); color: var(--ink-2); line-height: 1.4; cursor: pointer; }
.check input { margin-top: 0.15em; width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }

.consent { display: flex; gap: var(--sp-3); align-items: flex-start; padding: var(--sp-4); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); }
.consent input { margin-top: 0.1em; width: 20px; height: 20px; accent-color: var(--accent); flex-shrink: 0; }
.consent label { font-size: var(--step--1); color: var(--muted); line-height: 1.5; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { font-size: var(--step--1); min-height: 1.4rem; }
.form-status[data-state='error'] { color: var(--danger); }
.form-status[data-state='success'] { color: var(--accent-ink); }

.form-success {
  padding: var(--sp-6); background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: var(--radius-lg);
}
.form-success h3 { margin-bottom: var(--sp-2); }
.form-success p { color: var(--ink-2); }

.fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: var(--sp-4); }
.fieldset > legend {
  padding: 0; margin-bottom: var(--sp-1);
  font-size: var(--step--1); font-weight: 660;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted-2);
}

/* --- Jobs --------------------------------------------------------------- */

.filters { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: flex-end; padding: var(--sp-4); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.filters .field { flex: 1 1 170px; }

.job-card { display: grid; gap: var(--sp-3); }
.job-card__meta { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.job-card h3 { font-size: var(--step-1); margin: 0; }
.job-card h3 a { color: var(--ink); }
.job-card h3 a:hover { color: var(--accent-ink); }

.empty-state { padding: var(--sp-7); text-align: center; border: 1px dashed var(--line); border-radius: var(--radius-lg); background: var(--bg-2); }
.empty-state h3 { margin-bottom: var(--sp-2); }
.empty-state p { color: var(--muted); max-width: 52ch; margin-inline: auto; }

.notice {
  padding: var(--sp-4); border-radius: var(--radius);
  background: var(--danger-soft); border: 1px solid color-mix(in srgb, var(--danger) 25%, transparent);
  color: var(--ink-2); font-size: var(--step--1);
}

.definition { display: grid; gap: var(--sp-3); margin: 0; }
.definition > div { display: grid; grid-template-columns: 9rem 1fr; gap: var(--sp-3); font-size: var(--step--1); padding-bottom: var(--sp-3); border-bottom: 1px solid var(--line-2); }
.definition dt { color: var(--muted); }
.definition dd { margin: 0; color: var(--ink); font-weight: 540; }

/* --- Prose (articles) --------------------------------------------------- */

.prose { max-width: 70ch; }
.prose h2 { font-size: var(--step-2); margin-top: var(--sp-7); }
.prose h3 { font-size: var(--step-1); margin-top: var(--sp-6); }
.prose p, .prose li { color: var(--ink-2); }
.prose ul, .prose ol { padding-left: 1.25rem; margin: 0 0 var(--sp-4); display: grid; gap: var(--sp-2); }
.prose li { line-height: 1.65; }
.prose blockquote { margin: var(--sp-5) 0; padding-left: var(--sp-5); border-left: 3px solid var(--accent); color: var(--ink); font-size: var(--step-1); }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--step--1); margin-bottom: var(--sp-5); }
.prose th, .prose td { text-align: left; padding: var(--sp-3); border-bottom: 1px solid var(--line); }
.prose th { font-weight: 620; }
.prose code { font-family: var(--mono); font-size: 0.9em; background: var(--bg-3); padding: 0.15em 0.4em; border-radius: 4px; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-7) 0; }

.toc { position: sticky; top: 90px; font-size: var(--step--1); }
.toc h2 { font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); margin-bottom: var(--sp-3); }
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-2); border-left: 1px solid var(--line); }
.toc a { color: var(--muted); padding-left: var(--sp-3); display: block; }
.toc a:hover { color: var(--accent-ink); }

.article-meta { display: flex; flex-wrap: wrap; gap: var(--sp-3); font-size: var(--step--1); color: var(--muted); }

/* --- FAQ ---------------------------------------------------------------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: var(--sp-4) 2rem var(--sp-4) 0; position: relative;
  font-weight: 600; font-size: var(--step-0); list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.3rem; font-weight: 400; color: var(--accent); line-height: 1;
}
.faq details[open] summary::after { content: '−'; }
.faq details > div { padding-bottom: var(--sp-4); color: var(--muted); font-size: var(--step--1); max-width: 70ch; }

/* --- CTA band ----------------------------------------------------------- */

.cta-band { background: var(--ink); color: var(--bg); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); }
:root[data-theme='dark'] .cta-band { background: var(--bg-3); color: var(--ink); border: 1px solid var(--line); }
.cta-band h2 { color: inherit; max-width: 24ch; }
.cta-band p { color: color-mix(in srgb, currentColor 72%, transparent); max-width: 56ch; }
.cta-band .btn--ghost { color: inherit; border-color: color-mix(in srgb, currentColor 35%, transparent); }
.cta-band .btn--ghost:hover { background: color-mix(in srgb, currentColor 12%, transparent); }

/* --- Footer ------------------------------------------------------------- */

.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: var(--sp-7) var(--sp-6); font-size: var(--step--1); }
.footer__grid { display: grid; gap: var(--sp-6); grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); }
.footer__col h3 { font-size: var(--step--1); font-weight: 660; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: var(--sp-3); }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-2); }
.footer__tagline { margin-top: var(--sp-3); max-width: 26ch; color: var(--muted); }
.footer__col a { color: var(--ink-2); }
.footer__col a:hover { color: var(--accent-ink); }
.footer__bottom { margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between; color: var(--muted); }

/* --- Utility ------------------------------------------------------------ */

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
[hidden] { display: none !important; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
