:root {
  --ink: #070d14;
  --ink-soft: #0b1520;
  --panel: #101c28;
  --panel-2: #142331;
  --line: rgba(205, 214, 222, 0.16);
  --line-strong: rgba(205, 214, 222, 0.32);
  --paper: #e8e9e6;
  --muted: #9aa7b2;
  --gold: #c4a760;
  --gold-soft: #e0cc94;
  --silver: #cbd3d9;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --content: 1240px;
  --reading: 760px;
  --header: 82px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(43, 70, 94, .17), transparent 32rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

body.nav-open,
body.search-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
h4,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 12px;
  padding: .7rem 1rem;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.reading-shell {
  width: min(calc(100% - 48px), var(--reading));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header);
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease, height .35s ease;
}

.site-header.scrolled {
  height: 68px;
  border-color: var(--line);
  background: rgba(7, 13, 20, .86);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
}

.site-header.scrolled .brand img {
  width: 36px;
  height: 36px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -.65rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform .3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--paper);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(9, 18, 27, .4);
  color: var(--silver);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.icon-button:hover {
  border-color: var(--line-strong);
  background: rgba(196, 167, 96, .09);
  color: var(--gold-soft);
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  position: fixed;
  z-index: 95;
  inset: 0;
  display: grid;
  padding: 7rem 24px 3rem;
  transform: translateY(-100%);
  place-items: center;
  background:
    linear-gradient(rgba(7, 13, 20, .96), rgba(7, 13, 20, .98)),
    url("../images/hero.webp") center / cover;
  opacity: 0;
  transition: transform .55s var(--ease), opacity .4s ease;
}

.nav-open .mobile-nav {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-inner {
  display: grid;
  width: min(100%, 440px);
  gap: .25rem;
}

.mobile-nav a {
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(2rem, 10vw, 3.5rem);
  line-height: 1.1;
}

.mobile-nav small {
  margin-top: 2rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.search-dialog {
  width: min(calc(100% - 32px), 720px);
  max-height: min(760px, calc(100vh - 40px));
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(12, 23, 34, .98);
  color: var(--paper);
  box-shadow: 0 40px 110px rgba(0, 0, 0, .55);
}

.search-dialog::backdrop {
  background: rgba(2, 6, 10, .78);
  backdrop-filter: blur(12px);
}

.search-head {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.search-head svg {
  width: 20px;
  color: var(--muted);
}

.search-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.search-input::placeholder {
  color: #6f7e89;
}

.dialog-close {
  padding: .35rem .6rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.search-results {
  min-height: 180px;
  max-height: 520px;
  padding: .6rem;
  overflow-y: auto;
}

.search-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem 1rem;
  padding: 1rem;
  border-radius: 6px;
}

.search-result:hover,
.search-result:focus-visible {
  outline: 0;
  background: rgba(255, 255, 255, .045);
}

.search-result strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
}

.search-result span,
.search-empty {
  color: var(--muted);
  font-size: .84rem;
}

.search-result .result-type {
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.search-empty {
  padding: 3rem 1rem;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .8rem 1.1rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: #101318;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
}

.button.secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--paper);
}

.button.secondary:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--silver);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .25s ease, color .25s ease;
}

.text-link::after {
  content: "↗";
  color: var(--gold);
  transition: transform .25s var(--ease);
}

.text-link:hover {
  border-color: var(--gold);
  color: var(--paper);
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.35rem;
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: var(--gold);
}

.section {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-title {
  max-width: 800px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.8vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.home-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  transform: scale(1.025);
  background: url("../images/knowledge-geometry-hero.webp") center / cover no-repeat;
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 10, 16, .98) 0%, rgba(5, 10, 16, .86) 35%, rgba(5, 10, 16, .25) 69%, rgba(5, 10, 16, .15) 100%),
    linear-gradient(0deg, rgba(5, 10, 16, .98) 0%, transparent 45%),
    linear-gradient(180deg, rgba(5, 10, 16, .68) 0%, transparent 25%);
}

