/* ============================================================
   FORUM 3G — Civic Modern Forward
   Aesthetic: forward-looking civic design, full Pfaffnau blue,
   big condensed sans-serif, motion as core element
   Anchor: massive blue numerals 01 / 02 / 03 as roadmap
   ============================================================ */

:root {
  /* Background system — clean, modern, slight warmth */
  --bg: #fafaf6;
  --bg-soft: #f1f1ec;
  --bg-deep: #e8e8e1;

  /* Ink — cool, modern, not the warm-black of editorial */
  --ink: #0a0d12;
  --ink-soft: #4a4f56;
  --mute: #8a8f96;
  --line: #d8d8d2;

  /* Pfaffnauer Wappenblau — voller Intensität, single brand color */
  --blue: #0093dd;
  --blue-deep: #006fa8;
  --blue-bright: #00b8ff;

  /* Type — Familjen Grotesk by Letters from Sweden: civic-modern, warm details */
  --sans: "Familjen Grotesk", "Helvetica Neue", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "Courier New", monospace;

  /* Rhythm */
  --gutter: clamp(28px, 5vw, 72px);
  --section-y: clamp(80px, 14vh, 180px);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*, *::before, *::after { -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  font-variation-settings: "wght" 400, "wdth" 100, "opsz" 14;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: white; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

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

.wrap {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.wrap--narrow { max-width: 880px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow--blue { color: var(--blue); }

/* Arrow utility — forward indicator */
.arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 240ms var(--ease);
}
.arrow::after {
  content: "→";
  font-weight: 500;
  display: inline-block;
  transition: transform 240ms var(--ease);
}
a:hover .arrow,
button:hover .arrow,
.arrow:hover { gap: 12px; }
a:hover .arrow::after,
button:hover .arrow::after,
.arrow:hover::after { transform: translateX(4px); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ------------------------------------------------------------
   Masthead — modern, clean, confident
   ------------------------------------------------------------ */

.masthead {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 246, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.masthead__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  font-variation-settings: "wght" 600, "wdth" 95, "opsz" 32;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.masthead__brand .three-g {
  color: var(--blue);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 90, "opsz" 32;
}
.masthead__brand .arrow-mark {
  color: var(--blue);
  font-weight: 500;
  margin-left: 2px;
  display: inline-block;
  animation: nudge 3s var(--ease) infinite;
}

@keyframes nudge {
  0%, 80%, 100% { transform: translateX(0); }
  85% { transform: translateX(3px); }
  90% { transform: translateX(0); }
}

.masthead__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.masthead__nav a {
  font-size: 14px;
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 100, "opsz" 14;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 200ms var(--ease), color 200ms var(--ease);
  color: var(--ink-soft);
}
.masthead__nav a:hover { background: var(--bg-deep); color: var(--ink); }

.masthead__nav a.cta {
  background: var(--ink);
  color: white;
  padding: 10px 18px;
  font-weight: 600;
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.masthead__nav a.cta:hover { background: var(--blue); color: white; }

/* ------------------------------------------------------------
   Hero — confident, asymmetric, forward
   ------------------------------------------------------------ */

.hero {
  padding: clamp(56px, 10vh, 140px) 0 clamp(48px, 8vh, 120px);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__eyebrow span { display: inline-flex; align-items: center; gap: 8px; }
.hero__eyebrow span + span::before {
  content: ""; width: 4px; height: 4px;
  border-radius: 50%; background: var(--mute);
  margin-right: 4px;
}
.hero__eyebrow strong { color: var(--blue); font-weight: 600; }

.hero__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 40px;
  max-width: 14ch;
}
.hero__title em {
  font-style: normal;
  color: var(--blue);
}

.hero__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-top: 48px;
}

.hero__lede {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 380;
  font-variation-settings: "wght" 380, "wdth" 100, "opsz" 24;
  line-height: 1.42;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 38ch;
  margin-bottom: 32px;
}
.hero__lede strong { font-weight: 700; color: var(--blue); }

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue);
  color: white;
  font-size: 16px;
  font-weight: 600;
  font-variation-settings: "wght" 600, "wdth" 100, "opsz" 18;
  padding: 18px 28px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  transition: background 240ms var(--ease), transform 240ms var(--ease);
}
.hero__cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.hero__cta::after {
  content: "→";
  display: inline-block;
  transition: transform 240ms var(--ease);
}
.hero__cta:hover::after { transform: translateX(4px); }

/* Hero stats — dashboard row */
.hero__stats {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 32px);
}

.stat-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-cell__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}
.stat-cell__value {
  font-family: var(--sans);
  font-weight: 600;
  font-variation-settings: "wght" 600, "wdth" 90, "opsz" 96;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.stat-cell__value.is-blue { color: var(--blue); }

/* ------------------------------------------------------------
   Statement — bold typographic declaration, replaces "manifest"
   ------------------------------------------------------------ */

.statement {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.statement__inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.statement__label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.statement__label::before {
  content: ""; width: 32px; height: 1px;
  background: var(--blue);
}

.statement__text {
  font-family: var(--sans);
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 100, "opsz" 96;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 24ch;
}
.statement__text em {
  font-style: normal;
  color: var(--blue);
}

/* ------------------------------------------------------------
   Chapters — the design anchor, modern roadmap form
   ------------------------------------------------------------ */

.chapters {
  border-bottom: 1px solid var(--line);
  position: relative;
}

.chapter {
  padding: clamp(60px, 9vh, 120px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.chapter:last-child { border-bottom: none; }

.chapter__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2.5fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}

.chapter__num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(120px, 18vw, 260px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: var(--blue);
  position: relative;
}

.chapter__num::after {
  content: "→";
  position: absolute;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.18em;
  letter-spacing: 0;
  color: var(--ink);
  top: 0;
  right: -0.4em;
  transform: rotate(90deg);
  transform-origin: center;
  font-variation-settings: "wght" 400, "wdth" 100, "opsz" 24;
}
.chapter:last-child .chapter__num::after { display: none; }

.chapter__num-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 12px;
}

.chapter__body h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 95, "opsz" 96;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}

.chapter__lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 28px;
}
.chapter__lede em { font-style: normal; color: var(--blue); font-weight: 600; }

.chapter__points {
  list-style: none;
}
.chapter__points li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 17px;
  font-weight: 500;
  align-items: center;
}
.chapter__points li:last-child { border-bottom: 1px solid var(--line); }
.chapter__points li span:first-child {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.04em;
}

