/* =========================================================================
   Herbivorize Predators — "Rewoven Biosphere" design system
   A cool mineral paper, chlorophyll field, bone white, copper tension,
   and a restrained lichen signal. Editorial, scientific, quietly radical.
   ========================================================================= */

:root {
  --bg: #edf1ec;
  --bg-alt: #e2e8e2;
  --paper: #f8f8f3;
  --ink: #10231c;
  --ink-soft: #354a42;
  --muted: #5d7067;
  --line: rgba(16, 35, 28, 0.14);
  --line-light: rgba(238, 244, 239, 0.15);

  --forest: #1c493b;
  --forest-deep: #0b211b;
  --forest-mid: #14372d;
  --sage: #88a89a;
  --sage-soft: #bed2c8;

  --gold: #a34f32;
  --gold-soft: #d37a49;
  --gold-warm: #ffd4ac;
  --lichen: #b8ff87;
  --cream: #eef4ef;

  --maxw: 1300px;
  --narrow: 820px;
  --radius: 10px;
  --radius-lg: 22px;

  --ff-serif: "Libre Caslon Display", "Iowan Old Style", Georgia, serif;
  --ff-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --shadow-sm: 0 1px 2px rgba(11, 33, 27, 0.04), 0 12px 30px rgba(11, 33, 27, 0.05);
  --shadow-md: 0 24px 70px rgba(11, 33, 27, 0.14);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--lichen);
  color: var(--forest-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  color: inherit;
  font-style: italic;
  font-weight: 400;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--lichen);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 4px;
  background: var(--lichen);
  color: var(--forest-deep);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: none;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

.wrap--narrow {
  max-width: var(--narrow);
}

/* -------------------------------------------------------------------------
   Navigation
   ------------------------------------------------------------------------- */

.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--cream);
  transition:
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    color 0.35s var(--ease);
}

.nav__progress {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--lichen);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.nav__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 40px;
  gap: 28px;
}

.nav__brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-family: var(--ff-serif);
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.nav__mark {
  width: 29px;
  height: 29px;
  flex: none;
  color: var(--lichen);
  transition: transform 0.35s var(--ease);
}

.nav__brand:hover .nav__mark {
  transform: rotate(-8deg);
}

.nav__links {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 26px;
}