.hero-content {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: end;
  padding-top: calc(var(--header) + 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  position: absolute;
  top: -7rem;
  left: -10rem;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(196, 167, 96, .12);
  content: "";
  transform: rotate(45deg);
}

.hero-kicker {
  margin-bottom: 1.25rem;
  color: var(--silver);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 850px;
  margin-bottom: 1.7rem;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7.3vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -.058em;
  line-height: .89;
}

.hero-title em {
  color: var(--gold-soft);
  font-weight: 400;
}

.hero-deck {
  max-width: 655px;
  margin-bottom: 2.35rem;
  color: #bcc5cc;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero-index {
  position: absolute;
  right: 24px;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-index::after {
  width: 1px;
  height: 52px;
  content: "";
  background: linear-gradient(var(--gold), transparent);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.manifesto-mark {
  position: sticky;
  top: 110px;
  display: grid;
  max-width: 380px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, transparent 49.8%, rgba(196, 167, 96, .16) 50%, transparent 50.2%),
    linear-gradient(45deg, transparent 49.8%, rgba(205, 214, 222, .08) 50%, transparent 50.2%);
}

.manifesto-mark img {
  width: 68%;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .45));
}

.manifesto-copy blockquote {
  margin-bottom: 2.5rem;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.4vw, 4.3rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.manifesto-copy blockquote strong {
  color: var(--gold-soft);
  font-weight: 400;
}

.manifesto-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.featured-story {
  display: grid;
  min-height: 610px;
  grid-template-columns: 1.16fr .84fr;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.featured-image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.featured-story:hover .featured-image img {
  transform: scale(1.025);
}

.featured-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 65%, rgba(16, 28, 40, .62));
}

.featured-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-meta span + span::before {
  margin-right: 1.2rem;
  color: #566674;
  content: "/";
}

.featured-copy h3 {
  margin-bottom: 1.25rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.featured-copy p {
  margin-bottom: 2rem;
  color: var(--muted);
}

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

.story-card {
  position: relative;
  min-height: 340px;
  display: flex;
  grid-column: span 4;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--ink-soft);
  overflow: hidden;
  transition: background .3s ease;
}

.story-card::before {
  position: absolute;
  right: -40px;
  bottom: -76px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(196, 167, 96, .12);
  content: "";
  transform: rotate(45deg);
  transition: transform .55s var(--ease), border-color .3s ease;
}

.story-card:hover {
  background: #12202d;
}

.story-card:hover::before {
  transform: rotate(45deg) translate(-14px, -14px);
  border-color: rgba(196, 167, 96, .35);
}

.story-card .story-meta {
  margin-bottom: 2.5rem;
}

.story-card h3 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.04;
}

.story-card p {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: .94rem;
}

.story-card .card-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  margin-top: auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  transition: transform .25s var(--ease), border-color .25s ease;
}

.story-card:hover .card-arrow {
  transform: translate(4px, -4px);
  border-color: var(--gold);
}

.story-card.wide {
  grid-column: span 8;
}

.work-feature {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
}

.work-feature::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: url("../images/engineering.webp") center / cover;
  transition: transform 1s var(--ease);
}

.work-feature:hover::before {
  transform: scale(1.02);
}

.work-feature::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 13, 20, .96) 0%, rgba(7, 13, 20, .8) 43%, rgba(7, 13, 20, .15) 80%),
    linear-gradient(0deg, rgba(7, 13, 20, .82), transparent 58%);
}

.work-feature-copy {
  max-width: 650px;
  padding: clamp(2rem, 6vw, 5rem);
}

.work-feature h3 {
  margin-bottom: 1.25rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.work-feature p {
  color: #b6c0c8;
}

.case-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: solid var(--line);
  border-width: 0 1px 1px;
}

.case-item {
  min-height: 240px;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.case-item:last-child {
  border-right: 0;
}

.case-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--gold);
  font-family: var(--mono);
  font-size: .7rem;
}

.case-item h4 {
  margin-bottom: .7rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.case-item p {
  color: var(--muted);
  font-size: .88rem;
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.venture-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 1.7rem;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(20, 35, 49, .82), rgba(9, 18, 27, .88));
  overflow: hidden;
}

