/* palette: bg=#FFFFFF fg=#111111 accent=#0000EE */
/* fonts: display="Tinos" body="Tinos" mono="Courier Prime" */

:root {
  --bg: #FFFFFF;        /* dominant background */
  --bg-alt: #ECECE6;    /* alternating section (cool light neutral) */
  --bg-band: #111111;   /* dark inverted band */
  --fg: #111111;        /* primary text */
  --fg-soft: #2E2E2E;   /* slightly lighter fg */
  --muted: #6A6A66;     /* secondary text */
  --accent: #0000EE;    /* classic old-web link blue */
  --accent-deep: #00009B; /* darker accent for hover */
  --visited: #551A8B;   /* classic visited purple, used sparingly */
  --border: #111111;    /* hard brutalist rule */
  --border-soft: rgba(17, 17, 17, 0.16);

  --serif: 'Tinos', 'Times New Roman', Times, serif;
  --sans: 'Tinos', ui-serif, Georgia, serif;
  --mono: 'Courier Prime', 'Courier New', ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1200px;
  --pad: 20px;
}

@media (min-width: 768px) {
  :root { --pad: 32px; }
}

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

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

body {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.76;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
a:visited { color: var(--visited); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid var(--border);
}
.section:first-of-type { border-top: 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--bg-band);
  color: var(--bg);
}
.section--dark a { color: #8EA9FF; }
.section--dark .eyebrow { color: #8EA9FF; }
.section--tight { padding: clamp(56px, 8vw, 96px) 0; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 20px;
  display: block;
  font-weight: 700;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--fg);
  margin: 0;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--bg); }

