/* currentIQ marketing site — brand tokens from the currentIQ identity handoff.
   Raw teal/amber are for fills, marks and chips; teal-text/amber-text for text on
   the ground. Money is red/green, energy is teal/amber, never mixed. */

:root {
  --bg: #F6F3ED;
  --card: #FFFFFF;
  --card-alt: #EFEAE0;
  --border: #E4DFD4;
  --text: #101C2E;
  --muted: #5B6B7F;
  --ink: #101C2E;
  --ink-2: #0A1420;
  --ink-border: #2A3648;
  --on-ink: #F6F3ED;
  --on-ink-muted: #93A1B5;
  --accent-teal: #14B8A6;
  --accent-amber: #E8A33D;
  --teal-text: #127A76;
  --amber-text: #876636;
  --success: #1F9463;
  --success-text: #187A50;
  --danger: #C1443D;
  --danger-text: #9C332D;
  --focus: #14B8A6;
  --shadow: 0 1px 2px rgba(16, 28, 46, .06), 0 12px 32px -16px rgba(16, 28, 46, .18);

  --font-display: "Space Grotesk", "IBM Plex Sans", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --wrap: 1120px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 8px;
  --radius-pill: 20px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0B1420; --card: #182233; --card-alt: #0F1826; --border: #2A3648;
    --text: #F1EEE7; --muted: #93A1B5;
    --accent-teal: #2BD9C4; --accent-amber: #F0B860;
    --teal-text: #5EE6D3; --amber-text: #F5C983;
    --success: #3FBE84; --success-text: #6ED9A6;
    --danger: #E0645C; --danger-text: #F09189;
    --focus: #2BD9C4;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 12px 32px -16px rgba(0, 0, 0, .6);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0B1420; --card: #182233; --card-alt: #0F1826; --border: #2A3648;
  --text: #F1EEE7; --muted: #93A1B5;
  --accent-teal: #2BD9C4; --accent-amber: #F0B860;
  --teal-text: #5EE6D3; --amber-text: #F5C983;
  --success: #3FBE84; --success-text: #6ED9A6;
  --danger: #E0645C; --danger-text: #F09189;
  --focus: #2BD9C4;
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 12px 32px -16px rgba(0, 0, 0, .6);
  color-scheme: dark;
}

/* ---------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.55 var(--font-body);
  font-feature-settings: "kern";
}
img, svg { max-width: 100%; }
a { color: var(--teal-text); text-underline-offset: .15em; }
a:hover { color: var(--text); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 3px; }
[hidden] { display: none !important; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
hr { border: 0; border-top: 1px solid var(--border); margin: 1.25rem 0; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--card); padding: .5rem .75rem; border-radius: var(--radius); z-index: 100; }
.skip:focus { left: 8px; }

.display { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; line-height: 1.05; }
h1.display { font-size: clamp(2.25rem, 5.2vw, 3.75rem); }
.display--2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.12; }
h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1.25; letter-spacing: -.01em; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.55; color: var(--muted); max-width: 62ch; }
.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-text); margin-bottom: .9rem;
}
.eyebrow--tight { margin-bottom: .35rem; }
.eyebrow--onink { color: var(--accent-teal); }
.amber { color: var(--accent-amber); }
h1 .amber, h2 .amber { color: var(--amber-text); }
.muted { color: var(--muted); }
.figure { font-family: var(--font-mono); font-weight: 500; font-variant-numeric: tabular-nums; }
.figure--big { font-size: clamp(2rem, 4vw, 2.6rem); line-height: 1; letter-spacing: -.02em; }

.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }

/* -------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .8rem 1.25rem; border-radius: var(--radius-pill);
  font: 600 .95rem/1 var(--font-body); text-decoration: none; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.btn--primary { background: var(--accent-teal); color: #07231F; border-color: var(--accent-teal); }
.btn--primary:hover { background: var(--teal-text); border-color: var(--teal-text); color: #fff; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--text); color: var(--text); }
.btn--small { padding: .55rem .95rem; font-size: .85rem; background: var(--accent-teal); color: #07231F; }
.btn--small:hover { background: var(--on-ink); color: var(--ink); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }

/* ---------------------------------------------------------------- header */
.top {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
  background: var(--ink); color: var(--on-ink);
  border-bottom: 3px solid var(--accent-teal);
}
.top__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 60px; padding-block: .5rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: inherit; text-decoration: none; }
.brand__badge {
  width: 34px; height: 34px; border-radius: 50%; background: var(--ink-2);
  display: inline-grid; place-items: center; color: var(--on-ink); flex: none;
}
.brand__badge svg { width: 19px; height: 19px; }
.brand__word { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -.01em; }
.brand__word .amber { color: var(--accent-amber); }
.brand--small .brand__badge { width: 28px; height: 28px; }
.brand--small .brand__badge svg { width: 16px; height: 16px; }
.brand--small .brand__word { font-size: 1.05rem; }
.top__nav { display: flex; align-items: center; gap: clamp(.75rem, 2vw, 1.5rem); flex-wrap: wrap; justify-content: flex-end; }
.top__nav a:not(.btn) { color: var(--on-ink-muted); text-decoration: none; font-size: .92rem; font-weight: 500; }
.top__nav a:not(.btn):hover { color: var(--on-ink); }
.top__nav .lang { border: 1px solid var(--ink-border); border-radius: var(--radius-pill); padding: .3rem .7rem; font-size: .8rem; }
@media (max-width: 860px) {
  .top__nav a:not(.btn):not(.lang) { display: none; }
}