.venture-card::after {
  position: absolute;
  top: 26px;
  right: -52px;
  width: 165px;
  height: 165px;
  border: 1px solid rgba(196, 167, 96, .17);
  content: "";
  transform: rotate(45deg);
}

.venture-symbol {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  margin-bottom: auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.8rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: rgba(196, 167, 96, .06);
}

.venture-type {
  margin-bottom: .8rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.venture-card h3 {
  margin-bottom: .7rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.venture-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .88rem;
}

.venture-logo{width:100%;height:150px;object-fit:contain;display:block;background:#fff}.pending-logo{display:grid;place-items:center;color:#44505b;font-size:.78rem;text-align:center}.section-cta{margin-top:2rem}.future-hero{min-height:70vh;display:grid;align-items:end;padding:10rem 0 5rem;background:radial-gradient(circle at 75% 25%,rgba(178,147,83,.18),transparent 28%),linear-gradient(145deg,#07101a,#111e2a)}.future-hero-inner{max-width:900px}.future-hero h1{max-width:900px;font-size:clamp(3.5rem,9vw,8rem);line-height:.9;letter-spacing:-.055em}.future-hero .lead{max-width:760px;margin-top:2rem}.future-pledge{margin-top:2rem;color:var(--gold);text-transform:uppercase;letter-spacing:.16em;font-size:.78rem}.future-projects-grid{display:grid;gap:2px;background:var(--line)}.future-project{display:grid;grid-template-columns:minmax(300px,.9fr) minmax(0,1.1fr);gap:clamp(2rem,5vw,5rem);align-items:center;padding:clamp(2rem,5vw,5rem);background:var(--ink)}.future-project:nth-child(even) .future-logo-frame{order:2}.future-logo-frame{min-height:320px;padding:1.5rem;display:grid;place-items:center;background:#f6f6f4}.future-logo-frame img{width:100%;max-height:330px;object-fit:contain;display:block}.future-project h2{margin:.5rem 0 1rem;font-size:clamp(2rem,4vw,4rem)}.future-project p:not(.eyebrow){max-width:650px;color:var(--muted)}.future-statement{max-width:900px;text-align:center}.future-statement blockquote{margin:1rem 0 2rem;font-size:clamp(2.2rem,5vw,5.5rem);line-height:1;letter-spacing:-.045em}@media(max-width:760px){.future-project{grid-template-columns:1fr}.future-project:nth-child(even) .future-logo-frame{order:0}.future-logo-frame{min-height:220px}.venture-logo{height:120px}}

.about-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.about-band h2 {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.8vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.about-band p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.04rem;
}

.principles {
  display: grid;
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.principle span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: .7rem;
}

.principle strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.page-hero {
  position: relative;
  min-height: 66svh;
  display: grid;
  align-items: end;
  padding-top: calc(var(--header) + 5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(7, 13, 20, .98), rgba(7, 13, 20, .68)),
    url("../images/hero.webp") center / cover;
}

.page-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -30vw;
  width: min(62vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(196, 167, 96, .13);
  content: "";
  transform: rotate(45deg);
}

.work-page-hero {
  background:
    linear-gradient(105deg, rgba(7, 13, 20, .98), rgba(7, 13, 20, .55)),
    url("../images/engineering.webp") center / cover;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.page-title {
  max-width: 1030px;
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .86;
}

.page-deck {
  max-width: 720px;
  margin-bottom: 0;
  color: #b8c2ca;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.filter-bar {
  position: sticky;
  z-index: 20;
  top: 68px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 13, 20, .92);
  backdrop-filter: blur(16px);
}

.filter-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-block: .8rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-inner::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  padding: .55rem .9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--gold);
  background: rgba(196, 167, 96, .08);
  color: var(--gold-soft);
}

.journal-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.journal-entry {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr minmax(180px, 350px) 48px;
  align-items: center;
  gap: 2rem;
  padding: 2.1rem .5rem;
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), background .3s ease;
}

.journal-entry:hover {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  background: rgba(255, 255, 255, .025);
}

