* { border: 0; box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #F4EEE3;
  --fg: #2A201C;
  --primary: #6B1F2B;
  --idle: #C7A15A;
  --focus: #D9BC7A;
  --trans-dur: .5s;
  --trans-timing: cubic-bezier(.65, 0, .35, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
html, body { min-height: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  transition:
    background-color 520ms cubic-bezier(.65, 0, .35, 1),
    color 520ms cubic-bezier(.65, 0, .35, 1);
}
body[data-section="faith"] {
  --bg: #F4EEE3;
  --fg: #2A201C;
  --primary: #6B1F2B;
  --idle: #C7A15A;
  --focus: #D9BC7A;
  --search-color: #C7A15A;
}
body[data-section="future"] {
  --bg: #EAF3FF;
  --fg: #0B1530;
  --primary: #1455D9;
  --idle: #41D9FF;
  --focus: #76E5FF;
  --search-color: #1455D9;
}
.site-shell {
  width: min(760px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  gap: clamp(54px, 10vh, 110px);
  padding: clamp(42px, 9vh, 96px) 0;
}
.identity-switch { width: 256px; height: 128px; }
.switch, .switch__input { -webkit-tap-highlight-color: transparent; }
.switch { position: relative; display: block; width: 256px; height: 128px; }
.switch__input {
  cursor: pointer;
  filter: url(#goo);
  outline: transparent;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.switch__input::before, .switch__input::after {
  background-color: var(--idle);
  content: "";
  display: block;
  position: absolute;
  transition: background-color var(--trans-dur) var(--trans-timing), transform var(--trans-dur) var(--trans-timing);
}
.switch__input::before {
  border-radius: 10.6667px;
  top: calc(50% - 10.6667px);
  width: 100%;
  height: 21.3333px;
}
.switch__input::after {
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 128px;
  height: 128px;
  transform-origin: 0 50%;
}
.switch__input:active::after { transform: translateX(20%) scale(1.2, .8); }
.switch__input:focus-visible::before, .switch__input:focus-visible::after { background-color: var(--focus); }
.switch__input:checked::before, .switch__input:checked::after { background-color: var(--primary); }
.switch__input:checked::after {
  transform: translateX(100%);
  transform-origin: 100% 50%;
}
.switch__input:checked:active::after { transform: translateX(80%) scale(1.2, .8); }

.switch__input.is-animating-on::after {
  animation: switch-on var(--trans-dur) both;
}

.switch__input.is-animating-off::after {
  animation: switch-off var(--trans-dur) both;
}
.switch__input:checked:focus-visible::before, .switch__input:checked:focus-visible::after { background-color: var(--focus); }
.switch__icon {
  position: absolute;
  z-index: 1;
  top: 21.3333px;
  width: 85.3333px;
  height: 85.3333px;
  color: white;
  pointer-events: none;
  transition: opacity var(--trans-dur) var(--trans-timing), transform var(--trans-dur) var(--trans-timing);
}
.switch__icon svg {
  display: block;
  width: 85.3333px;
  height: 85.3333px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.switch__icon--fish { left: 21.3333px; opacity: 1; transform: scale(1); }
.switch__icon--eye { right: 21.3333px; opacity: 0; transform: scale(.84); }
.switch__input:checked ~ .switch__icon--fish { opacity: 0; transform: scale(.84); }
.switch__input:checked ~ .switch__icon--eye { opacity: 1; transform: scale(1); }
.switch__sr { overflow: hidden; position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); white-space: nowrap; }
.switch-filter { position: absolute; }
.page-content { width: min(620px, 100%); text-align: center; align-self: start; }
.eyebrow { margin-bottom: 12px; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); opacity: .78; }
h1 { font-size: clamp(54px, 12vw, 104px); line-height: .95; letter-spacing: -.06em; }
.intro { max-width: 520px; margin: 26px auto 0; font-size: clamp(17px, 2.4vw, 22px); line-height: 1.55; color: var(--fg); opacity: .72; }
@keyframes switch-on {
  from { animation-timing-function: ease-in; transform: translateX(20%) scale(1.2, .8); transform-origin: 0 50%; }
  50% { animation-timing-function: ease-out; transform: translateX(100%) scale(.9, 1.1); transform-origin: 100% 50%; }
  to { transform: translateX(100%); transform-origin: 100% 50%; }
}
@keyframes switch-off {
  from { animation-timing-function: ease-in; transform: translateX(80%) scale(1.2, .8); transform-origin: 100% 50%; }
  50% { animation-timing-function: ease-out; transform: scale(.9, 1.1); transform-origin: 0 50%; }
  to { transform: scale(1); transform-origin: 0 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .switch__input::after, .switch__icon { animation: none !important; transition-duration: 1ms !important; }
}

.switch__input--syncing::after,
.switch__input--syncing ~ .switch__icon {
  animation: none !important;
  transition: none !important;
}

.switch__input:disabled {
  cursor: default;
}

/* Top controls: exact center switch, search anchored on the right. */
.top-controls {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  min-height: 46px;
  display: grid;
  place-items: center;
}

/* Identity switch reduced exactly 3× again: 256×128 → 85.333×42.667. */
.identity-switch {
  width: 85.3333px;
  height: 42.6667px;
}

.switch {
  width: 85.3333px;
  height: 42.6667px;
}

.switch__input::before {
  border-radius: 3.5556px;
  top: calc(50% - 3.5556px);
  height: 7.1111px;
}

.switch__input::after {
  width: 42.6667px;
  height: 42.6667px;
}

.switch__icon {
  top: 7.1111px;
  width: 28.4444px;
  height: 28.4444px;
}

.switch__icon svg {
  width: 28.4444px;
  height: 28.4444px;
}

.switch__icon--fish { left: 7.1111px; }
.switch__icon--eye { right: 7.1111px; }

/* Codrops/Tympanus Gooey Search geometry adapted to this non-React shell. */
.gooey-search {
  position: absolute;
  right: 0;
  top: 50%;
  width: 230px;
  height: 46px;
  transform: translateY(-50%);
  pointer-events: none;
}

.gooey-search__inner {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 46px;
  filter: url(#search-goo-effect);
  transition: width 750ms cubic-bezier(.22, .8, .22, 1);
  pointer-events: auto;
}

.gooey-search.is-open .gooey-search__inner {
  width: 230px;
}

.gooey-search__field,
.gooey-search__submit {
  position: absolute;
  top: 0;
  height: 46px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
}

.gooey-search__field {
  right: 0;
  width: 100px;
  padding: 10px 20px;
  overflow: hidden;
  cursor: pointer;
  transition:
    width 750ms cubic-bezier(.22, .8, .22, 1),
    right 750ms cubic-bezier(.22, .8, .22, 1),
    transform 180ms ease,
    background-color 520ms cubic-bezier(.65, 0, .35, 1);
}

.gooey-search.is-open .gooey-search__field {
  right: 50px;
  width: 180px;
  cursor: text;
}

.gooey-search__field:active {
  transform: scale(.95);
}

.gooey-search__label {
  display: block;
  position: relative;
  left: 4px;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -.02em;
  transition: opacity 160ms ease, transform 240ms ease;
  pointer-events: none;
}

.gooey-search.is-open .gooey-search__label {
  opacity: 0;
  transform: translateX(-20px);
}

.gooey-search__input {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 10px 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease 260ms;
}

.gooey-search.is-open .gooey-search__input {
  opacity: 1;
  pointer-events: auto;
}

.gooey-search__input::placeholder {
  color: rgba(255, 255, 255, .7);
}

.gooey-search__submit {
  right: 0;
  width: 46px;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(-50px) scale(.8);
  pointer-events: none;
  transition:
    opacity 300ms ease 90ms,
    transform 850ms cubic-bezier(.22, .8, .22, 1),
    background-color 520ms cubic-bezier(.65, 0, .35, 1);
}

.gooey-search.is-open .gooey-search__submit {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.gooey-search__submit svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.gooey-search__field:focus-visible,
.gooey-search__submit:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

@media (max-width: 620px) {
  .top-controls {
    min-height: 116px;
    align-items: start;
  }

  .gooey-search {
    top: auto;
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gooey-search__inner,
  .gooey-search__field,
  .gooey-search__label,
  .gooey-search__input,
  .gooey-search__submit {
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
}

/* 2026-07-27: enlarge both permanent controls by exactly 30%. */
.top-controls {
  min-height: 60px;
}

.identity-switch {
  transform: scale(1.3);
  transform-origin: center center;
}

.gooey-search {
  transform: translateY(-50%) scale(1.3);
  transform-origin: right center;
}

@media (max-width: 620px) {
  .top-controls {
    min-height: 140px;
  }

  .gooey-search {
    transform: translateX(50%) scale(1.3);
    transform-origin: center bottom;
  }
}

/* 2026-07-27: thicken only the horizontal switch track. */
.switch__input::before {
  height: 11.4px;
  top: calc(50% - 5.7px);
  border-radius: 5.7px;
}

/* 2026-07-27: halve only the horizontal switch track thickness. */
.switch__input::before {
  height: 5.7px;
  top: calc(50% - 2.85px);
  border-radius: 2.85px;
}

/* Keep the thin connector visible outside the goo filter. */
.switch::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: calc(50% - 2.85px);
  width: 100%;
  height: 5.7px;
  border-radius: 2.85px;
  background: var(--idle);
  transition: background-color var(--trans-dur) var(--trans-timing);
  pointer-events: none;
}

.switch:has(.switch__input:checked)::before {
  background: var(--primary);
}

.switch__input {
  z-index: 1;
}

.switch__input::before {
  opacity: 0;
}

/* 2026-07-27: true shared goo layer for a smooth runner/track junction. */
.switch::before {
  display: none;
}

.switch__input {
  z-index: 4;
  filter: none;
  background: transparent;
}

.switch__input::before,
.switch__input::after {
  display: none;
}

.switch__goo-layer {
  position: absolute;
  z-index: 1;
  inset: 0;
  filter: url(#switch-goo-soft);
  pointer-events: none;
}

.switch__track,
.switch__runner {
  position: absolute;
  display: block;
  background: var(--idle);
  transition:
    background-color var(--trans-dur) var(--trans-timing),
    transform var(--trans-dur) var(--trans-timing);
}

.switch__track {
  left: 0;
  top: calc(50% - 2.85px);
  width: 100%;
  height: 5.7px;
  border-radius: 2.85px;
}

.switch__runner {
  top: 0;
  left: 0;
  width: 42.6667px;
  height: 42.6667px;
  border-radius: 50%;
  transform-origin: 0 50%;
}

.switch__input:checked + .switch__goo-layer .switch__track,
.switch__input:checked + .switch__goo-layer .switch__runner {
  background: var(--primary);
}

.switch__input:checked + .switch__goo-layer .switch__runner {
  transform: translateX(100%);
  transform-origin: 100% 50%;
}

.switch__input:active + .switch__goo-layer .switch__runner {
  transform: translateX(20%) scale(1.2, .8);
}

.switch__input:checked:active + .switch__goo-layer .switch__runner {
  transform: translateX(80%) scale(1.2, .8);
}

.switch__input:focus-visible + .switch__goo-layer .switch__track,
.switch__input:focus-visible + .switch__goo-layer .switch__runner {
  background: var(--focus);
}

.switch__input.is-animating-on + .switch__goo-layer .switch__runner {
  animation: switch-on var(--trans-dur) both;
}

.switch__input.is-animating-off + .switch__goo-layer .switch__runner {
  animation: switch-off var(--trans-dur) both;
}

.switch__input--syncing + .switch__goo-layer .switch__runner {
  animation: none !important;
  transition: none !important;
}

.switch__icon {
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .switch__runner,
  .switch__track {
    animation: none !important;
    transition-duration: 1ms !important;
  }
}

/* Tabler search icon replaces the closed-state Search label. */
.gooey-search__label {
  left: 0;
  display: grid;
  place-items: center;
  height: 26px;
}

.gooey-search__label svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Match Gooey Search height and icon scale to the identity switch. */
.gooey-search {
  width: 213.3333px;
  height: 42.6667px;
}

.gooey-search__inner {
  width: 92.7536px;
  height: 42.6667px;
}

.gooey-search.is-open .gooey-search__inner {
  width: 213.3333px;
}

.gooey-search__field,
.gooey-search__submit {
  height: 42.6667px;
}

.gooey-search__field {
  width: 92.7536px;
  padding: 9.2754px 18.5507px;
}

.gooey-search.is-open .gooey-search__field {
  right: 46.3768px;
  width: 166.9565px;
}

.gooey-search__input {
  padding: 9.2754px 16.6957px;
}

.gooey-search__submit {
  width: 42.6667px;
  transform: translateX(-46.3768px) scale(.8);
}

.gooey-search__label,
.gooey-search__label svg,
.gooey-search__submit svg {
  width: 28.4444px;
  height: 28.4444px;
}

.gooey-search__label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gooey-search.is-open .gooey-search__label {
  transform: translate(calc(-50% - 20px), -50%);
}

.gooey-search__submit svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 2026-07-27: circular closed search and optical icon sizing. */
.gooey-search__inner {
  width: 42.6667px;
}

.gooey-search__field {
  width: 42.6667px;
  padding: 0;
  border-radius: 50%;
}

.gooey-search.is-open .gooey-search__field {
  right: 46.3768px;
  width: 166.9565px;
  padding: 9.2754px 18.5507px;
  border-radius: 999px;
}

.gooey-search__label,
.gooey-search__label svg,
.gooey-search__submit svg {
  width: 18.5px;
  height: 18.5px;
}

/* 2026-07-27: thicken both search icons without changing optical size. */
.gooey-search__label svg,
.gooey-search__submit svg {
  stroke-width: 2.8;
}

/* 2026-07-27: restore original goo split and scale all search geometry, except icon. */
.top-controls {
  min-height: 84px;
}

.gooey-search {
  width: 300px;
  height: 60px;
}

.gooey-search__inner {
  width: 60px;
  height: 60px;
}

.gooey-search.is-open .gooey-search__inner {
  width: 300px;
}

.gooey-search__field,
.gooey-search__submit {
  height: 60px;
}

.gooey-search__field {
  width: 60px;
  padding: 0;
  border-radius: 50%;
}

.gooey-search.is-open .gooey-search__field {
  right: 65.2174px;
  width: 234.7826px;
  padding: 13.0435px 26.087px;
  border-radius: 999px;
}

.gooey-search__input {
  padding: 13.0435px 23.4783px;
}

.gooey-search__submit {
  width: 60px;
  transform: translateX(-65.2174px) scale(.8);
}

.gooey-search.is-open .gooey-search__submit {
  transform: translateX(0) scale(1);
}

/* Keep both Tabler search glyphs optically matched to fish/eye. */
.gooey-search__label,
.gooey-search__label svg,
.gooey-search__submit svg {
  width: 18.5px;
  height: 18.5px;
}

@media (max-width: 620px) {
  .top-controls {
    min-height: 170px;
  }
}

/* 2026-07-27: align visible Gooey Search height with identity switch. */
.gooey-search {
  width: 277.5px;
  height: 55.5px;
}

.gooey-search__inner {
  width: 55.5px;
  height: 55.5px;
}

.gooey-search.is-open .gooey-search__inner {
  width: 277.5px;
}

.gooey-search__field,
.gooey-search__submit {
  height: 55.5px;
}

.gooey-search__field {
  width: 55.5px;
}

.gooey-search.is-open .gooey-search__field {
  right: 60.3261px;
  width: 217.1739px;
  padding: 12.0652px 24.1304px;
}

.gooey-search__input {
  padding: 12.0652px 21.7174px;
}

.gooey-search__submit {
  width: 55.5px;
  transform: translateX(-60.3261px) scale(.8);
}

.gooey-search.is-open .gooey-search__submit {
  transform: translateX(0) scale(1);
}

/* 2026-07-27: viewport-edge spacing equals the current visible search circle height. */
:root {
  --control-edge: 72.15px; /* 55.5px geometry × 1.3 shared scale */
}

.site-shell {
  width: 100%;
  padding-top: var(--control-edge);
  padding-right: 0;
  padding-left: 0;
}

.top-controls {
  width: calc(100vw - (2 * var(--control-edge)));
  justify-self: center;
  margin: 0;
}

.identity-switch {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.3);
  transform-origin: center center;
}

.gooey-search {
  right: 0;
}

@media (max-width: 620px) {
  :root {
    --control-edge: 32px;
  }

  .site-shell {
    padding-top: var(--control-edge);
  }

  .top-controls {
    width: calc(100vw - (2 * var(--control-edge)));
  }

  .identity-switch {
    top: 0;
    transform: translateX(-50%) scale(1.3);
  }

  .gooey-search {
    right: 0;
    left: auto;
    transform: scale(1.3);
    transform-origin: right bottom;
  }
}

/* 2026-07-28: final integer geometry for top controls. */
:root {
  --control-size: 56px;
  --control-edge: 56px;
}

.site-shell {
  width: 100%;
  padding-top: var(--control-edge);
  padding-right: 0;
  padding-left: 0;
}

.top-controls {
  width: calc(100vw - 112px);
  min-height: 56px;
  justify-self: center;
}

.identity-switch {
  width: 111px;
  height: 56px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.switch {
  width: 111px;
  height: 56px;
}

.switch__track {
  top: 24px;
  height: 8px;
  border-radius: 4px;
}

.switch__runner {
  width: 56px;
  height: 56px;
}

.switch__icon {
  top: 9px;
  width: 38px;
  height: 38px;
}

.switch__icon svg {
  width: 38px;
  height: 38px;
}

.switch__icon--fish { left: 9px; }
.switch__icon--eye { right: 9px; }

.gooey-search {
  right: 0;
  width: 280px;
  height: 56px;
  transform: translateY(-50%);
  transform-origin: right center;
}

.gooey-search__inner {
  width: 56px;
  height: 56px;
}

.gooey-search.is-open .gooey-search__inner {
  width: 280px;
}

.gooey-search__field,
.gooey-search__submit {
  height: 56px;
}

.gooey-search__field {
  width: 56px;
  padding: 0;
}

.gooey-search.is-open .gooey-search__field {
  right: 61px;
  width: 219px;
  padding: 12px 24px;
}

.gooey-search__input {
  padding: 12px 22px;
}

.gooey-search__submit {
  width: 56px;
  transform: translateX(-61px) scale(.8);
}

.gooey-search.is-open .gooey-search__submit {
  transform: translateX(0) scale(1);
}

.gooey-search__label,
.gooey-search__label svg,
.gooey-search__submit svg {
  width: 19px;
  height: 19px;
}

@media (max-width: 620px) {
  :root {
    --control-edge: 24px;
  }

  .site-shell {
    padding-top: 24px;
  }

  .top-controls {
    width: calc(100vw - 48px);
    min-height: 144px;
  }

  .identity-switch {
    top: 0;
    transform: translateX(-50%);
  }

  .gooey-search {
    right: 0;
    left: auto;
    transform: none;
    transform-origin: right bottom;
  }
}


/* 2026-07-28: search follows the visible switch-circle color per route. */
.gooey-search__field,
.gooey-search__submit {
  background: var(--search-color, var(--primary));
}


/* 2026-07-28: exact reverse timeline for Gooey Search closing. */
.gooey-search.is-open.is-closing .gooey-search__inner {
  width: 56px;
  transition-delay: 100ms;
}

.gooey-search.is-open.is-closing .gooey-search__field {
  right: 0;
  width: 56px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transition-delay: 100ms, 100ms, 0ms, 0ms;
}

.gooey-search.is-open.is-closing .gooey-search__submit {
  opacity: 0;
  transform: translateX(-61px) scale(.8);
  pointer-events: none;
  transition-delay: 460ms, 0ms, 0ms;
}

.gooey-search.is-open.is-closing .gooey-search__input {
  opacity: 0;
  pointer-events: none;
  transition-delay: 370ms;
}

.gooey-search.is-open.is-closing .gooey-search__label {
  opacity: 1;
  transform: translate(-50%, -50%);
  transition-delay: 690ms, 610ms;
}

.gooey-search.is-closing {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .gooey-search.is-open.is-closing .gooey-search__inner,
  .gooey-search.is-open.is-closing .gooey-search__field,
  .gooey-search.is-open.is-closing .gooey-search__submit,
  .gooey-search.is-open.is-closing .gooey-search__input,
  .gooey-search.is-open.is-closing .gooey-search__label {
    transition-delay: 0ms !important;
  }
}

/* 2026-07-28: search geometry is controlled by one reversible WAAPI timeline. */
.gooey-search__inner,
.gooey-search__field,
.gooey-search__submit,
.gooey-search__input,
.gooey-search__label {
  transition: none !important;
}

.gooey-search.is-open.is-closing {
  pointer-events: auto;
}

/* 2026-07-28: darker cosmic/lab palette for Future. */
body[data-section="future"] {
  --bg: #070B14;
  --fg: #E8EEF8;
  --primary: #5B6CFF;
  --idle: #25345A;
  --focus: #00D9FF;
  --search-color: #5B6CFF;
}

body[data-section="future"] .intro {
  color: #8B98B3;
  opacity: 1;
}

body[data-section="future"] .eyebrow {
  color: #00D9FF;
  opacity: .9;
}

/* 2026-07-28: bilingual Cyrillic/Latin font comparison. */
.site-shell {
  padding-bottom: 96px;
}

.page-content {
  width: min(960px, calc(100% - 48px));
}

.font-lab {
  width: 100%;
  margin-top: 96px;
  text-align: left;
}

.font-lab__header {
  max-width: 680px;
  margin-bottom: 64px;
}

.font-lab__kicker,
.font-group > h3,
.font-sample > span {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.font-lab__kicker {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.font-lab__header h2 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
}

.font-lab__header > p:last-child {
  margin-top: 18px;
  color: var(--fg);
  font-size: 18px;
  line-height: 1.6;
  opacity: .65;
}

.font-group + .font-group {
  margin-top: 80px;
}

.font-group > h3 {
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.font-list {
  list-style: none;
  border-top: 1px solid color-mix(in srgb, var(--fg) 18%, transparent);
}

.font-sample {
  padding: 28px 0 32px;
  border-bottom: 1px solid color-mix(in srgb, var(--fg) 18%, transparent);
}

.font-sample > span {
  display: block;
  margin-bottom: 14px;
  color: var(--fg);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  opacity: .48;
}

.font-list--display strong {
  display: block;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: inherit;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.font-list--body p {
  max-width: 780px;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.62;
}

.font-cormorant strong { font-family: "Cormorant Garamond", serif; font-weight: 600; }
.font-prata strong { font-family: Prata, serif; font-weight: 400; }
.font-unbounded strong { font-family: Unbounded, sans-serif; font-weight: 500; font-size: clamp(28px, 4vw, 48px); letter-spacing: -.04em; }
.font-commissioner strong { font-family: Commissioner, sans-serif; font-weight: 600; }
.font-ibm-plex-display strong { font-family: "IBM Plex Sans", sans-serif; font-weight: 600; }

.font-inter p { font-family: Inter, sans-serif; }
.font-manrope p { font-family: Manrope, sans-serif; }
.font-source-sans p { font-family: "Source Sans 3", sans-serif; }
.font-pt-sans p { font-family: "PT Sans", sans-serif; }
.font-noto-sans p { font-family: "Noto Sans", sans-serif; }

body[data-section="future"] .font-lab__kicker,
body[data-section="future"] .font-group > h3 {
  color: #00D9FF;
}

@media (max-width: 620px) {
  .site-shell {
    padding-bottom: 64px;
  }

  .page-content {
    width: min(100% - 32px, 960px);
  }

  .font-lab {
    margin-top: 72px;
  }

  .font-lab__header {
    margin-bottom: 48px;
  }

  .font-group + .font-group {
    margin-top: 64px;
  }

  .font-sample {
    padding: 24px 0 28px;
  }
}


/* 2026-07-28: second display-font shortlist. */
.font-geologica strong { font-family: Geologica, sans-serif; font-weight: 600; }
.font-literata strong { font-family: Literata, serif; font-weight: 600; }
.font-tenor strong { font-family: "Tenor Sans", sans-serif; font-weight: 400; letter-spacing: -.02em; }
.font-brygada strong { font-family: "Brygada 1918", serif; font-weight: 600; }
.font-jost strong { font-family: Jost, sans-serif; font-weight: 600; letter-spacing: -.025em; }
