/* Nexgen — site stylesheet
   Palette and type are deliberate: brand blue from the Nexgen mark, deep navy ink,
   cool paper, one amber used only for dates and deadlines. */

@font-face { font-family: "Newsreader"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/newsreader-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Newsreader"; font-style: italic; font-weight: 400; font-display: swap; src: url("fonts/newsreader-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Newsreader"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/newsreader-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Newsreader"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/newsreader-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/ibm-plex-sans-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/ibm-plex-sans-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/ibm-plex-sans-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Mono"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Mono"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2"); }

:root {
  --ink: #14233A;
  --navy: #1F3A5F;
  --blue: #0A7CC1;
  --blue-deep: #075E94;
  --sky: #E8F3FA;
  --sky-line: #C6DEEE;
  --paper: #FFFFFF;
  --paper-2: #F4F7FA;
  --line: #D8DFE7;
  --stone: #5A6676;
  --amber: #A86A12;
  --amber-soft: #FBF1E1;
  --display: "Newsreader", "Charter", "Georgia", "Times New Roman", serif;
  --body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --measure: 68ch;
  --container: 1140px;
  --gutter: clamp(20px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blue); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 2px;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.12; margin: 0 0 0.5em; letter-spacing: -0.012em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-family: var(--body); font-size: 1rem; font-weight: 600; letter-spacing: 0; }
p { margin: 0 0 1em; }
p.lede { font-size: clamp(1.15rem, 1.8vw, 1.35rem); line-height: 1.5; color: var(--ink); max-width: var(--measure); }
.measure { max-width: var(--measure); }
ul, ol { padding-left: 1.3em; margin: 0 0 1.2em; }
li { margin: 0 0 0.45em; }
li::marker { color: var(--blue); }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
mark.todo { background: #FFF1A8; color: var(--ink); padding: 0 0.2em; border-radius: 2px; }

.eyebrow { font-family: var(--mono); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-deep); margin: 0 0 0.9rem; }
.eyebrow.dark { color: var(--sky-line); }
.kicker { font-family: var(--mono); font-size: 0.78rem; color: var(--stone); letter-spacing: 0.04em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(52px, 8vw, 96px) 0; }
.section.tint { background: var(--paper-2); }
.section.sky { background: var(--sky); }
.section.ink { background: var(--ink); color: #E6EEF5; }
.section.ink h2, .section.ink h3 { color: #fff; }
.section.ink a { color: #9FD0F2; }
.section.ink a:hover { color: #fff; }
.section + .section:not(.tint):not(.sky):not(.ink) { border-top: 1px solid var(--line); }

.grid { display: grid; gap: clamp(20px, 3vw, 36px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(1.2) blur(8px); border-bottom: 1px solid var(--line); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { height: 48px; width: auto; display: block; }
.brand .descriptor { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); line-height: 1.3; max-width: 34ch; border-left: 1px solid var(--line); padding-left: 12px; }
.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav a { font-weight: 500; font-size: 0.95rem; color: var(--ink); text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover { border-bottom-color: var(--blue); color: var(--ink); }
.nav a[aria-current="page"] { border-bottom-color: var(--blue); }
.nav .btn { margin-left: 8px; }
.menu-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 4px; padding: 8px 12px; font: inherit; font-weight: 500; color: var(--ink); cursor: pointer; }
@media (max-width: 960px) {
  .brand .descriptor { display: none; }
  .menu-toggle { display: inline-block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 16px; box-shadow: 0 12px 30px rgba(20,35,58,0.08); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav a[aria-current="page"] { border-bottom: 1px solid var(--line); color: var(--blue-deep); }
  .nav .btn { margin: 14px 0 0; text-align: center; }
}

/* Buttons */
.btn { display: inline-block; font-family: var(--body); font-weight: 600; font-size: 0.95rem; line-height: 1; padding: 14px 22px; border-radius: 4px; text-decoration: none; border: 1.5px solid var(--blue); background: var(--blue); color: #fff; transition: background .15s, border-color .15s, color .15s; cursor: pointer; }
.btn:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; }
.btn.ghost { background: transparent; color: var(--blue-deep); }
.btn.ghost:hover { background: var(--sky); color: var(--blue-deep); }
.btn.light { background: #fff; border-color: #fff; color: var(--ink); }
.btn.light:hover { background: var(--sky); border-color: var(--sky); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.4rem; }

/* Hero */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px); background:
  linear-gradient(180deg, #fff 0%, #F6F9FC 100%); }
.hero .layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 900px) { .hero .layout { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 0.6em; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--blue-deep); }
.hero .lede { margin-bottom: 0; }
.reveal { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
.reveal.d1 { animation-delay: .08s; } .reveal.d2 { animation-delay: .16s; } .reveal.d3 { animation-delay: .26s; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Milestone rail: the site's signature — real obligations with real dates */
.rail { border-left: 2px solid var(--ink); padding-left: 0; margin: 0; list-style: none; }
.rail-title { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin: 0 0 14px 22px; }
.rail li { position: relative; padding: 0 0 18px 22px; margin: 0; }
.rail li::before { content: ""; position: absolute; left: -7px; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--paper); border: 2px solid var(--ink); }
.rail li.now::before { background: var(--amber); border-color: var(--amber); }
.rail .when { font-family: var(--mono); font-size: 0.78rem; font-weight: 500; color: var(--amber); letter-spacing: 0.04em; display: block; margin-bottom: 2px; }
.rail .what { display: block; font-weight: 600; font-size: 0.98rem; line-height: 1.35; }
.rail .ask { display: block; color: var(--stone); font-size: 0.93rem; line-height: 1.45; margin-top: 2px; }
.rail .ask a { color: var(--blue-deep); }

/* Proof strip */
.proof { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof div { padding: 18px 18px 18px 0; border-left: 1px solid var(--line); padding-left: 18px; }
.proof div:first-child { border-left: 0; padding-left: 0; }
.proof .num { font-family: var(--display); font-size: 1.75rem; line-height: 1; font-weight: 500; color: var(--navy); display: block; margin-bottom: 6px; }
.proof .lbl { font-size: 0.9rem; color: var(--stone); line-height: 1.35; display: block; }
@media (max-width: 900px) { .proof { grid-template-columns: repeat(2, 1fr); } .proof div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); } .proof div:nth-child(-n+2) { border-top: 0; } }
@media (max-width: 480px) { .proof { grid-template-columns: 1fr; } .proof div:nth-child(2) { border-top: 1px solid var(--line); } }

/* Pillars */
.pillar { border-top: 3px solid var(--navy); padding-top: 18px; }
.pillar .eyebrow { color: var(--navy); }
.pillar h3 { margin-bottom: 0.4em; }
.pillar p { color: var(--stone); }
.pillar ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.pillar li { padding: 9px 0; border-top: 1px solid var(--line); margin: 0; }
.pillar li a { text-decoration: none; font-weight: 500; }
.pillar li a:hover { text-decoration: underline; }

/* Service tiles */
.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 1000px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }
.tile { display: block; background: #fff; padding: 26px 24px 52px; text-decoration: none; color: var(--ink); position: relative; transition: background .15s; min-height: 200px; }
.tile:hover { background: var(--sky); color: var(--ink); }
.tile .eyebrow { margin-bottom: 14px; }
.tile h3 { font-size: 1.3rem; margin-bottom: 0.45em; }
.tile p { color: var(--stone); font-size: 0.95rem; margin: 0; }
.tile .arrow { position: absolute; right: 22px; bottom: 20px; font-family: var(--mono); color: var(--blue-deep); }

/* Why / statement list */
.statements { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 48px; }
@media (max-width: 700px) { .statements { grid-template-columns: 1fr; } }
.statements li { margin: 0; padding-top: 16px; border-top: 1px solid var(--line); }
.statements li strong { display: block; font-family: var(--display); font-size: 1.35rem; font-weight: 500; margin-bottom: 6px; line-height: 1.2; }
.statements li span { color: var(--stone); }

/* Chips line (who we work with) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chips li { margin: 0; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 0.92rem; background: #fff; }
.chips li a { text-decoration: none; color: var(--ink); }
.chips li:hover { border-color: var(--blue); }

/* CTA band */
.cta-band { background: var(--ink); color: #E6EEF5; }
.cta-band .inner { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 40px; align-items: center; }
@media (max-width: 800px) { .cta-band .inner { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; margin-bottom: 0.4em; }
.cta-band p { color: #C8D6E4; max-width: 60ch; }
.cta-band .contact-lines { font-family: var(--mono); font-size: 0.9rem; line-height: 1.9; }
.cta-band .contact-lines a { color: #9FD0F2; }

/* Page header (interior pages) */
.page-head { padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 48px); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fff 0%, #F6F9FC 100%); }
.page-head h1 { max-width: 22ch; }
.page-head .lede { max-width: 64ch; }

/* Article / prose layout */
.prose { max-width: var(--measure); }
.prose h2 { margin-top: 2.2em; font-size: clamp(1.45rem, 2.4vw, 1.85rem); }
.prose h3 { margin-top: 1.8em; }
.prose .eyebrow { margin-top: 2.4em; }
.prose .eyebrow:first-child { margin-top: 0; }
.prose ul li, .prose ol li { margin-bottom: 0.5em; }

/* Service page layout */
.service-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 900px) { .service-layout { grid-template-columns: 1fr; } }
.aside { position: sticky; top: 96px; }
.aside .card { background: var(--sky); border: 1px solid var(--sky-line); padding: 22px 22px 24px; margin-bottom: 20px; }
.aside .card h3 { font-family: var(--body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }
.aside .card .btn { width: 100%; text-align: center; margin-top: 8px; }
.aside .card p { font-size: 0.95rem; margin-bottom: 0.8em; }
.engagements { list-style: none; padding: 0; margin: 0; }
.engagements li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-top: 1px solid var(--line); margin: 0; font-size: 0.95rem; }
.engagements li:first-child { border-top: 0; padding-top: 0; }
.engagements .dur { font-family: var(--mono); font-size: 0.78rem; color: var(--stone); white-space: nowrap; text-align: right; }
.get { background: var(--paper-2); border-left: 3px solid var(--blue); padding: 20px 24px; margin: 1.4rem 0 2rem; }
.get ul { margin: 0; }
.why { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; margin: 2rem 0; font-family: var(--display); font-size: 1.25rem; line-height: 1.45; }
.why .eyebrow { font-family: var(--mono); font-size: 0.74rem; }

/* Phases (a real sequence, so numbering carries meaning) */
.phases { counter-reset: phase; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 1000px) { .phases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .phases { grid-template-columns: 1fr; } }
.phases li { counter-increment: phase; background: #fff; padding: 22px 20px 24px; margin: 0; }
.phases li::before { content: counter(phase, decimal-leading-zero); font-family: var(--mono); font-size: 0.8rem; color: var(--amber); letter-spacing: 0.1em; display: block; margin-bottom: 10px; }
.phases h3 { font-size: 1.3rem; margin-bottom: 0.5em; }
.phases p { font-size: 0.93rem; color: var(--stone); margin-bottom: 0.8em; }
.phases .out { font-size: 0.88rem; color: var(--ink); border-top: 1px solid var(--line); padding-top: 10px; margin: 0; }
.phases .out strong { font-family: var(--mono); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 4px; }

/* Model cards */
.models { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 900px) { .models { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .models { grid-template-columns: 1fr; } }
.model { border: 1px solid var(--line); padding: 22px 22px 24px; background: #fff; }
.model h3 { font-size: 1.25rem; margin-bottom: 0.4em; }
.model p { font-size: 0.95rem; color: var(--stone); margin-bottom: 0.7em; }
.model .shape { font-family: var(--mono); font-size: 0.76rem; color: var(--amber); letter-spacing: 0.04em; margin-bottom: 10px; }
.model .gets { font-size: 0.92rem; color: var(--ink); border-top: 1px solid var(--line); padding-top: 10px; margin: 0; }

/* Numbered commitments */
.commitments { counter-reset: c; list-style: none; padding: 0; margin: 0; max-width: var(--measure); }
.commitments li { counter-increment: c; position: relative; padding: 14px 0 14px 44px; border-top: 1px solid var(--line); margin: 0; }
.commitments li::before { content: counter(c); position: absolute; left: 0; top: 14px; font-family: var(--mono); font-size: 0.8rem; color: var(--blue-deep); }

/* Sector blocks */
.sectors { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 48px; }
@media (max-width: 800px) { .sectors { grid-template-columns: 1fr; } }
.sector { border-top: 2px solid var(--navy); padding-top: 16px; }
.sector h2 { font-size: 1.5rem; margin-bottom: 0.5em; }
.sector p { color: var(--ink); }
.sector .links { font-size: 0.92rem; color: var(--stone); }
.sector .links a { margin-right: 12px; }

/* Founder */
.founder-layout { display: grid; grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 800px) { .founder-layout { grid-template-columns: 1fr; } }
.portrait { aspect-ratio: 4 / 5; background: var(--sky); border: 1px solid var(--sky-line); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--stone); font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; padding: 20px; }
.facts { list-style: none; padding: 0; margin: 20px 0 0; }
.facts li { padding: 10px 0; border-top: 1px solid var(--line); margin: 0; font-size: 0.95rem; }
.facts li strong { display: block; font-family: var(--mono); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-bottom: 2px; }

/* Insights list */
.articles { list-style: none; padding: 0; margin: 0; max-width: 80ch; }
.articles li { padding: 22px 0; border-top: 1px solid var(--line); margin: 0; display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 20px; }
@media (max-width: 640px) { .articles li { grid-template-columns: 1fr; gap: 6px; } }
.articles .tag { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-deep); padding-top: 6px; }
.articles h3 { font-size: 1.35rem; margin-bottom: 0.3em; }
.articles p { color: var(--stone); margin: 0; font-size: 0.97rem; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 80px); }
@media (max-width: 800px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 12px 0; border-top: 1px solid var(--line); margin: 0; display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 16px; }
.contact-list li strong { font-family: var(--mono); font-weight: 500; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); padding-top: 4px; }
form .field { margin-bottom: 16px; }
form label { display: block; font-weight: 500; font-size: 0.92rem; margin-bottom: 6px; }
form input, form textarea, form select { width: 100%; font: inherit; padding: 12px 14px; border: 1px solid #B9C4D0; border-radius: 4px; background: #fff; color: var(--ink); }
form textarea { min-height: 150px; resize: vertical; }
form .hint { font-size: 0.85rem; color: var(--stone); margin-top: 6px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.site-footer { background: var(--navy); color: #C8D6E4; padding: 48px 0 28px; font-size: 0.93rem; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
@media (max-width: 800px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .site-footer .cols { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--mono); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0 0 8px; }
.site-footer a { color: #E6EEF5; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .brandline { font-family: var(--display); font-size: 1.35rem; color: #fff; margin-bottom: 8px; }
.site-footer .legal { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 18px; font-size: 0.82rem; color: #A9B9CB; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.site-footer .legal a { color: #C8D6E4; }

/* Utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; } .mb-2 { margin-bottom: 2rem; }
.small { font-size: 0.9rem; color: var(--stone); }
.center { text-align: center; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 8px; top: -48px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 4px; z-index: 100; }
.skip:focus { top: 8px; }