/* ------------------------------------------------------------------ hero */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.hero__copy { padding-top: clamp(0px, 2vw, 1.5rem); }
.hero__copy .lead { margin-top: 1.25rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.hero__fine { margin-top: 1.1rem; font-size: .9rem; color: var(--muted); }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- live card */
.live { padding: clamp(1rem, 2.4vw, 1.5rem); box-shadow: var(--shadow); display: grid; gap: 1rem; }
.live__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.live__sub { font-family: var(--font-mono); font-size: .78rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--success); flex: none; margin-top: .3rem; box-shadow: 0 0 0 0 rgba(31, 148, 99, .5); animation: pulse 2.4s ease-out infinite; }
.pulse--stale { background: var(--muted); animation: none; box-shadow: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(31, 148, 99, .45); } 70% { box-shadow: 0 0 0 9px rgba(31, 148, 99, 0); } 100% { box-shadow: 0 0 0 0 rgba(31, 148, 99, 0); } }
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } }
.live__stat { display: flex; flex-direction: column; gap: .25rem; }
.live__label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.live__stat .figure--big.pos { color: var(--success-text); }
.live__stat .figure--big.neg { color: var(--danger-text); }
.live__chart { margin: 0; display: grid; gap: .5rem; }
.panel { display: grid; gap: .2rem; }
.panel__head { display: flex; justify-content: space-between; font-size: .74rem; color: var(--muted); }
.panel__title { font-weight: 600; }
.panel__unit { font-family: var(--font-mono); }
.panel svg { width: 100%; height: auto; display: block; overflow: visible; }
.panel svg text { font-family: var(--font-mono); font-size: 11px; fill: var(--muted); }
.panel svg .grid { stroke: var(--border); stroke-width: 1; }
.panel svg .zero { stroke: var(--muted); stroke-width: 1; opacity: .6; }
.panel svg .now { stroke: var(--text); stroke-width: 1.5; stroke-dasharray: 3 3; }
.panel svg .future { fill: var(--text); opacity: .045; }
.panel svg .price-export { stroke: var(--accent-amber); stroke-width: 2; fill: none; stroke-linejoin: round; }
.panel svg .price-import { stroke: var(--accent-amber); stroke-width: 1.5; fill: none; stroke-dasharray: 4 3; opacity: .8; }
.panel svg .imp { fill: var(--danger); }
.panel svg .exp { fill: var(--success); }
.panel svg .bar-future { opacity: .45; }
.panel svg .soc-area { fill: var(--accent-teal); opacity: .16; }
.panel svg .soc { stroke: var(--accent-teal); stroke-width: 2; fill: none; stroke-linejoin: round; }
.panel svg .soc-future { stroke-dasharray: 5 4; }
.panel svg .cap { stroke: var(--teal-text); stroke-width: 1; stroke-dasharray: 2 4; opacity: .7; }
.axis { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: .7rem; color: var(--muted); padding-inline: 2px; }
.legend { display: flex; flex-wrap: wrap; gap: .35rem 1rem; font-size: .74rem; color: var(--muted); margin-top: .25rem; }
.legend span { display: inline-flex; align-items: center; gap: .4rem; }
.sw { width: 14px; height: 3px; border-radius: 2px; display: inline-block; background: var(--muted); }
.sw--amber { background: var(--accent-amber); }
.sw--dash { background: repeating-linear-gradient(90deg, var(--accent-amber) 0 4px, transparent 4px 7px); }
.sw--danger { background: var(--danger); height: 9px; width: 9px; border-radius: 2px; }
.sw--success { background: var(--success); height: 9px; width: 9px; border-radius: 2px; }
.sw--teal { background: var(--accent-teal); }
.sw--now { background: repeating-linear-gradient(90deg, var(--text) 0 3px, transparent 3px 6px); }
.live__days { display: grid; gap: .5rem; border-top: 1px solid var(--border); padding-top: .9rem; }
.days { display: grid; grid-template-columns: repeat(14, minmax(0, 1fr)); gap: 3px; height: 72px; position: relative; }
.days::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; border-top: 1px solid var(--muted); opacity: .5; }
.days .d { position: relative; height: 100%; }
.days .d i { position: absolute; left: 0; right: 0; display: block; min-height: 2px; }
.days .d.pos i { bottom: 50%; background: var(--success); border-radius: 3px 3px 0 0; }
.days .d.neg i { top: 50%; background: var(--danger); border-radius: 0 0 3px 3px; }
.days .d.today i { opacity: .5; }
.days .d.empty i { bottom: 50%; background: var(--border); }
.days .d:hover::after, .days .d:focus::after {
  content: attr(data-tip); position: absolute; bottom: calc(100% + 4px); left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--on-ink); font: 500 .68rem/1.3 var(--font-mono); padding: .3rem .45rem;
  border-radius: 4px; white-space: nowrap; z-index: 2; pointer-events: none;
}
.live__foot { font-size: .78rem; color: var(--muted); line-height: 1.45; }

