:root {
  --ground: #0A0A0B;
  --paper: #ECE6D6;
  --ink: #121316;
  --accent: #D4915C;
  --accent-2: #8EB39A;
  --muted: #5B5B60;
  --hairline: #23232A;
  --rule-soft: #1A1A1F;

  --bg: var(--ground);
  --fg: var(--paper);
  --fg-muted: #86848C;
  --rule: var(--hairline);
  --input-bg: #121214;

  --serif: 'Fraunces', 'Newsreader', Georgia, serif;
  --mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;

  --maxw: 1200px;
  --gutter: clamp(24px, 4.2vw, 64px);

  --fr-wonk: 0;
  --fr-soft: 35;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 30, "SOFT" var(--fr-soft);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #0A0A0B; }

a { color: inherit; text-decoration: none; }

.mono {
  font-family: var(--mono);
  font-feature-settings: "zero", "ss01";
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Typographic primitives */
em, i { font-style: italic; font-variation-settings: "opsz" 36, "SOFT" 80; }
.apos::after { content: "\2019"; }

/* Grain overlay — very subtle film texture */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: soft-light;
}

/* Scroll progress hairline */
.scrollprog {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  width: 0%;
  background: var(--accent);
  z-index: 50;
  transition: width 80ms linear;
  opacity: 0.7;
}

/* -------- Layout -------- */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* -------- Nav -------- */
nav.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms ease, background 240ms ease;
}
nav.top.scrolled { border-bottom-color: var(--rule); }
nav.top .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.018em;
  font-weight: 420;
  color: var(--fg);
  font-variation-settings: "opsz" 18, "SOFT" 40;
}
.brand .word { display: inline-flex; align-items: baseline; }
.brand .marker {
  display: inline-block;
  color: var(--accent);
  position: relative;
}
.brand[data-marker="dot"] .marker::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 2px 3px 4px;
  vertical-align: middle;
}

nav .links {
  display: flex;
  gap: 30px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
nav .links a {
  position: relative;
  padding: 6px 0;
  transition: color 160ms ease;
}
nav .links a::before {
  content: "·";
  color: var(--accent);
  opacity: 0;
  margin-right: 6px;
  transition: opacity 180ms ease;
}
nav .links a:hover { color: var(--fg); }
nav .links a:hover::before { opacity: 1; }

@media (max-width: 640px) {
  nav .links { gap: 18px; font-size: 11px; }
  nav.top .inner { height: 60px; }
}

/* -------- Hero -------- */
header.hero {
  position: relative;
  min-height: min(900px, 100vh);
  padding: clamp(80px, 12vh, 140px) 0 clamp(90px, 10vh, 140px);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.attractor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 65% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 45%, rgba(0,0,0,0.15) 85%);
  -webkit-mask-image: radial-gradient(ellipse at 65% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 45%, rgba(0,0,0,0.15) 85%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0) 80%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0) 80%);
}
.hero-inner { width: 100%; }

h1.hero-title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 120, "SOFT" 25;
  font-weight: 360;
  font-size: clamp(44px, 7.6vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  max-width: 22ch;
  color: var(--fg);
}
h1.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 360;
  font-variation-settings: "opsz" 120, "SOFT" 100;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.hero-sub {
  color: var(--fg-muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
  max-width: 42ch;
  margin: 0;
  font-variation-settings: "opsz" 20, "SOFT" 0;
  text-wrap: pretty;
}

/* -------- Sections -------- */
section {
  padding: clamp(80px, 10vh, 140px) 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
section:last-of-type { border-bottom: none; }

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: baseline;
  margin-bottom: 64px;
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; }
}
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label .num { color: var(--accent); font-weight: 500; }
.section-label .tick {
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--fg-muted);
  opacity: 0.5;
}
h2.section-title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 60, "SOFT" 30;
  font-weight: 380;
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
h2.section-title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 60, "SOFT" 100;
}

/* -------- Manifest -------- */
.manifest {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
}
@media (max-width: 760px) { .manifest { grid-template-columns: 1fr; gap: 32px; } }

.para-num {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--fg-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  border-right: 1px solid var(--rule);
  padding-right: 24px;
}
@media (max-width: 760px) {
  .para-num { flex-direction: row; flex-wrap: wrap; border-right: none; border-top: 1px solid var(--rule); padding: 14px 0 0; gap: 14px 22px; }
}
.para-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.2;
}
.para-item .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  font-variation-settings: "opsz" 20, "SOFT" 100;
  letter-spacing: 0;
  min-width: 22px;
}