.journal-entry time,
.journal-entry .entry-kind {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journal-entry h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.1vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.journal-entry p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.entry-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
}

.journal-empty {
  padding: 5rem 0;
  color: var(--muted);
  text-align: center;
}

.article-progress {
  position: fixed;
  z-index: 130;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
}

.article-hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: end;
  padding-top: calc(var(--header) + 5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.article-hero-backdrop {
  position: absolute;
  inset: 0;
  background: url("../images/immortal-words.webp") center / cover;
}

.article-hero-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 13, 20, .98), rgba(7, 13, 20, .72) 55%, rgba(7, 13, 20, .3)),
    linear-gradient(0deg, rgba(7, 13, 20, .98), transparent 58%);
}

.article-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.article-title {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -.058em;
  line-height: .9;
}

.article-summary {
  max-width: 740px;
  margin-bottom: 1.6rem;
  color: #bec6cc;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.3rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 5rem;
  align-items: start;
}

.article-body {
  color: #d3d7d8;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.6vw, 1.28rem);
  line-height: 1.86;
}

.article-body > p:first-of-type::first-letter {
  float: left;
  margin: .12em .12em 0 0;
  color: var(--gold-soft);
  font-size: 5.1rem;
  line-height: .78;
}

.article-body h2 {
  margin-top: 3.6rem;
  margin-bottom: 1.2rem;
  color: var(--paper);
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.article-body h3 {
  margin-top: 2.6rem;
  color: var(--paper);
  font-size: 1.5rem;
  font-weight: 500;
}

.article-body blockquote {
  margin: 3rem 0;
  padding: .5rem 0 .5rem 2rem;
  border-left: 2px solid var(--gold);
  color: var(--paper);
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  font-style: italic;
  line-height: 1.4;
}

.article-body blockquote cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-body hr {
  width: 80px;
  margin: 3.5rem 0;
  border: 0;
  border-top: 1px solid var(--gold);
}

.article-body a {
  border-bottom: 1px solid var(--gold);
  color: var(--gold-soft);
}

.article-aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: .7rem;
  padding-top: .4rem;
}

.article-aside .aside-label {
  margin-bottom: .4rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.share-button,
.reader-button {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--silver);
  font-size: .76rem;
  cursor: pointer;
}

.share-button:hover,
.reader-button:hover {
  color: var(--gold-soft);
}

.article-end {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.author-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.7rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.author-card img {
  width: 100px;
  height: 100px;
}

.author-card h3 {
  margin-bottom: .35rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.author-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

body.reader-light {
  --paper: #17212a;
  --muted: #5e6971;
  --line: rgba(23, 33, 42, .14);
  --line-strong: rgba(23, 33, 42, .28);
  background: #e8e5dc;
  color: #17212a;
  color-scheme: light;
}

body.reader-light::before {
  opacity: .09;
}

body.reader-light .site-header.scrolled {
  background: rgba(232, 229, 220, .9);
}

body.reader-light .article-hero,
body.reader-light .site-footer {
  --paper: #e8e9e6;
  --muted: #9aa7b2;
  --line: rgba(205, 214, 222, .16);
  color: #e8e9e6;
}

body.reader-light .article-body {
  color: #28343c;
}

body.reader-light .article-aside {
  color: #17212a;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.space-top {
  margin-top: 2rem;
}

.about-page-intro {
  padding-top: calc(var(--header) + 5rem);
}

.related-card {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.related-card .entry-kind {
  display: block;
  margin-bottom: .6rem;
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.related-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.08;
}

.related-card p {
  margin: .7rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.related-card:hover .entry-arrow {
  transform: translate(3px, -3px);
  border-color: var(--gold);
}

.work-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--ink-soft);
}

.work-card .work-index {
  margin-bottom: auto;
  color: var(--gold);
  font-family: var(--mono);
  font-size: .7rem;
}

.work-card h2 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.work-card p {
  color: var(--muted);
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.2rem;
}

.work-tag {
  padding: .3rem .55rem;
  border: 1px solid var(--line);
  color: var(--silver);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.method-step {
  min-height: 240px;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
}

.method-step:last-child {
  border-right: 0;
}

.method-step span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: .68rem;
}

.method-step h3 {
  margin-top: 3rem;
  margin-bottom: .7rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.method-step p {
  color: var(--muted);
  font-size: .88rem;
}

.disclosure-note {
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--gold);
  background: rgba(196, 167, 96, .06);
  color: var(--muted);
  font-size: .88rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.portrait-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1.1;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(20, 35, 49, .75), rgba(7, 13, 20, .95)),
    url("../images/hero.webp") center / cover;
  overflow: hidden;
}

.portrait-mark::before,
.portrait-mark::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(196, 167, 96, .17);
  transform: rotate(45deg);
}