/* -------------------------------------------------------------- sections */
.section { padding-block: clamp(3rem, 7vw, 6rem); }
.section--alt { background: var(--card-alt); }
.section--ink { background: var(--ink); color: var(--on-ink); }
.section__head { max-width: 760px; margin-bottom: clamp(1.75rem, 4vw, 3rem); }
.section__head .lead { margin-top: 1rem; }
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .grid--2 { grid-template-columns: 1fr; } }

.tile { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.25rem, 2.4vw, 1.75rem); display: grid; gap: .6rem; align-content: start; }
.tile p { color: var(--muted); font-size: .98rem; }
.tile--who { position: relative; padding-bottom: 3.5rem; }
.tile__link { position: absolute; left: clamp(1.25rem, 2.4vw, 1.75rem); bottom: 1.25rem; font-weight: 600; text-decoration: none; }

/* ----------------------------------------------------------------- steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 2rem); }
.step { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.step__n {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: var(--accent-teal); font-size: 1rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .98rem; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.flow { margin-top: clamp(2rem, 5vw, 3.5rem); overflow-x: auto; }
.flow__svg { width: 100%; min-width: 560px; height: auto; display: block; font-family: var(--font-mono); font-size: 15px; }
.flow__svg text { fill: var(--text); text-anchor: middle; dominant-baseline: middle; }
.flow__in rect, .flow__out rect { fill: var(--card); stroke: var(--border); }
.flow__arrows path { stroke: var(--muted); stroke-width: 1.5; fill: none; }
.flow__brain rect { fill: var(--ink); stroke: var(--accent-teal); stroke-width: 2; }
.flow__brainname { fill: var(--on-ink); font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.flow__brain .flow__small { fill: var(--on-ink-muted); }
.flow__small { font-size: 12px; fill: var(--muted); }
.flow__grid { font-size: 28px; fill: var(--amber-text); }

/* -------------------------------------------------------------- features */
.features { gap: clamp(1.25rem, 3vw, 2.25rem) clamp(1.5rem, 4vw, 3rem); }
.feature { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.feature__icon {
  width: 44px; height: 44px; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--border); color: var(--teal-text); flex: none;
}
.feature h3 { margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .98rem; }