.manifest-body { max-width: 60ch; }
.manifest-body p {
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.55;
  margin: 0 0 1.35em;
  text-wrap: pretty;
}
.manifest-body p.lead {
  font-size: clamp(24px, 2.1vw, 32px);
  letter-spacing: -0.018em;
  line-height: 1.35;
  font-variation-settings: "opsz" 40, "SOFT" 30;
}
.manifest-body .drop {
  float: left;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 400;
  font-size: 3.8em;
  line-height: 0.82;
  color: var(--accent);
  margin: 0.06em 0.08em 0 0;
}
.manifest-body .pull {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: "opsz" 40, "SOFT" 100;
}
.manifest-body p.deny {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-top: 1px dashed var(--rule);
  border-bottom: 1px dashed var(--rule);
  padding: 18px 0;
  margin: 36px 0;
}
.manifest-body p.deny .sep { color: var(--accent); margin: 0 4px; }
.manifest-body p.stance {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-top: 28px;
}

/* -------- Lab tiles (asymmetric) -------- */
.kacheln {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  min-height: 360px;
}
@media (max-width: 860px) { .kacheln { grid-template-columns: 1fr; } }

.kachel {
  position: relative;
  background: var(--bg);
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  overflow: hidden;
  transition: background 260ms ease, color 260ms ease;
  cursor: pointer;
  color: var(--fg);
}
.kachel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fg);
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 360ms cubic-bezier(.6,0,.2,1);
  z-index: 0;
}
.kachel:hover::after { transform: scaleY(1); }
.kachel:hover { color: var(--bg); }
.kachel > * { position: relative; z-index: 1; }

.k-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.kachel:hover .k-top { color: color-mix(in oklab, var(--bg) 50%, var(--fg-muted)); }

.k-index { opacity: 0.8; }
.k-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 4px 9px;
  border: 1px solid var(--rule);
  border-radius: 0;
  color: var(--fg-muted);
  background: var(--bg);
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}
.k-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
}
.k-status.live { color: var(--accent-2); border-color: color-mix(in oklab, var(--accent-2) 45%, var(--rule)); }
.kachel:hover .k-status { background: transparent; }

.k-title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 48, "SOFT" 40;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 12px 0 6px;
}
.kachel--primary .k-title { font-size: clamp(36px, 4vw, 56px); }

.k-desc {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  flex: 1;
  max-width: 34ch;
  text-wrap: pretty;
  font-variation-settings: "opsz" 20, "SOFT" 20;
}

.k-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  transition: color 220ms ease, gap 260ms ease;
}
.kachel:hover .k-cta { color: var(--accent); gap: 14px; }

.k-orbit {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 180px;
  height: 180px;
  color: var(--accent);
  opacity: 0.25;
  transition: transform 1600ms linear, opacity 400ms ease;
  z-index: 0;
  transform: rotate(0deg);
}
.kachel--primary:hover .k-orbit {
  opacity: 0.9;
  transform: rotate(180deg);
}

/* -------- Who -------- */
.who {
  display: grid;
  grid-template-columns: 220px 96px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 760px) {
  .who { grid-template-columns: 96px 1fr; gap: 24px 28px; }
  .who .section-label { grid-column: 1 / -1; padding-top: 0; margin-bottom: 8px; }
}
.portrait { position: relative; }
.portrait-box {
  position: relative;
  width: 96px;
  height: 116px;
  background: var(--input-bg);
  border: 1px solid var(--rule);
  color: var(--fg);
  overflow: hidden;
}
.portrait-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.portrait-tag {
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  text-align: center;
  font-size: 8.5px;
  letter-spacing: 0.16em;
  color: var(--fg-muted);
}