.nav__links a {
  position: relative;
  color: rgba(238, 244, 239, 0.76);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.nav__links a:hover,
.nav__links a[aria-current="true"] {
  color: var(--cream);
}

.nav__links a:hover::after,
.nav__links a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  display: inline-flex;
  flex: none;
  align-items: center;
  min-height: 42px;
  padding: 9px 17px;
  border: 1px solid rgba(238, 244, 239, 0.34);
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.nav__cta:hover {
  border-color: var(--lichen);
  background: var(--lichen);
  color: var(--forest-deep);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin: 0 0 0 auto;
  padding: 11px 9px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(238, 244, 239, 0.22);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.3s var(--ease),
    opacity 0.2s var(--ease);
}

.nav.is-scrolled {
  background: rgba(237, 241, 236, 0.88);
  color: var(--forest-deep);
  box-shadow: 0 1px 0 rgba(16, 35, 28, 0.1);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav.is-scrolled .nav__mark {
  color: var(--forest);
}

.nav.is-scrolled .nav__links a {
  color: rgba(16, 35, 28, 0.72);
}

.nav.is-scrolled .nav__links a:hover,
.nav.is-scrolled .nav__links a[aria-current="true"] {
  color: var(--forest-deep);
}

.nav.is-scrolled .nav__cta {
  border-color: rgba(16, 35, 28, 0.38);
  color: var(--forest-deep);
}

.nav.is-scrolled .nav__cta:hover {
  border-color: var(--forest-deep);
  background: var(--forest-deep);
  color: var(--cream);
}

.nav__mobile {
  position: fixed;
  z-index: 2;
  inset: 0;
  display: flex;
  overflow-y: auto;
  padding: 112px 28px 36px;
  flex-direction: column;
  background:
    radial-gradient(circle at 82% 92%, rgba(184, 255, 135, 0.1), transparent 28%),
    var(--forest-deep);
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition:
    opacity 0.28s var(--ease),
    transform 0.35s var(--ease),
    visibility 0.35s;
  visibility: hidden;
}

.nav__mobile::after {
  width: min(260px, 70vw);
  height: min(260px, 70vw);
  margin: 46px auto 0;
  border: 1px solid rgba(184, 255, 135, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(184, 255, 135, 0.025),
    0 0 0 56px rgba(184, 255, 135, 0.018);
  content: "";
}

.nav__mobile-label {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
  color: var(--sage-soft);
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav__mobile a {
  display: grid;
  align-items: baseline;
  padding: 14px 0;
  grid-template-columns: 50px 1fr;
  border-bottom: 1px solid var(--line-light);
  color: var(--cream);
  font-family: var(--ff-serif);
  font-size: clamp(1.55rem, 7vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-decoration: none;
}

.nav__mobile a span {
  color: var(--gold-soft);
  font-family: var(--ff-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.nav.is-open {
  color: var(--cream);
}

.nav.is-open .nav__mobile {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav.is-open.is-scrolled {
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.nav.is-open.is-scrolled .nav__brand,
.nav.is-open.is-scrolled .nav__toggle {
  color: var(--cream);
}

.nav.is-open.is-scrolled .nav__mark {
  color: var(--lichen);
}

/* -------------------------------------------------------------------------
   Hero — the rewoven food web
   ------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  min-height: max(820px, 100svh);
  padding: 118px 40px 112px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 35%),
    var(--forest-deep);
  color: var(--cream);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  background: linear-gradient(transparent 8%, rgba(238, 244, 239, 0.08) 26%, rgba(238, 244, 239, 0.08) 74%, transparent 92%);
  content: "";
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__atmosphere::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(238, 244, 239, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 244, 239, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  -webkit-mask-image: radial-gradient(circle at 72% 50%, #000, transparent 68%);
  mask-image: radial-gradient(circle at 72% 50%, #000, transparent 68%);
}

.hero__orb {
  position: absolute;
  border: 1px solid rgba(184, 255, 135, 0.08);
  border-radius: 50%;
}

.hero__orb--one {
  top: -32vw;
  right: -18vw;
  width: 68vw;
  height: 68vw;
}

.hero__orb--two {
  right: 8vw;
  bottom: -31vw;
  width: 52vw;
  height: 52vw;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.86fr);
  gap: clamp(42px, 7vw, 112px);
}

.hero__copy {
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--lichen);
  font-family: var(--ff-mono);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 28px;
  color: #f3f6f1;
  font-size: clamp(4rem, 6.3vw, 6.35rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 em {
  display: inline;
  color: var(--gold-warm);
}

.hero__lede {
  max-width: 610px;
  margin: 0 0 34px;
  color: rgba(238, 244, 239, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.68;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__principles {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: max(40px, calc((100vw - var(--maxw)) / 2 + 40px));
  display: flex;
  align-items: center;
  gap: 0;
  color: rgba(238, 244, 239, 0.48);
  font-family: var(--ff-mono);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__principles span,
.hero__principles strong {
  position: relative;
  padding-right: 24px;
  font-weight: 400;
}

.hero__principles span + span,
.hero__principles strong {
  padding-left: 24px;
}

.hero__principles span + span::before,
.hero__principles strong::before {
  position: absolute;
  top: 50%;
  left: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-soft);
  content: "";
  transform: translateY(-50%);
}

.hero__principles strong {
  color: var(--lichen);
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  right: max(40px, calc((100vw - var(--maxw)) / 2 + 40px));
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(238, 244, 239, 0.42);
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  position: relative;
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: rgba(238, 244, 239, 0.16);
}

.hero__scroll-line::after {
  position: absolute;
  inset: 0;
  background: var(--lichen);
  content: "";
  animation: scan 2.6s var(--ease) infinite;
  transform: translateX(-100%);
}

@keyframes scan {
  0%,
  20% {
    transform: translateX(-100%);
  }
  65%,
  100% {
    transform: translateX(100%);
  }
}

/* Signature figure */

.rewoven {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 0 0 auto;
  border: 1px solid rgba(238, 244, 239, 0.14);
  border-radius: 2px 42px 2px 2px;
  background: rgba(238, 244, 239, 0.028);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.rewoven::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 74px;
  height: 74px;
  border-bottom: 1px solid rgba(238, 244, 239, 0.12);
  border-left: 1px solid rgba(238, 244, 239, 0.12);
  border-bottom-left-radius: 100%;
  content: "";
}

.rewoven__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 19px;
  border-bottom: 1px solid rgba(238, 244, 239, 0.1);
  color: var(--sage-soft);
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rewoven__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.rewoven__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lichen);
  box-shadow: 0 0 16px rgba(184, 255, 135, 0.74);
}

.rewoven__canvas {
  padding: 6px 18px 0;
}

.rewoven__canvas svg {
  display: block;
  width: 100%;
  height: auto;
}

.rewoven__lens {
  fill: rgba(238, 244, 239, 0.014);
  stroke: rgba(238, 244, 239, 0.15);
  stroke-width: 1.2;
}

.rewoven__orbit,
.rewoven__meridian,
.rewoven__equator {
  fill: none;
  stroke: rgba(238, 244, 239, 0.07);
  stroke-width: 1;
}

.rewoven__equator {
  stroke-dasharray: 3 8;
}

.rewoven__micro,
.rewoven__label {
  fill: rgba(238, 244, 239, 0.48);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.2px;
}

.rewoven__title {
  fill: #eef4ef;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 17px;
}

.rewoven__chain,
.rewoven__chain-arrow {
  fill: none;
  stroke: var(--gold-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.rewoven__chain {
  stroke-dasharray: 3 5;
}

.rewoven__node circle {
  fill: var(--forest-deep);
  stroke: rgba(238, 244, 239, 0.55);
  stroke-width: 1.25;
}

.rewoven__node path {
  fill: none;
  stroke: rgba(238, 244, 239, 0.76);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.rewoven__node--harm circle {
  stroke: var(--gold-soft);
}

.rewoven__node--harm path {
  stroke: var(--gold-warm);
}

.rewoven__thread-glow,
.rewoven__thread {
  fill: none;
  stroke: url("#thread-gradient");
  stroke-linecap: round;
}

.rewoven__thread-glow {
  stroke-width: 9;
  opacity: 0.14;
  filter: url("#soft-glow");
}

.rewoven__thread {
  stroke-width: 2.2;
  stroke-dasharray: 7 12;
  animation: thread-flow 8s linear infinite;
}

@keyframes thread-flow {
  to {
    stroke-dashoffset: -152;
  }
}

.rewoven__ground,
.rewoven__grass,
.rewoven__grass-blades,
.rewoven__seed,
.rewoven__animal,
.rewoven__animal-detail {
  fill: none;
  stroke: var(--lichen);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.rewoven__after-glow {
  fill: rgba(184, 255, 135, 0.055);
  filter: url("#soft-glow");
}

.rewoven__ground {
  stroke-width: 1.35;
}

.rewoven__grass {
  stroke-width: 1.65;
}

.rewoven__grass-blades {
  stroke-width: 1.2;
}

.rewoven__seed {
  fill: rgba(184, 255, 135, 0.1);
  stroke-width: 1.25;
}

.rewoven__animal {
  stroke: #d6ffbd;
  stroke-width: 1.7;
}

.rewoven__animal--tail {
  stroke-width: 1.45;
}

.rewoven__animal--head {
  fill: rgba(184, 255, 135, 0.045);
}

.rewoven__animal-detail {
  stroke: var(--cream);
  stroke-width: 1.2;
}

.rewoven__legend {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px 17px;
  gap: 22px;
  border-top: 1px solid rgba(238, 244, 239, 0.1);
  color: rgba(238, 244, 239, 0.52);
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rewoven__legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.rewoven__key {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.rewoven__key--harm {
  background: var(--gold-soft);
}

.rewoven__key--change {
  background: var(--cream);
}

.rewoven__key--life {
  background: var(--lichen);
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 0.22s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--lichen);
  color: var(--forest-deep);
  box-shadow: 0 12px 30px rgba(184, 255, 135, 0.12);
}

.btn--gold:hover {
  background: #cbffa8;
  box-shadow: 0 18px 38px rgba(184, 255, 135, 0.19);
}

.btn--ghost {
  border-color: rgba(238, 244, 239, 0.28);
  background: transparent;
  color: var(--cream);
}

.btn--ghost:hover {
  border-color: rgba(238, 244, 239, 0.58);
  background: rgba(238, 244, 239, 0.06);
}

.btn--ghost-dark {
  border-color: rgba(238, 244, 239, 0.32);
  background: transparent;
  color: var(--cream);
}

.btn--ghost-dark:hover {
  border-color: var(--cream);
  background: rgba(238, 244, 239, 0.07);
}

/* -------------------------------------------------------------------------
   Epigraph
   ------------------------------------------------------------------------- */

.epigraph {
  position: relative;
  padding: clamp(84px, 10vw, 150px) 0;
  overflow: hidden;
  background: #102c24;
  color: var(--cream);
}

.epigraph::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(211, 122, 73, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(211, 122, 73, 0.025),
    0 0 0 140px rgba(211, 122, 73, 0.018);
  content: "";
}

.epigraph__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
}

.epigraph__aside {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid rgba(238, 244, 239, 0.18);
}

.epigraph__aside span {
  padding-top: 15px;
  color: var(--gold-warm);
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.epigraph__aside b {
  height: 88px;
  color: var(--gold-soft);
  font-family: var(--ff-serif);
  font-size: 8rem;
  font-weight: 400;
  line-height: 1;
  opacity: 0.42;
}

.epigraph blockquote {
  margin: 0;
}

.epigraph blockquote p {
  margin: 0 0 30px;
  color: #eef4ef;
  font-family: var(--ff-serif);
  font-size: clamp(1.65rem, 3.2vw, 3.05rem);
  letter-spacing: -0.035em;
  line-height: 1.17;
}

.epigraph cite {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--sage-soft);
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.epigraph cite::before {
  width: 28px;
  height: 1px;
  background: var(--gold-soft);
  content: "";
}

.epigraph cite span {
  font-style: italic;
  text-transform: none;
}

/* -------------------------------------------------------------------------
   Shared section language
   ------------------------------------------------------------------------- */

.section {
  position: relative;
  padding: clamp(92px, 10vw, 150px) 0;
  scroll-margin-top: 0;
}

.section--paper {
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(16, 35, 28, 0.035) 50%, transparent calc(50% + 0.5px)),
    var(--bg);
}

.section--forest {
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 5%, rgba(184, 255, 135, 0.07), transparent 24%),
    var(--forest);
  color: var(--cream);
}

.section--dark {
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(184, 255, 135, 0.025), transparent 38%),
    var(--forest-deep);
  color: var(--cream);
}

.section--vision {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 110%, rgba(184, 255, 135, 0.16), transparent 35%),
    linear-gradient(180deg, #15372e 0%, #1c493b 100%);
  color: var(--cream);
}

.section--vision::before,
.section--vision::after {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(184, 255, 135, 0.075);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.section--vision::before {
  bottom: -460px;
  width: 920px;
  height: 920px;
}

.section--vision::after {
  bottom: -320px;
  width: 640px;
  height: 640px;
}

.section__head {
  position: relative;
  z-index: 1;
  max-width: 890px;
  margin-bottom: clamp(54px, 6vw, 82px);
}

.section__head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 20px;
  color: var(--gold);
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section__kicker::after {
  width: 44px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.56;
}

.section__kicker--light {
  color: var(--gold-warm);
}

.section__head h2 {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.045em;
}

.section__head--center h2 {
  margin-right: auto;
  margin-left: auto;
}

.section--forest .section__head h2,
.section--dark .section__head h2,
.section--vision .section__head h2 {
  color: var(--cream);
}

.section__intro {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.72;
}

.section__head--center .section__intro {
  margin-right: auto;
  margin-left: auto;
}

.section--forest .section__intro,
.section--dark .section__intro,
.section--vision .section__intro {
  color: rgba(238, 244, 239, 0.7);
}

/* -------------------------------------------------------------------------
   Problem — evidence ledger
   ------------------------------------------------------------------------- */

.stat-grid {
  display: grid;
  margin-bottom: clamp(62px, 8vw, 100px);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 250px;
  padding: 31px clamp(24px, 3.3vw, 48px) 34px;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat__num {
  display: block;
  margin-bottom: 62px;
  color: var(--forest);
  font-family: var(--ff-serif);
  font-size: clamp(3.6rem, 6vw, 6.2rem);
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.stat__num sup {
  font-size: 0.45em;
}

.stat__label {
  display: block;
  max-width: 300px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.58;
}

.prose {
  position: relative;
  z-index: 1;
}

.prose p {
  margin: 0 0 22px;
  color: var(--ink-soft);
}

.prose p:last-child {
  margin-bottom: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 106px);
}

.two-col > div {
  position: relative;
}

.two-col > div + div::before {
  position: absolute;
  top: 0.45em;
  bottom: 0.45em;
  left: calc(clamp(48px, 8vw, 106px) / -2);
  width: 1px;
  background: var(--line);
  content: "";
}

.prose--center {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.prose--center p {
  color: rgba(238, 244, 239, 0.78);
  font-size: 1.05rem;
}

/* -------------------------------------------------------------------------
   Proposal — principles and trophic reweaving
   ------------------------------------------------------------------------- */

.pillars {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: clamp(58px, 7vw, 90px);
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar {
  position: relative;
  min-height: 340px;
  padding: 32px 30px 34px;
  overflow: hidden;
  border: 1px solid rgba(238, 244, 239, 0.16);
  border-radius: 2px 28px 2px 2px;
  background: rgba(238, 244, 239, 0.035);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.pillar::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(184, 255, 135, 0.1);
  border-radius: 50%;
  content: "";
}

.pillar:hover {
  border-color: rgba(184, 255, 135, 0.36);
  background: rgba(238, 244, 239, 0.065);
  transform: translateY(-4px);
}

.pillar__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 68px;
  place-items: center;
  border: 1px solid rgba(184, 255, 135, 0.25);
  border-radius: 50%;
  color: var(--lichen);
}

.pillar__icon svg {
  width: 31px;
  height: 31px;
}

.pillar h3 {
  margin-bottom: 13px;
  color: var(--cream);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.pillar p {
  margin: 0;
  color: rgba(238, 244, 239, 0.69);
  font-size: 0.91rem;
  line-height: 1.68;
}

.trophic {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(238, 244, 239, 0.15);
  border-radius: 2px 36px 2px 2px;
  background:
    linear-gradient(90deg, rgba(211, 122, 73, 0.045), transparent 46%, rgba(184, 255, 135, 0.055)),
    rgba(6, 24, 19, 0.22);
}

.trophic__cols {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(220px, 1fr) 76px minmax(220px, 1fr);
  gap: 24px;
}

.trophic__col {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.trophic__col svg {
  display: block;
  width: 100%;
  height: auto;
}

.trophic__caption {
  display: block;
  margin-bottom: 16px;
  color: var(--sage-soft);
  font-family: var(--ff-mono);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trophic__arrow {
  display: grid;
  place-items: center;
}

.trophic figcaption {
  max-width: 700px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(238, 244, 239, 0.12);
  color: rgba(238, 244, 239, 0.68);
  font-size: 0.9rem;
  line-height: 1.68;
  text-align: center;
}

/* -------------------------------------------------------------------------
   Why — comparison matrix and values
   ------------------------------------------------------------------------- */

.compare {
  margin-bottom: 68px;
  border: 1px solid var(--line);
  border-radius: 2px 26px 2px 2px;
  background: rgba(248, 248, 243, 0.7);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.compare__row {
  display: grid;
  padding: 22px 28px;
  align-items: start;
  grid-template-columns: 0.88fr 1.35fr 1.35fr;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  font-size: 0.87rem;
  line-height: 1.6;
}

.compare__row:last-child {
  border-bottom: 0;
}

.compare__row--head {
  padding-top: 17px;
  padding-bottom: 17px;
  background: var(--forest-deep);
  color: var(--sage-soft);
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare__row span:first-child {
  color: var(--muted);
}

.compare__row--head span {
  color: inherit !important;
}

.compare__name {
  display: flex;
  align-items: flex-start;
  color: var(--ink) !important;
  font-family: var(--ff-serif);
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.compare__row span:not(.compare__name) {
  color: var(--ink-soft);
}

.compare__row--win {
  background: rgba(184, 255, 135, 0.16);
  box-shadow: inset 4px 0 var(--forest);
}

.compare__row--win .compare__name {
  color: var(--forest) !important;
}

.compare__badge {
  display: inline-flex;
  margin-left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--ff-mono);
  font-size: 0.52rem;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.why-point {
  min-height: 235px;
  padding: 32px;
  background: var(--bg);
}

.why-point::before {
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 54px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.why-point h3 {
  margin-bottom: 11px;
  color: var(--forest);
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

.why-point p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.89rem;
  line-height: 1.65;
}

/* -------------------------------------------------------------------------
   Objections — direct, unornamented answers
   ------------------------------------------------------------------------- */

.accordion {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
}

.acc {
  margin: 0;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: var(--cream);
}

.acc summary {
  display: flex;
  min-height: 84px;
  padding: 23px 0;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--ff-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  list-style: none;
  transition: color 0.2s var(--ease);
}

.acc summary::-webkit-details-marker {
  display: none;
}

.acc summary:hover {
  color: var(--lichen);
}

.acc summary i {
  position: relative;
  width: 30px;
  height: 30px;
  flex: none;
  border: 1px solid rgba(238, 244, 239, 0.25);
  border-radius: 50%;
}

.acc summary i::before,
.acc summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--lichen);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease);
}

.acc summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.acc[open] summary {
  color: var(--lichen);
}

.acc[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.acc__body {
  max-width: 690px;
  padding: 0 0 28px;
}

.acc__body p {
  margin: 0;
  color: rgba(238, 244, 239, 0.72);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* -------------------------------------------------------------------------
   Vision
   ------------------------------------------------------------------------- */

.section--vision .wrap {
  position: relative;
  z-index: 2;
}

.highlight {
  color: var(--lichen);
  font-style: italic;
}

.pull {
  position: relative;
  margin: 54px -70px !important;
  padding: 40px 70px 36px;
  border-top: 1px solid rgba(238, 244, 239, 0.16);
  border-bottom: 1px solid rgba(238, 244, 239, 0.16);
  color: var(--cream) !important;
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 3.6vw, 3rem) !important;
  font-style: italic;
  letter-spacing: -0.035em;
  line-height: 1.24;
  text-align: center;
}

.pull span {
  display: block;
  margin-top: 19px;
  color: var(--sage-soft);
  font-family: var(--ff-mono);
  font-size: 0.59rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   Sources and final invitation
   ------------------------------------------------------------------------- */

.sources {
  display: grid;
  margin-bottom: 20px;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 20px;
}

.source-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: clamp(30px, 4vw, 48px);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px 28px 2px 2px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.source-card::after {
  position: absolute;
  right: -78px;
  bottom: -78px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(28, 73, 59, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(28, 73, 59, 0.025);
  content: "";
}

.source-card:hover {
  border-color: rgba(28, 73, 59, 0.42);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.source-card__tag {
  margin-bottom: 58px;
  color: var(--gold);
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.source-card h3 {
  max-width: 700px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.source-card__authors {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
}

.source-card__desc {
  max-width: 660px;
  margin: 0 0 34px;
  flex-grow: 1;
  color: var(--ink-soft);
  font-size: 0.89rem;
  line-height: 1.68;
}

.source-card__go {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
}

.source-card__go svg {
  transition: transform 0.25s var(--ease);
}

.source-card:hover .source-card__go svg {
  transform: translate(3px, -3px);
}

.sources__more {
  display: grid;
  margin-bottom: 72px;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sources__more-item {
  margin: 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  background: rgba(248, 248, 243, 0.55);
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.68;
}

.sources__more-label {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-family: var(--ff-mono);
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sources__more-item a {
  color: var(--forest);
  font-weight: 700;
  text-decoration-color: rgba(28, 73, 59, 0.3);
  text-underline-offset: 3px;
}

.cta-band {
  position: relative;
  padding: clamp(44px, 7vw, 82px);
  overflow: hidden;
  border-radius: 2px 44px 2px 2px;
  background: var(--forest-deep);
  color: var(--cream);
  text-align: left;
}

.cta-band::after {
  position: absolute;
  top: 50%;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(184, 255, 135, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 56px rgba(184, 255, 135, 0.025),
    0 0 0 112px rgba(184, 255, 135, 0.018);
  content: "";
  transform: translateY(-50%);
}

.cta-band h3 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.cta-band > p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 0 32px;
  color: rgba(238, 244, 239, 0.72);
}

.cta-band__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-band p.cta-band__fine {
  max-width: 540px;
  margin: 27px 0 0;
  color: rgba(238, 244, 239, 0.64);
  font-size: 0.72rem;
  line-height: 1.6;
}

.cta-band__fine a {
  color: rgba(238, 244, 239, 0.92);
  text-underline-offset: 3px;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */

.footer {
  padding: 68px 0 52px;
  background: #071711;
  color: rgba(238, 244, 239, 0.6);
}

.footer__inner {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 56px;
}

.footer__brand {
  max-width: 520px;
}

.footer__mark {
  display: block;
  color: var(--cream);
  font-family: var(--ff-serif);
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.footer__brand p {
  max-width: 460px;
  margin: 14px 0 0;
  font-size: 0.84rem;
}

.footer__email {
  display: inline-block;
  margin-top: 17px;
  color: var(--lichen);
  font-family: var(--ff-mono);
  font-size: 0.67rem;
  text-decoration: none;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 34px;
}

.footer__nav a {
  color: rgba(238, 244, 239, 0.62);
  font-size: 0.76rem;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer__nav a:hover {
  color: var(--lichen);
}

/* -------------------------------------------------------------------------
   Reveal choreography
   ------------------------------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js .rewoven[data-reveal] {
  transform: translateY(22px) scale(0.985);
}

.js .rewoven[data-reveal].is-visible {
  transform: none;
}

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

@media (max-width: 1180px) {
  .nav__links {
    gap: 18px;
  }

  .nav__links a {
    font-size: 0.7rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 6.1vw, 5.2rem);
  }
}

@media (max-width: 980px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 100px;
  }

  .hero::before {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(4rem, 10vw, 6.2rem);
  }

  .rewoven {
    width: min(650px, 88vw);
    max-width: none;
    margin: 0 auto;
  }

  .hero__principles,
  .hero__scroll {
    display: none;
  }

  .stat-grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .stat {
    display: grid;
    min-height: auto;
    padding: 30px 0;
    grid-template-columns: minmax(180px, 0.42fr) 1fr;
    align-items: center;
    gap: 36px;
  }

  .stat + .stat {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stat__num {
    margin: 0;
  }

  .pillar {
    min-height: auto;
  }

  .pillar__icon {
    margin-bottom: 48px;
  }

  .sources {
    grid-template-columns: 1fr;
  }

  .source-card {
    min-height: 380px;
  }
}

@media (max-width: 800px) {
  .wrap,
  .nav__inner {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero {
    padding-right: 24px;
    padding-left: 24px;
  }

  .epigraph__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .epigraph__aside {
    min-height: auto;
  }

  .epigraph__aside b {
    display: none;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .two-col > div + div::before {
    display: none;
  }

  .trophic__cols {
    grid-template-columns: 1fr;
  }

  .trophic__arrow {
    transform: rotate(90deg);
  }

  .compare__row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 21px 22px;
  }

  .compare__row--head {
    display: none;
  }

  .compare__name {
    margin-bottom: 8px;
    font-size: 1.3rem;
  }

  .compare__row span:not(.compare__name)[data-label]::before {
    display: block;
    margin-top: 10px;
    margin-bottom: 3px;
    color: var(--gold);
    content: attr(data-label);
    font-family: var(--ff-mono);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .why-point {
    min-height: auto;
  }

  .why-point::before {
    margin-bottom: 32px;
  }

  .sources__more {
    grid-template-columns: 1fr;
  }

  .pull {
    margin-right: -24px !important;
    margin-left: -24px !important;
    padding-right: 24px;
    padding-left: 24px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer__nav {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 75px;
  }

  body {
    font-size: 15px;
  }

  .nav__inner {
    min-height: 76px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav__brand {
    font-size: 1rem;
  }

  .nav__mark {
    width: 27px;
    height: 27px;
  }

  .nav__mobile {
    padding-top: 100px;
  }

  .hero {
    min-height: 100svh;
    padding: 116px 20px 74px;
    justify-content: flex-start;
  }

  .hero__atmosphere::before {
    background-size: 48px 48px;
  }

  .hero__grid {
    gap: 44px;
  }

  .eyebrow {
    max-width: 310px;
    margin-bottom: 20px;
    font-size: 0.59rem;
  }

  .hero h1 {
    max-width: 430px;
    margin-bottom: 24px;
    font-size: clamp(3.28rem, 14.6vw, 4.45rem);
    line-height: 0.95;
  }

  .hero__lede {
    margin-bottom: 28px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .rewoven {
    width: 100%;
    border-radius: 2px 28px 2px 2px;
  }

  .rewoven__head {
    padding: 14px;
    font-size: 0.5rem;
  }

  .rewoven__canvas {
    padding-right: 3px;
    padding-left: 3px;
  }

  .rewoven__legend {
    padding-right: 10px;
    padding-left: 10px;
    gap: 12px;
    font-size: 0.47rem;
  }

  .rewoven__legend span {
    gap: 5px;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section__head {
    margin-bottom: 46px;
  }

  .section__kicker {
    font-size: 0.57rem;
  }

  .section__kicker::after {
    width: 28px;
  }

  .section__head h2 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
  }

  .section__intro {
    margin-top: 20px;
    font-size: 0.96rem;
  }

  .epigraph {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .epigraph blockquote p {
    font-size: 1.75rem;
    line-height: 1.22;
  }

  .stat {
    display: block;
    padding: 28px 0 30px;
  }

  .stat__num {
    margin-bottom: 34px;
    font-size: 4.8rem;
  }

  .pillar {
    padding: 27px 24px 30px;
  }

  .pillar__icon {
    margin-bottom: 40px;
  }

  .trophic {
    padding: 26px 18px;
    border-radius: 2px 24px 2px 2px;
  }

  .compare__badge {
    margin-top: 7px;
    margin-left: 0;
  }

  .acc summary {
    min-height: 76px;
    font-size: 1.28rem;
  }

  .source-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .source-card__tag {
    margin-bottom: 44px;
  }

  .source-card h3 {
    font-size: 1.9rem;
  }

  .sources__more {
    margin-bottom: 56px;
  }

  .cta-band {
    padding: 40px 24px;
    border-radius: 2px 28px 2px 2px;
  }

  .cta-band h3 {
    font-size: 2.7rem;
  }

  .cta-band__actions {
    flex-direction: column;
  }

  .cta-band__actions .btn {
    width: 100%;
  }

  .footer {
    padding-top: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