/* --------------------------------------------------------- compatibility */
.compat { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.compat .lead { margin-top: 1rem; }
@media (max-width: 900px) { .compat { grid-template-columns: 1fr; } }
.hw { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.75rem; }
@media (max-width: 560px) { .hw { grid-template-columns: 1fr; } }
.hw__label { display: flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .75rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot--ok { background: var(--success); }
.dot--plan { background: transparent; border: 2px solid var(--muted); }
.hw__list { list-style: none; display: grid; gap: .5rem; }
.hw__list li { display: grid; gap: .1rem; padding: .75rem .9rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.hw__list strong { font-family: var(--font-display); font-size: 1.05rem; }
.hw__list span { font-size: .85rem; color: var(--muted); }
.hw__other { margin-top: 1.25rem; font-size: .95rem; color: var(--muted); }
.supplier { padding: clamp(1.25rem, 2.4vw, 1.75rem); display: grid; gap: .75rem; }
.supplier h3 { font-size: 1.25rem; }
.supplier p { color: var(--muted); font-size: .98rem; }
.supplier__names { color: var(--text) !important; font-weight: 500; }
.supplier hr { margin: .5rem 0; }

/* ---------------------------------------------------------------- origin */
.origin { max-width: 860px; display: grid; gap: 1.5rem; }
.origin__quote { font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.2; margin: 0; color: var(--on-ink); }
.origin__body { color: var(--on-ink-muted); font-size: 1.05rem; max-width: 66ch; }

/* ------------------------------------------------------------------- faq */
.faq { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .faq { grid-template-columns: 1fr; } }
.faq__list { display: grid; }
.faq__item { border-top: 1px solid var(--border); }
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2.25rem 1.1rem 0; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: .35rem; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--teal-text); border-bottom: 2px solid var(--teal-text);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__item p { padding: 0 0 1.25rem; color: var(--muted); max-width: 66ch; }

/* ------------------------------------------------------------------ form */
.signup { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .signup { grid-template-columns: 1fr; } }
.signup__copy .lead { margin-top: 1rem; }
.checks { list-style: none; display: grid; gap: .6rem; margin-top: 1.5rem; color: var(--muted); font-size: .98rem; }
.checks li { padding-left: 1.6rem; position: relative; }
.checks li::before { content: ""; position: absolute; left: 0; top: .45em; width: 8px; height: 13px; border-right: 2px solid var(--success); border-bottom: 2px solid var(--success); transform: rotate(45deg) translateY(-2px); }
.form { padding: clamp(1.25rem, 2.4vw, 1.75rem); display: grid; gap: 1rem; box-shadow: var(--shadow); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { display: grid; gap: .4rem; border: 0; padding: 0; margin: 0; min-width: 0; }
.field label, .field legend { font-size: .85rem; font-weight: 600; color: var(--text); }
.field legend { padding: 0; margin-bottom: .4rem; }
.field .opt { font-weight: 400; color: var(--muted); }
.field--half { grid-template-columns: 1fr 1fr; gap: 1rem; }
.field--half > div { display: grid; gap: .4rem; min-width: 0; }
@media (max-width: 480px) { .field--half { grid-template-columns: 1fr; } }
input[type="text"], input[type="email"], select, textarea {
  width: 100%; font: 400 1rem/1.3 var(--font-body); color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: .7rem .8rem; min-height: 44px;
}
select { appearance: none; -webkit-appearance: none; padding-right: 2.2rem;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--focus); outline-offset: 0; border-color: var(--focus); }
input[aria-invalid="true"] { border-color: var(--danger); }
.radios { display: grid; gap: .5rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .radios { grid-template-columns: 1fr; } }
.radio { display: flex; align-items: center; gap: .6rem; padding: .6rem .75rem; border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; font-size: .92rem; background: var(--bg); }
.radio:has(input:checked) { border-color: var(--accent-teal); box-shadow: inset 0 0 0 1px var(--accent-teal); }
.radio input { accent-color: var(--teal-text); margin: 0; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: var(--muted); cursor: pointer; }
.consent input { margin: .25rem 0 0; accent-color: var(--teal-text); flex: none; width: 16px; height: 16px; }
.form__status { font-size: .88rem; color: var(--muted); min-height: 1.2em; }
.form__ok { padding: .9rem 1rem; border-radius: var(--radius); background: color-mix(in srgb, var(--success) 14%, transparent); color: var(--success-text); font-weight: 500; }
.form__err { padding: .9rem 1rem; border-radius: var(--radius); background: color-mix(in srgb, var(--danger) 14%, transparent); color: var(--danger-text); font-weight: 500; }

/* ---------------------------------------------------------------- footer */
.foot { background: var(--ink); color: var(--on-ink-muted); padding-block: 2rem 2.5rem; padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px)); }
.foot__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; }
.foot .brand__badge { background: var(--ink-2); }
.foot__nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.foot__nav a { color: var(--on-ink-muted); text-decoration: none; font-size: .9rem; }
.foot__nav a:hover { color: var(--on-ink); }
.foot__fine { width: 100%; font-size: .8rem; }

/* ----------------------------------------------------------------- prose */
.prose { max-width: 70ch; display: grid; gap: 1rem; }
.prose h2 { font-family: var(--font-display); font-size: 1.2rem; margin-top: 1rem; }
.prose p { color: var(--muted); }