.who-body { max-width: 54ch; }
.who-body .name {
  font-family: var(--serif);
  font-variation-settings: "opsz" 40, "SOFT" 30;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 440;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.name-dot {
  display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  transform: translateY(-4px);
}
.who-body .bio {
  color: var(--fg-muted);
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.who-body .bio strong { color: var(--fg); font-weight: 500; }
.who-body .bio em { color: var(--accent); font-variation-settings: "opsz" 20, "SOFT" 100; }

.who-stats {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  border-top: 1px dashed var(--rule);
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.who-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.who-stats .k { color: var(--fg-muted); opacity: 0.7; }
.who-stats .v {
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--fg);
  font-weight: 500;
}

/* -------- Newsletter -------- */
.newsletter {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 760px) { .newsletter { grid-template-columns: 1fr; gap: 24px; } }

.nl-body { max-width: 58ch; }
.nl-headline {
  font-family: var(--serif);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  font-weight: 360;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 16px;
  text-wrap: balance;
}
.nl-headline em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 72, "SOFT" 100;
}
.nl-sub {
  color: var(--fg-muted);
  font-size: 18px;
  margin: 0 0 32px;
  line-height: 1.55;
  text-wrap: pretty;
}

.nl-form {
  display: flex;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 0;
  max-width: 520px;
  transition: border-color 240ms ease;
}
.nl-form.focused { border-bottom-color: var(--accent); }
.nl-form.error { border-bottom-color: #B65A4A; }
.nl-form.sent { border-bottom-color: var(--accent-2); }
.nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: var(--serif);
  font-size: 19px;
  padding: 16px 0;
  outline: none;
  font-variation-settings: "opsz" 20, "SOFT" 0;
}
.nl-form input::placeholder { color: var(--fg-muted); font-style: italic; font-variation-settings: "opsz" 20, "SOFT" 100; }
.nl-form button {
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 2px 16px 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 200ms ease, gap 240ms ease;
}
.nl-form button:hover { color: var(--accent); gap: 12px; }
.nl-form button:disabled { opacity: 0.4; cursor: default; }
.nl-note {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--fg-muted);
  margin-top: 16px;
  letter-spacing: 0.06em;
  min-height: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nl-note.error { color: #D17A68; }
.nl-note.success { color: var(--accent-2); }
.nl-note .ob-id { opacity: 0.7; }

/* TEMP: Beehiiv embed container — remove with the iframe after KYC */
.nl-embed {
  width: 100%;
  max-width: 560px;
  margin: 0 -20px;
}
.nl-embed .beehiiv-embed {
  width: 100%;
  height: 220px;
  border: 0;
  background: transparent;
  display: block;
  color-scheme: light;
}
@media (max-width: 560px) {
  .nl-embed { margin: 0; }
  .nl-embed .beehiiv-embed { height: 260px; }
}

/* -------- Footer -------- */
footer.foot {
  padding: 36px 0 52px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
.foot-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr; gap: 14px; }
}
.foot-mark { display: inline-flex; align-items: center; gap: 10px; color: var(--fg); }
.foot-mark .mark-svg { color: var(--accent); display: inline-flex; }
.foot-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.foot-links a {
  transition: color 180ms ease;
  position: relative;
}
.foot-links a:hover { color: var(--fg); }
.foot-tele {
  display: inline-flex;
  gap: 16px;
  color: var(--fg-muted);
  opacity: 0.7;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* -------- Reveal animation -------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms cubic-bezier(.2,.7,.2,1), transform 900ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* -------- Mobile polish -------- */
@media (max-width: 760px) {
  :root { --gutter: 22px; }

  /* Nav */
  .brand { font-size: 20px; }

  /* Hero */
  header.hero {
    min-height: auto;
    padding: 64px 0 72px;
    align-items: flex-start;
  }
  h1.hero-title {
    font-size: clamp(34px, 9.4vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.028em;
    max-width: none;
    margin: 0 0 20px;
  }
  h1.hero-title em { white-space: normal; }
  .hero-sub {
    font-size: 17px;
    line-height: 1.5;
    max-width: none;
  }

  /* Sections */
  section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; gap: 14px; }
  .section-label { padding-top: 0; font-size: 10.5px; }
  h2.section-title { font-size: clamp(26px, 6.4vw, 34px); line-height: 1.12; }

  /* Manifest */
  .manifest { gap: 28px; }
  .para-num { padding: 14px 0 0; gap: 12px 20px; font-size: 10px; }
  .para-item .roman { font-size: 19px; min-width: 20px; }
  .manifest-body p { font-size: 18px; line-height: 1.55; margin-bottom: 1.25em; }
  .manifest-body p.lead { font-size: 21px; line-height: 1.35; }
  .manifest-body .drop { font-size: 3em; margin: 0.02em 0.1em 0 0; }
  .manifest-body p.deny {
    font-size: 10.5px; letter-spacing: 0.1em;
    padding: 14px 0; margin: 24px 0;
  }
  .manifest-body p.stance { font-size: 22px; line-height: 1.28; margin-top: 20px; }

  /* Lab tiles */
  .kacheln { min-height: auto; }
  .kachel { min-height: 220px; padding: 24px 22px 22px; gap: 14px; }
  .kachel .k-title { font-size: 30px; margin: 6px 0 2px; }
  .kachel--primary .k-title { font-size: 34px; }
  .kachel .k-desc { font-size: 17px; line-height: 1.4; }
  .k-orbit { width: 140px; height: 140px; right: -24px; bottom: -24px; }

  /* Who */
  .who { gap: 20px 22px; }
  .who-body .name { font-size: 24px; }
  .who-body .bio { font-size: 17px; margin-bottom: 22px; }
  .who-stats { gap: 18px 26px; font-size: 10.5px; }
  .who-stats .v { font-size: 19px; }

  /* Newsletter */
  .nl-headline { font-size: clamp(28px, 7vw, 36px); line-height: 1.08; margin-bottom: 12px; }
  .nl-sub { font-size: 17px; margin-bottom: 22px; }
  .nl-embed { max-width: 100%; margin: 0; }
  .nl-embed .beehiiv-embed { height: 300px; }

  /* Footer */
  footer.foot { padding: 22px 0 40px; }
}

@media (max-width: 420px) {
  .brand { font-size: 19px; }
  nav .links { gap: 14px; font-size: 10.5px; }
  nav.top .inner { height: 56px; }
  .manifest-body .drop { font-size: 2.6em; }
  .kachel { padding: 22px 20px 20px; }
  .kachel .k-title, .kachel--primary .k-title { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
  .t-cross::after { transform: scaleX(1); }
  html { scroll-behavior: auto; }
  .attractor { opacity: 0.5; }
}