.portrait-mark::before {
  width: 72%;
  aspect-ratio: 1;
}

.portrait-mark::after {
  width: 42%;
  aspect-ratio: 1;
}

.portrait-mark img {
  position: relative;
  z-index: 1;
  width: 52%;
  filter: drop-shadow(0 32px 45px rgba(0, 0, 0, .5));
}

.about-copy h1 {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7.6vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .87;
}

.about-copy .lead {
  color: #bbc4ca;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.45;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.credential {
  min-height: 170px;
  padding: 1.5rem;
  background: var(--ink-soft);
}

.credential span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: .65rem;
}

.credential h3 {
  margin-top: 1.6rem;
  margin-bottom: .4rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.credential p {
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 4rem;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(12, 23, 34, .98), rgba(12, 23, 34, .78)),
    url("../images/hero.webp") right center / cover;
}

.contact-panel h2 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.contact-panel p {
  color: var(--muted);
}

.contact-links {
  display: grid;
  align-content: end;
  gap: .5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--silver);
}

.contact-link:hover {
  color: var(--gold-soft);
}

.site-footer {
  padding-block: 4rem 2rem;
  border-top: 1px solid var(--line);
  background: #050a10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 3rem;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
}

.footer-brand strong {
  display: block;
  margin-bottom: .5rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.footer-brand p {
  max-width: 320px;
  color: var(--muted);
  font-size: .85rem;
}

.footer-column h3 {
  margin-bottom: 1.2rem;
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: .55rem;
  color: var(--muted);
  font-size: .87rem;
}

.footer-column a:hover {
  color: var(--paper);
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #6f7b84;
  font-size: .72rem;
}

.reveal {
  transform: translateY(26px);
  opacity: 0;
  transition: transform .85s var(--ease), opacity .7s ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes hero-breathe {
  from { transform: scale(1.025); }
  to { transform: scale(1.055); }
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 1.25rem;
  }

  .featured-story {
    grid-template-columns: 1fr;
  }

  .featured-image::after {
    background: linear-gradient(0deg, rgba(16, 28, 40, .78), transparent 45%);
  }

  .story-card {
    grid-column: span 6;
  }

  .story-card.wide {
    grid-column: span 6;
  }

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

  .journal-entry {
    grid-template-columns: 100px 1fr 48px;
  }

  .journal-entry p {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header: 70px;
  }

  .shell,
  .reading-shell {
    width: min(calc(100% - 32px), var(--content));
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .menu-toggle .close-icon {
    display: none;
  }

  .nav-open .menu-toggle .menu-icon {
    display: none;
  }

  .nav-open .menu-toggle .close-icon {
    display: block;
  }

  .section-head,
  .manifesto-grid,
  .about-band,
  .about-hero-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 1.25rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .home-hero::before {
    background-position: 63% center;
  }

  .home-hero::after {
    background:
      linear-gradient(90deg, rgba(5, 10, 16, .96), rgba(5, 10, 16, .55)),
      linear-gradient(0deg, rgba(5, 10, 16, .98), transparent 70%);
  }

  .manifesto-mark {
    position: relative;
    top: auto;
    max-width: 260px;
  }

  .case-strip {
    grid-template-columns: 1fr;
  }

  .case-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-item:last-child {
    border-bottom: 0;
  }

  .work-feature {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .article-aside {
    position: static;
    grid-row: 1;
    grid-template-columns: repeat(2, 1fr);
  }

  .article-aside .aside-label {
    grid-column: 1 / -1;
  }

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

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

  .method-step {
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .brand span {
    display: none;
  }

  .hero-title {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .hero-index {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .story-card,
  .story-card.wide {
    min-height: 310px;
    grid-column: auto;
  }

  .featured-copy {
    padding-block: 2.5rem;
  }

  .featured-image {
    min-height: 330px;
  }

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

  .venture-card {
    min-height: 320px;
  }

  .page-hero {
    min-height: 74svh;
  }

  .page-title {
    font-size: clamp(3.6rem, 19vw, 6.5rem);
  }

  .journal-entry {
    grid-template-columns: 1fr 44px;
    gap: 1rem;
    padding-block: 1.6rem;
  }

  .journal-entry time {
    grid-column: 1 / -1;
  }

  .article-hero {
    min-height: 82svh;
  }

  .article-title {
    font-size: clamp(3rem, 16vw, 5.5rem);
  }

  .article-body {
    font-size: 1.08rem;
  }

  .article-body > p:first-of-type::first-letter {
    font-size: 4.2rem;
  }

  .author-card {
    grid-template-columns: 72px 1fr;
    padding: 1.3rem;
  }

  .author-card img {
    width: 72px;
    height: 72px;
  }

  .method-grid,
  .credentials {
    grid-template-columns: 1fr;
  }

  .method-step {
    border-right: 0;
  }

  .contact-panel {
    gap: 2rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }
}

.philosophy-hero {
  position: relative;
  isolation: isolate;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: url("../images/knowledge-geometry-hero.webp") center / cover no-repeat;
}

.philosophy-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 10, 16, .98), rgba(5, 10, 16, .62) 58%, rgba(5, 10, 16, .2)),
    linear-gradient(0deg, rgba(5, 10, 16, .98), transparent 58%);
}

.philosophy-hero-inner {
  padding-top: calc(var(--header) + 5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.philosophy-hero h1 {
  max-width: 1050px;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8.5vw, 8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}

.philosophy-hero .lead {
  max-width: 760px;
  margin: 0;
  color: var(--silver);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.philosophy-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.philosophy-opening {
  padding-top: .6rem;
  border-top: 1px solid var(--gold);
}

.philosophy-opening p {
  color: var(--silver);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.5;
}

.philosophy-chapters {
  border-top: 1px solid var(--line-strong);
}

.philosophy-chapter {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3.7rem) 0;
  border-bottom: 1px solid var(--line);
}

.chapter-index {
  padding-top: .35rem;
  color: var(--gold);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
}

.philosophy-chapter h3 {
  margin-bottom: .7rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}

.philosophy-chapter p {
  max-width: 850px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.tension-card,
.future-lab-card {
  min-height: 280px;
  padding: clamp(1.7rem, 4vw, 3rem);
  background: var(--ink-soft);
}

.tension-card span,
.future-lab-card span,
.development-card span {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tension-card h3,
.future-lab-card h3,
.development-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.tension-card p,
.future-lab-card p,
.development-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.development-card {
  min-height: 310px;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: var(--ink-soft);
  transition: background-color .3s ease, transform .3s var(--ease);
}

.development-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: var(--panel);
}

.future-lab-grid {
  grid-template-columns: repeat(4, 1fr);
}

.future-lab-card {
  min-height: 320px;
}

@media (max-width: 980px) {
  .philosophy-intro-grid {
    grid-template-columns: 1fr;
  }

  .tension-grid,
  .development-grid,
  .future-lab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .philosophy-hero {
    min-height: 84svh;
  }

  .philosophy-chapter {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .tension-grid,
  .development-grid,
  .future-lab-grid {
    grid-template-columns: 1fr;
  }

  .tension-card,
  .development-card,
  .future-lab-card {
    min-height: 0;
  }
}

.future-hero {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  background: url("../images/future-star-system.webp") center / cover no-repeat;
}

.future-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 10, 16, .92), rgba(5, 10, 16, .55) 55%, rgba(5, 10, 16, .2)),
    linear-gradient(0deg, rgba(5, 10, 16, .92), transparent 55%);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}