.chapter__quote {
  background: var(--bg-soft);
  border-left: 3px solid var(--blue);
  padding: 28px 28px 28px 32px;
  align-self: end;
  margin-top: 24px;
}
.chapter__quote q {
  font-family: var(--sans);
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 100, "opsz" 32;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  display: block;
  quotes: "„" """;
}
.chapter__quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ------------------------------------------------------------
   News — clean modular cards, no decorative covers
   ------------------------------------------------------------ */

.news {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.news__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.news__head h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 95, "opsz" 96;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.news__head h2 em { font-style: normal; color: var(--blue); }

.news__head a {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 999px;
  transition: all 200ms var(--ease);
}
.news__head a:hover { background: var(--ink); color: white; border-color: var(--ink); }

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: 4px;
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), background 280ms var(--ease);
  position: relative;
  overflow: hidden;
}
.article:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  background: var(--bg);
}

.article__category {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article__category time { color: var(--mute); font-weight: 400; }

.article__title {
  font-family: var(--sans);
  font-weight: 600;
  font-variation-settings: "wght" 600, "wdth" 100, "opsz" 32;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
}

.article__lede {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  flex: 1;
}

.article__metric {
  display: flex;
  gap: 24px;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.article__metric div { display: flex; flex-direction: column; gap: 2px; }
.article__metric strong {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 90, "opsz" 32;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--blue);
}
.article__metric span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}

.article__readmore {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}
.article__readmore::after {
  content: "→";
  transition: transform 240ms var(--ease);
}
.article:hover .article__readmore::after { transform: translateX(4px); }

/* ------------------------------------------------------------
   People — clean modern grid
   ------------------------------------------------------------ */

.people {
  padding: var(--section-y) 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.people__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  margin-bottom: 80px;
  align-items: end;
}
.people__head h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 95, "opsz" 96;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.people__head h2 em { font-style: normal; color: var(--blue); }
.people__head p {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 50ch;
}

.people__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.person {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.person__portrait {
  aspect-ratio: 4 / 5;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 280ms var(--ease);
}
.person:hover .person__portrait {
  transform: translateY(-4px);
}
.person__portrait::before {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 80, "opsz" 96;
  font-size: 80px;
  color: var(--blue);
  opacity: 0.32;
  letter-spacing: -0.04em;
}
.person__portrait::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}
.person:hover .person__portrait::after { transform: scaleX(1); }

.person__name {
  font-family: var(--sans);
  font-weight: 600;
  font-variation-settings: "wght" 600, "wdth" 100, "opsz" 18;
  font-size: 18px;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.person__role {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ------------------------------------------------------------
   Join — full-bleed blue, the strongest CTA moment
   ------------------------------------------------------------ */

.join {
  background: var(--blue);
  color: white;
  padding: clamp(80px, 14vh, 180px) 0;
  position: relative;
  overflow: hidden;
}

.join::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 184, 255, 0.6), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 111, 168, 0.5), transparent 60%);
  pointer-events: none;
}

.join__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}

.join__head {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: white;
}
.join__head em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
  display: inline-block;
}

.join__list {
  list-style: none;
}

.join__list li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  align-items: center;
}
.join__list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.25); }

.join__list li span:first-child {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}
.join__list li span:nth-child(2) {
  font-family: var(--sans);
  font-weight: 600;
  font-variation-settings: "wght" 600, "wdth" 100, "opsz" 24;
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: -0.015em;
}
.join__list li a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 200ms var(--ease);
}
.join__list li a::after {
  content: "→";
  transition: transform 240ms var(--ease);
}
.join__list li a:hover { background: white; color: var(--blue); }
.join__list li a:hover::after { transform: translateX(3px); }

/* ------------------------------------------------------------
   Footer — minimal modern
   ------------------------------------------------------------ */

footer {
  background: var(--bg);
  padding: clamp(60px, 10vh, 120px) 0 32px;
  border-top: 1px solid var(--line);
}

.foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.foot__brand h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 90, "opsz" 32;
  font-size: 32px;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.foot__brand h3 .three-g { color: var(--blue); font-weight: 700; font-variation-settings: "wght" 700, "wdth" 85, "opsz" 32; }
.foot__brand h3 .arrow-mark { color: var(--blue); font-weight: 500; }

.foot__brand p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
}

.foot__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.foot__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot__col a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 200ms;
}
.foot__col a:hover { color: var(--blue); }
.foot__col a::after {
  content: "↗";
  font-size: 11px;
  opacity: 0;
  transition: opacity 200ms, transform 200ms;
  transform: translate(-4px, 2px);
}
.foot__col a:hover::after { opacity: 1; transform: translate(0, 0); }

.foot__form {
  display: flex;
  margin-top: 16px;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  align-items: center;
  border: 1px solid var(--line);
}
.foot__form input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  outline: none;
}
.foot__form input::placeholder { color: var(--mute); }
.foot__form button {
  border: 0;
  background: var(--ink);
  color: white;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 200ms;
}
.foot__form button:hover { background: var(--blue); }

.colophon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--mute);
  flex-wrap: wrap;
}
.colophon strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   ARTICLE PAGE — modern long-form
   ============================================================ */

.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--blue);
  width: 0%;
  z-index: 100;
  transition: width 80ms linear;
}

.art-hero {
  padding: clamp(48px, 8vh, 120px) 0 clamp(40px, 6vh, 100px);
  border-bottom: 1px solid var(--line);
}

.art-hero__crumbs {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 32px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.art-hero__crumbs a {
  padding: 4px 10px;
  background: var(--bg-soft);
  border-radius: 999px;
  transition: background 200ms;
}
.art-hero__crumbs a:hover { background: var(--bg-deep); color: var(--ink); }
.art-hero__crumbs span.current {
  color: var(--blue);
  padding: 4px 10px;
  background: rgba(0, 147, 221, 0.08);
  border-radius: 999px;
  font-weight: 600;
}

.art-hero__category {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: var(--blue);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.art-hero__category::before {
  content: ""; width: 6px; height: 6px;
  background: white; border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.art-hero__title {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 90, "opsz" 96;
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.038em;
  margin-bottom: 32px;
  max-width: 18ch;
}
.art-hero__title em { font-style: normal; color: var(--blue); }

.art-hero__lede {
  font-family: var(--sans);
  font-weight: 400;
  font-variation-settings: "wght" 400, "wdth" 100, "opsz" 32;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.36;
  letter-spacing: -0.012em;
  color: var(--ink-soft);
  max-width: 36ch;
  margin-bottom: 48px;
}

.art-hero__byline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.art-hero__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.art-hero__avatar::before {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 90, "opsz" 24;
  font-size: 18px;
  color: var(--blue);
}

.art-hero__author { font-size: 14px; line-height: 1.4; }
.art-hero__author strong {
  font-family: var(--sans);
  font-weight: 600;
  font-variation-settings: "wght" 600, "wdth" 100, "opsz" 18;
  font-size: 16px;
  display: block;
}
.art-hero__author span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.art-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-align: right;
}
.art-hero__meta strong { color: var(--ink); font-weight: 500; }

/* Cover */
.art-cover {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  max-height: 70vh;
}
.art-cover svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.art-cover__caption {
  position: absolute;
  bottom: 16px; left: var(--gutter);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: white;
  background: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
}

/* Body */
.art-body {
  padding: clamp(60px, 9vh, 120px) 0;
  display: grid;
  grid-template-columns: 1fr min(720px, 100%) 1fr;
  row-gap: 28px;
}

.art-body > * { grid-column: 2; }

.art-body p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
}

.art-body p strong { font-weight: 700; color: var(--ink); }
.art-body p em { font-style: normal; color: var(--blue); font-weight: 600; }

.art-body h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 95, "opsz" 96;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 48px;
  margin-bottom: 16px;
  display: block;
}
.art-body h2:has(> .num) {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: baseline;
}
.art-body h2 .num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: rgba(0, 147, 221, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  align-self: center;
}
.art-body h2 em { font-style: normal; color: var(--blue); }

.art-body h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-variation-settings: "wght" 600, "wdth" 100, "opsz" 32;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.018em;
  margin-top: 16px;
  margin-bottom: 4px;
}

.art-body ul, .art-body ol { padding-left: 24px; }
.art-body ul li, .art-body ol li {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 8px;
}

/* Pull quote — bold sans, no italic */
.pullquote {
  grid-column: 1 / -1;
  margin: 32px 0;
  padding: 0 var(--gutter);
}
.pullquote__inner {
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--sans);
  font-weight: 600;
  font-variation-settings: "wght" 600, "wdth" 92, "opsz" 96;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
  position: relative;
  padding: 40px 0 40px 40px;
  border-left: 3px solid var(--blue);
}
.pullquote__inner::before {
  content: "→";
  position: absolute;
  top: 32px; left: -16px;
  background: var(--bg);
  color: var(--blue);
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}
.pullquote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Stats callout */
.stats {
  grid-column: 1 / -1;
  margin: 24px 0;
  padding: 0 var(--gutter);
}
.stats__inner {
  background: var(--ink);
  color: white;
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: clamp(24px, 4vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
  border-radius: 4px;
}
.stats__label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-bright);
  border-top: 2px solid var(--blue);
  padding-top: 12px;
  line-height: 1.4;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
@media (max-width: 720px) {
  .stats__inner { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.stat__value {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 88, "opsz" 96;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.stat__label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Self-critical box */
.transparent-box {
  grid-column: 1 / -1;
  margin: 32px 0;
  padding: 0 var(--gutter);
}
.transparent-box__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ink);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  border-radius: 4px;
}
@media (max-width: 720px) { .transparent-box__inner { grid-template-columns: 1fr; } }
.transparent-box__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.transparent-box__label::before { content: "↓ "; color: var(--blue); }
.transparent-box h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 95, "opsz" 32;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--ink);
}
.transparent-box p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Footnotes */
.footnotes {
  grid-column: 2;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.footnotes h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.footnotes ol { padding-left: 18px; }
.footnotes li { margin-bottom: 8px; }

/* Author card */
.author-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  margin: clamp(60px, 9vh, 120px) 0 0;
}
.author-card__inner {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: center;
}
.author-card__portrait {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.author-card__portrait::before {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 90, "opsz" 32;
  font-size: 28px;
  color: var(--blue);
}
.author-card__bio span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
}
.author-card__bio strong {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 95, "opsz" 32;
  font-size: 24px;
  letter-spacing: -0.022em;
  display: block;
  margin-bottom: 6px;
}
.author-card__bio p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 50ch;
}
.author-card__contact a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 200ms;
}
.author-card__contact a:hover { background: var(--blue); }
.author-card__contact a::after { content: "→"; }
@media (max-width: 720px) {
  .author-card__inner { grid-template-columns: 60px 1fr; }
  .author-card__contact { grid-column: 1 / -1; }
}

/* Related */
.related {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.related h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-variation-settings: "wght" 700, "wdth" 95, "opsz" 96;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.related h2 em { font-style: normal; color: var(--blue); }
.related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

/* ------------------------------------------------------------
   Reveal animations
   ------------------------------------------------------------ */

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow,
.hero__title,
.hero__lede,
.hero__cta,
.hero__stats,
.art-hero__category,
.art-hero__title,
.art-hero__lede,
.art-hero__byline { animation: rise 700ms var(--ease) both; }

.hero__title, .art-hero__title { animation-delay: 80ms; }
.hero__lede, .art-hero__lede { animation-delay: 160ms; }
.hero__cta, .art-hero__byline { animation-delay: 240ms; }
.hero__stats { animation-delay: 320ms; }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */

@media (max-width: 1100px) {
  .chapter__inner { grid-template-columns: 1fr 2fr; gap: 32px; }
  .chapter__quote { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .masthead__nav a:not(.cta):not(.cta-mini) { display: none; }

  .hero__layout { grid-template-columns: 1fr; gap: 32px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .statement__inner { grid-template-columns: 1fr; gap: 16px; }
  .statement__label { position: static; }

  .chapter__inner { grid-template-columns: 1fr; }
  .chapter__num { font-size: clamp(120px, 28vw, 200px); }

  .news__head { flex-direction: column; align-items: flex-start; }
  .news__grid, .related__grid { grid-template-columns: 1fr; }

  .people__head { grid-template-columns: 1fr; }
  .people__grid { grid-template-columns: repeat(2, 1fr); }

  .join__inner { grid-template-columns: 1fr; gap: 40px; }

  .foot { grid-template-columns: 1fr 1fr; }
  .colophon { flex-direction: column; align-items: flex-start; }

  .art-hero__byline { grid-template-columns: auto 1fr; }
  .art-hero__meta { grid-column: 1 / -1; text-align: left; padding-top: 16px; border-top: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .people__grid { grid-template-columns: 1fr 1fr; }
  .foot { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
}