h1 {
  font-size: clamp(3.25rem, 10vw, 8.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
em { font-style: italic; color: var(--accent); }
.section--dark em { color: #8EA9FF; }

p { margin: 0 0 1.1em; }
.lead {
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  color: var(--fg-soft);
}
.subhead {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.16em;
  color: var(--muted);
  line-height: 1.7;
}
.muted { color: var(--muted); }
.mono { font-family: var(--mono); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 15px 26px;
  border: 1px solid var(--border);
  color: var(--fg);
  background: var(--bg);
  text-decoration: none;
  transition: transform 0.35s var(--ease), background-color 0.25s ease, color 0.25s ease;
}
.btn:visited { color: var(--fg); }
.btn:hover { transform: translateY(-2px); background: var(--fg); color: var(--bg); }
.btn--primary {
  background: var(--fg);
  color: var(--bg);
}
.btn--primary:visited { color: var(--bg); }
.btn--primary:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--ghost { background: transparent; }
.section--dark .btn {
  border-color: var(--bg);
  background: transparent;
  color: var(--bg);
}
.section--dark .btn:hover { background: var(--bg); color: var(--fg); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.arrow-link .ar { transition: transform 0.3s var(--ease); }
.arrow-link:hover .ar { transform: translateX(5px); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.header[data-scrolled="true"] { box-shadow: 0 6px 30px -18px rgba(0, 0, 0, 0.5); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 24px;
}
.brand {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  white-space: nowrap;
}
.brand:visited { color: var(--fg); }
.brand span { color: var(--accent); }

.nav {
  display: none;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.13em;
  color: var(--fg);
  text-decoration: none;
}
.nav a:visited { color: var(--fg); }
.nav a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.nav a[aria-current="page"] { color: var(--accent); }

.header__cta { display: none; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--fg);
  margin: 0 auto;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 66px 0 0;
  z-index: 99;
  background: var(--bg);
  border-top: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
  padding: 32px var(--pad) 48px;
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a:visited { color: var(--fg); }
.mobile-menu .btn { margin-top: 28px; font-size: 12px; }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.42) 40%, rgba(255,255,255,0.86) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 120px;
  padding-bottom: clamp(48px, 8vw, 96px);
}
.hero h1 { max-width: 14ch; margin-bottom: 28px; }
.hero .subhead { max-width: 46ch; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  margin-top: clamp(36px, 6vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 28px 44px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.hero__meta .stat { min-width: 120px; }

/* ---------- Stat ---------- */
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}
.stat__label {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}
.section--dark .stat__label { color: rgba(255,255,255,0.6); }

/* ---------- Section head ---------- */
.section-head { max-width: 900px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 22px; }

.split {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; align-items: start; }
  .split--sticky > :first-child { position: sticky; top: 100px; }
}

/* ---------- Manifesto ---------- */
.manifesto p {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 auto;
  text-align: center;
}
.pullquote {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pullquote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: clamp(6rem, 16vw, 14rem);
  line-height: 0.7;
  display: block;
  color: var(--accent);
  margin-bottom: -0.1em;
}
.pullquote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  line-height: 1.24;
  letter-spacing: -0.015em;
}
.pullquote cite {
  display: block;
  margin-top: 34px;
  font-family: var(--mono);
  font-style: normal;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.62);
}

/* ---------- Grid of cards ---------- */
.grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.section--alt .card { background: var(--bg-alt); }
.card__index {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 22px;
}
.card h3 { margin-bottom: 14px; }
.card p { color: var(--fg-soft); font-size: 1rem; line-height: 1.66; }
.card .arrow-link { margin-top: auto; padding-top: 22px; }

/* ---------- Work / case studies ---------- */
.work-list { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.work {
  background: var(--bg);
  display: grid;
  gap: 0;
  text-decoration: none;
  color: var(--fg);
}
.work:visited { color: var(--fg); }
.work__media { overflow: hidden; aspect-ratio: 16 / 10; }
.work__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: grayscale(0.15);
}
.work:hover .work__media img { transform: scale(1.05); filter: grayscale(0); }
.work__body { padding: clamp(24px, 3vw, 40px); }
.work__tag {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.work__body h3 { margin-bottom: 14px; }
.work__body p { color: var(--fg-soft); font-size: 1rem; }
@media (min-width: 820px) {
  .work { grid-template-columns: 1.05fr 1fr; align-items: stretch; }
  .work:nth-child(even) .work__media { order: 2; }
  .work__body { display: flex; flex-direction: column; justify-content: center; }
}

/* ---------- Library / articles ---------- */
.lib { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 720px) { .lib { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .lib { grid-template-columns: repeat(3, 1fr); } }
.article {
  background: var(--bg);
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--fg);
}
.article:visited { color: var(--fg); }
.article__meta {
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: 0.13em;
  color: var(--muted);
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
}
.article__meta .cat { color: var(--accent); }
.article h3 { font-size: 1.35rem; line-height: 1.16; margin-bottom: 16px; }
.article p { color: var(--fg-soft); font-size: 0.98rem; line-height: 1.6; }
.article .read { margin-top: auto; padding-top: 22px; }
.article:hover h3 { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Numbered list ---------- */
.steps { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.step {
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 48px);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
}
.section--alt .step { background: var(--bg-alt); }
.step__n {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--fg-soft); font-size: 1rem; margin: 0; }

/* ---------- People (monogram, no faces) ---------- */
.people { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 640px) { .people { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .people { grid-template-columns: repeat(3, 1fr); } }
.person {
  background: var(--bg);
  padding: clamp(26px, 3vw, 40px);
}
.avatar {
  width: 64px; height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 22px;
}
.person h3 { font-size: 1.3rem; margin-bottom: 4px; }
.person .role {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 16px;
  display: block;
}
.person p { color: var(--fg-soft); font-size: 0.98rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 900px; }
.faq__item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__item h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); margin-bottom: 14px; }
.faq__item p { color: var(--fg-soft); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin: 0 auto 24px; }
.cta-band .lead { max-width: 60ch; margin: 0 auto 40px; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Contact form ---------- */
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg);
}
.field input, .field textarea, .field select {
  font-family: var(--serif);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.field--row { display: grid; gap: 22px; }
@media (min-width: 640px) { .field--row { grid-template-columns: 1fr 1fr; } }
.form .btn { justify-content: center; }

.contact-grid { display: grid; gap: clamp(40px, 6vw, 72px); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.15fr 1fr; } }
.contact-detail {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.contact-detail .k {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.contact-detail .v { font-size: 1.15rem; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 48px 0 18px; }
.prose h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 1.05rem; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 8px; }
.page-head {
  padding: clamp(120px, 16vw, 200px) 0 clamp(48px, 7vw, 90px);
  border-bottom: 1px solid var(--border);
}
.page-head h1 { font-size: clamp(2.8rem, 8vw, 6rem); margin-bottom: 24px; }
.page-head .lead { max-width: 56ch; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-band);
  color: var(--bg);
  border-top: 1px solid var(--border);
  padding: clamp(64px, 9vw, 110px) 0 40px;
}
.footer a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer a:visited { color: rgba(255,255,255,0.72); }
.footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer__top {
  display: grid;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
@media (min-width: 820px) {
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.footer__brand {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
}
.footer__brand span { color: #8EA9FF; }
.footer__brand p {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  margin-top: 20px;
  max-width: 34ch;
  line-height: 1.7;
}
.footer__col h4 {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 12px; font-size: 1rem; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
}

/* ---------- Cookie popup ---------- */
.cookie-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-end;
  padding: 24px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 32px 36px;
  max-width: 480px;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.cookie-popup__label {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 12px;
}
.cookie-popup__card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 0.95rem; color: var(--fg-soft); margin: 0; line-height: 1.6; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 20px; }
.cookie-popup__actions button {
  padding: 11px 24px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  background: var(--bg);
  color: var(--fg);
}
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); }
.cookie-popup__actions button:hover { opacity: 0.85; }

/* ---------- Misc ---------- */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--accent);
  color: #fff;
  padding: 14px 0;
}
.ticker__track {
  display: inline-flex;
  gap: 44px;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
}
.ticker__track span::after { content: "\2014"; margin-left: 44px; opacity: 0.5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--fg); color: var(--bg);
  padding: 10px 16px; z-index: 200;
  font-family: var(--mono); font-size: 12px;
}
.skip-link:focus { left: 8px; top: 8px; }
