:root {
  --paper: #f9f9f9;
  --surface: #eeeeee;
  --surface-low: #f3f3f3;
  --surface-high: #e2e2e2;
  --ink: #1b1b1b;
  --muted: #44474a;
  --red: #b22200;
  --red-hot: #d73b19;
  --white: #ffffff;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-hover: 8px 8px 0 var(--ink);
  --max: 1280px;
  --gutter: clamp(16px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0 auto;
  max-width: 1600px;
  min-height: 100vh;
  overflow-x: hidden;
  border-left: 4px solid var(--ink);
  border-right: 4px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", Arial, Helvetica, sans-serif;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--red);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--paper);
  border-left: 3px solid var(--ink);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border: 3px solid var(--ink);
}

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

.brutal {
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.brutal:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hover);
}

.brutal:active {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 4px solid var(--ink);
  background: rgba(249, 249, 249, 0.96);
  backdrop-filter: blur(12px);
}

.nav-wrap,
.section-shell,
.footer-wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(14px, 3vw, 48px);
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 58px;
  padding: 8px 12px 8px 8px;
  background: var(--surface);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--red);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.primary-menu {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
}

.primary-menu a,
.social-links a {
  border: 2px solid transparent;
  padding: 7px 10px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-menu a:hover,
.primary-menu a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--ink);
  background: var(--red);
  color: var(--white);
  outline: 0;
}

.nav-cta,
.button,
.view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-cta {
  padding: 12px 28px;
}

.menu-button {
  display: none;
  width: 52px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--surface);
}

.menu-button span:not(.sr-only) {
  width: 22px;
  height: 3px;
  background: var(--ink);
}

main > section {
  scroll-margin-top: 112px;
  border-bottom: 4px solid var(--ink);
}

.section-shell {
  padding-top: clamp(56px, 8vw, 80px);
  padding-bottom: clamp(56px, 8vw, 80px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  min-height: 76svh;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  background: var(--surface-low);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}

.status-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 18px;
  background: var(--paper);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-tag span {
  width: 13px;
  height: 13px;
  border: 2px solid var(--ink);
  background: var(--red);
  animation: pulse 1200ms infinite;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.word-stamp {
  display: inline-block;
  margin: 10px 8px 0 0;
  padding: 2px 10px 8px;
  background: var(--red);
  color: var(--white);
  transform: rotate(-2deg);
}

.hero-summary {
  max-width: 620px;
  margin: 0;
  padding: 20px 22px;
  background: var(--paper);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 750;
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  min-height: 58px;
  padding: 16px 28px;
  font-size: clamp(16px, 2vw, 20px);
}

.button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 5;
}

.button-primary:hover {
  background: var(--ink);
  color: var(--red-hot);
}

.button-secondary {
  background: var(--paper);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--red);
  color: var(--white);
}

.hero-art {
  position: relative;
  min-height: 360px;
}

.art-shadow {
  position: absolute;
  inset: 18px -4px -10px 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    var(--red);
}

.seed-console {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  min-height: 340px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(178, 34, 0, 0.18), transparent 38%),
    radial-gradient(circle at 75% 20%, var(--surface-high) 0 6px, transparent 7px),
    repeating-linear-gradient(45deg, var(--surface) 0 14px, var(--paper) 14px 28px),
    var(--paper);
}

.seed-idle {
  display: inline;
}

.seed-evolved {
  display: none;
}

.seed-toggle:checked ~ * .seed-idle {
  display: none;
}

.seed-toggle:checked ~ * .seed-evolved {
  display: inline;
}

.seed-console-head,
.seed-console-meta,
.seed-console-body,
.seed-console-foot,
.seed-sidebar {
  display: grid;
}

.seed-console-head {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.seed-console-kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.seed-console-meta {
  gap: 8px;
  justify-items: end;
}

.seed-console-meta span {
  padding: 7px 10px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.seed-console-body {
  grid-template-columns: minmax(0, 1.35fr) minmax(148px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.seed-chamber {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(178, 34, 0, 0.12), transparent 44%),
    var(--paper);
}

.seed-chamber:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 6px;
}

.seed-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 27, 27, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 27, 27, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.seed-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 4px solid var(--ink);
  border-radius: 999px;
  opacity: 0.86;
}

.orbit-one {
  width: min(54%, 270px);
  aspect-ratio: 1.28;
  transform: translate(-50%, -50%) rotate(-21deg);
}

.orbit-two {
  width: min(72%, 360px);
  aspect-ratio: 1.66;
  border-color: var(--red);
  transform: translate(-50%, -50%) rotate(15deg);
}

.seed-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(40%, 198px);
  aspect-ratio: 0.82;
  display: grid;
  place-items: center;
  border: 4px solid var(--ink);
  background: transparent;
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-17deg);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.seed-button:hover,
.seed-button:focus-visible {
  outline: 0;
  transform: translate(-50%, -50%) rotate(-12deg) scale(1.04);
  box-shadow: 16px 16px 0 var(--ink);
}

.seed-button:active {
  transform: translate(-50%, -50%) rotate(-10deg) scale(0.98);
  box-shadow: 8px 8px 0 var(--ink);
}

.seed-shell {
  position: absolute;
  inset: 0;
  transition:
    transform 260ms ease,
    background 260ms ease,
    opacity 260ms ease;
}

.seed-shell-a {
  background: linear-gradient(140deg, var(--red) 0 47%, var(--ink) 48% 56%, var(--paper) 57% 100%);
}

.seed-shell-b {
  inset: 18% 17% 19% 16%;
  border: 4px solid var(--ink);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(178, 34, 0, 0.18));
  opacity: 0.8;
}

.seed-shell-c {
  inset: 39% 37%;
  border: 4px solid var(--ink);
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.36);
}

.seed-button-copy {
  position: absolute;
  right: -14px;
  bottom: -18px;
  padding: 8px 12px;
  border: 3px solid var(--ink);
  background: var(--paper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.seed-pips {
  position: absolute;
  inset: 0;
}

.seed-pips span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  background: var(--red);
  animation: pipDrift 4.6s infinite ease-in-out;
}

.seed-pips span:nth-child(1) {
  top: 22%;
  left: 18%;
}

.seed-pips span:nth-child(2) {
  top: 18%;
  right: 22%;
  animation-delay: 0.35s;
}

.seed-pips span:nth-child(3) {
  right: 16%;
  bottom: 28%;
  animation-delay: 0.9s;
}

.seed-pips span:nth-child(4) {
  bottom: 18%;
  left: 22%;
  animation-delay: 1.3s;
}

.seed-pips span:nth-child(5) {
  top: 48%;
  left: 10%;
  animation-delay: 1.8s;
}

.seed-pips span:nth-child(6) {
  top: 52%;
  right: 8%;
  animation-delay: 2.2s;
}

.seed-instruction {
  position: absolute;
  left: 18px;
  bottom: 18px;
  margin: 0;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  background: rgba(249, 249, 249, 0.92);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.seed-sidebar {
  gap: 14px;
}

.seed-readout {
  align-content: start;
  min-height: 100px;
  padding: 16px;
  background: var(--paper);
}

.seed-readout p {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.seed-readout strong {
  display: block;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.seed-console-foot {
  gap: 14px;
}

.seed-cta {
  min-height: 52px;
  justify-self: start;
  padding: 12px 18px;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.seed-cta:hover {
  background: var(--ink);
  color: var(--red-hot);
}

.seed-meter {
  height: 24px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.78);
}

.seed-meter span {
  display: block;
  width: 17%;
  height: 100%;
  background:
    repeating-linear-gradient(90deg, var(--red) 0 22px, var(--red-hot) 22px 44px);
  transition: width 280ms ease;
}

.seed-toggle:checked ~ .seed-console-foot .seed-meter span {
  width: 74%;
}

.seed-log {
  margin: 0;
  padding: 12px 14px;
  background: var(--paper);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.4;
}

.seed-toggle:checked ~ .seed-console-body .seed-button {
  transform: translate(-50%, -50%) rotate(-7deg) scale(1.08);
}

.seed-toggle:checked ~ .seed-console-body .seed-shell-a {
  background: linear-gradient(135deg, var(--ink) 0 24%, var(--red) 25% 58%, var(--paper) 59% 100%);
}

.seed-toggle:checked ~ .seed-console-body .seed-shell-b {
  transform: rotate(14deg) scale(1.08);
  opacity: 0.92;
}

.seed-toggle:checked ~ .seed-console-body .seed-shell-c {
  inset: 34% 34%;
}

.seed-toggle:checked ~ .seed-console-body .orbit-two {
  animation: orbitPulse 1800ms infinite ease-in-out;
}

.seed-toggle:checked ~ .seed-console-body .seed-pips span {
  animation-duration: 1.1s;
}

.seed-fallback,
.portrait-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.seed-fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(178, 34, 0, 0.14), transparent 36%),
    radial-gradient(circle at 75% 24%, rgba(27, 27, 27, 0.08) 0 8px, transparent 9px),
    repeating-linear-gradient(45deg, rgba(27, 27, 27, 0.035) 0 14px, rgba(255, 255, 255, 0.1) 14px 28px);
}

.seed-core {
  position: absolute;
  width: min(38%, 210px);
  aspect-ratio: 0.78;
  border: 5px solid var(--ink);
  background:
    linear-gradient(145deg, var(--red) 0 48%, var(--ink) 49% 55%, var(--paper) 56% 100%);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-18deg);
}

.seed-ring {
  position: absolute;
  border: 4px solid var(--ink);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.ring-one {
  width: min(58%, 330px);
  aspect-ratio: 1.55;
}

.ring-two {
  width: min(76%, 460px);
  aspect-ratio: 1.8;
  border-color: var(--red);
  transform: rotate(14deg);
}

.seed-label {
  position: absolute;
  right: 32px;
  bottom: 30px;
  padding: 10px 14px;
  background: var(--paper);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(34px, 6vw, 64px);
  padding-bottom: 24px;
  border-bottom: 4px solid var(--ink);
}

.section-heading p {
  margin: 14px 0 0;
  font-size: 17px;
  font-weight: 750;
}

.headline-stamp {
  display: inline-block;
  margin: 0;
  padding: 5px 12px 8px;
  background: var(--red);
  color: var(--white);
  font-size: clamp(32px, 4.6vw, 44px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.view-all {
  flex: 0 0 auto;
  min-height: 50px;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
}

.view-all:hover,
.view-all[aria-pressed="true"] {
  background: var(--red);
  color: var(--white);
}

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

.app-card {
  display: grid;
  min-height: 100%;
  padding: 22px;
  background: var(--paper);
  cursor: pointer;
}

.app-card:hover .app-icon::before {
  transform: translateY(0);
}

.app-card:hover .app-icon svg {
  color: var(--white);
  transform: scale(1.15);
}

.offset-card {
  transform: translateY(28px);
}

.offset-card:hover {
  transform: translate(-2px, 24px);
}

.app-icon {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  margin-bottom: 22px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--surface-high);
}

.app-icon::before {
  position: absolute;
  inset: 0;
  border-top: 2px solid var(--ink);
  background: var(--red);
  content: "";
  transform: translateY(100%);
  transition: transform 260ms ease;
}

.app-icon svg,
.principle-icon svg {
  position: relative;
  width: 72px;
  height: 72px;
  fill: none;
  color: var(--ink);
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 4.5;
  transition: transform 260ms ease, color 260ms ease;
}

.app-card h3,
.principle h3 {
  margin: 0 0 8px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.app-card p,
.principle p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
}

.tag-row span {
  border: 2px solid var(--ink);
  padding: 4px 9px;
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tag-row span:nth-child(2) {
  background: var(--red);
  color: var(--white);
}

.method {
  max-width: none;
  background-color: var(--red);
  background-image: radial-gradient(var(--ink) 2px, transparent 2px);
  background-size: 24px 24px;
}

.method-panel {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 100px) clamp(20px, 5vw, 80px) clamp(32px, 5vw, 64px);
  background: var(--paper);
}

.method-stamp {
  position: absolute;
  top: -30px;
  left: clamp(18px, 4vw, 54px);
  max-width: min(780px, calc(100% - 36px));
  margin: 0;
  padding: 12px 18px;
  background: var(--red);
  color: var(--white);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.method-lede {
  max-width: 760px;
  margin: 0 0 clamp(34px, 6vw, 64px);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.48;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.principle {
  display: grid;
  min-height: 290px;
  align-content: space-between;
  padding: clamp(22px, 3vw, 40px);
  background: var(--surface);
}

.principle.mid {
  background: var(--paper);
  transform: translateY(20px);
}

.principle.high {
  transform: translateY(-20px);
}

.principle-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 34px;
  place-items: center;
}

.principle-icon svg {
  width: 42px;
  height: 42px;
  color: currentColor;
}

.principle-icon.red {
  border: 3px solid var(--ink);
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}

.principle-icon.black {
  border: 3px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  background: var(--surface-high);
}

.portrait-wrap {
  position: relative;
  min-height: 500px;
}

.portrait-shadow {
  position: absolute;
  top: 34px;
  left: -22px;
  width: min(100%, 500px);
  aspect-ratio: 1;
  background: var(--ink);
}

.portrait-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 25%, var(--red) 0 8px, transparent 9px),
    repeating-linear-gradient(135deg, var(--paper) 0 18px, var(--surface) 18px 36px);
  padding: 14px;
}

.portrait-fallback {
  display: grid;
  place-items: center;
  inset: 14px;
  border: 3px solid var(--ink);
  background:
    radial-gradient(circle at 34% 24%, rgba(178, 34, 0, 0.7) 0 18px, transparent 19px),
    repeating-linear-gradient(135deg, var(--surface) 0 20px, var(--paper) 20px 40px);
}

.portrait-fallback span {
  display: grid;
  width: clamp(150px, 44%, 220px);
  aspect-ratio: 1;
  place-items: center;
  border: 5px solid var(--ink);
  background: var(--red);
  color: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
  font-size: clamp(56px, 9vw, 92px);
  font-weight: 900;
  line-height: 1;
}

.portrait-frame img {
  border: 3px solid var(--ink);
}

.portrait-label {
  position: absolute;
  right: 8%;
  bottom: 22px;
  z-index: 3;
  margin: 0;
  padding: 14px 20px;
  background: var(--red);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(3deg);
}

.about-copy {
  padding: clamp(26px, 5vw, 64px);
  background: var(--paper);
}

.about-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.red-rule {
  display: block;
  width: 96px;
  height: 14px;
  margin: 26px 0;
  border: 2px solid var(--ink);
  background: var(--red);
}

.about-copy p {
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 760;
  line-height: 1.52;
}

.quote-panel {
  margin-top: 26px !important;
  border-left: 8px solid var(--red);
  padding: 18px 20px;
  background: var(--surface);
  font-size: 16px !important;
  font-weight: 650 !important;
}

.contact {
  background: var(--paper);
}

.contact-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 64px);
  background: var(--surface);
  text-align: center;
}

.contact-title {
  display: inline-block;
  margin: 0 auto 28px;
  padding: 8px 16px 14px;
  background: var(--red);
  color: var(--white);
  font-size: clamp(36px, 6vw, 66px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.contact-panel p {
  max-width: 700px;
  margin: 0 auto 42px;
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 780;
  line-height: 1.45;
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  border-top: 4px solid var(--ink);
  background: var(--paper);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto minmax(160px, 0.42fr);
  gap: 28px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand p,
.status-box p {
  margin: 0;
  font-weight: 850;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  border-color: var(--ink);
}

.status-box {
  justify-self: end;
  display: grid;
  gap: 7px;
  border: 2px solid var(--ink);
  padding: 14px 16px;
  background: var(--surface);
}

.status-box span {
  border: 1px solid var(--ink);
  padding: 1px 5px;
  background: var(--red);
  color: var(--white);
  text-transform: uppercase;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

@keyframes pipDrift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.18);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.82;
    transform: translate(-50%, -50%) rotate(15deg) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(15deg) scale(1.06);
  }
}

@keyframes seedBoost {
  0% {
    transform: translate(-50%, -50%) scale(0.96);
  }

  45% {
    transform: translate(-50%, -50%) scale(1.12);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

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

@media (max-width: 1100px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    order: -1;
    min-height: 280px;
  }

  .image-frame {
    height: clamp(290px, 60vw, 480px);
  }

  .app-grid,
  .principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seed-console-body {
    grid-template-columns: 1fr;
  }

  .seed-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offset-card,
  .offset-card:hover,
  .principle.mid,
  .principle.high {
    transform: none;
  }

  .portrait-wrap {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  body {
    border-right-width: 0;
    border-left-width: 0;
  }

  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .brand-copy {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .nav-cta {
    display: none;
  }

  .primary-menu {
    position: fixed;
    top: 91px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 3px solid var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .primary-menu.is-open {
    display: flex;
  }

  .primary-menu a {
    border: 0;
    border-bottom: 3px solid var(--ink);
    padding: 18px;
    font-size: 18px;
  }

  .primary-menu a:last-child {
    border-bottom: 0;
  }

  .section-shell {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero {
    gap: 30px;
  }

  .hero-art {
    order: initial;
  }

  .seed-console {
    padding: 16px;
  }

  .seed-console-head {
    grid-template-columns: 1fr;
  }

  .seed-console-meta {
    justify-items: start;
  }

  .seed-chamber {
    min-height: 300px;
  }

  .seed-sidebar {
    grid-template-columns: 1fr;
  }

  .seed-cta {
    width: 100%;
    justify-self: stretch;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .view-all {
    width: 100%;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .app-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .method-panel {
    padding-top: 94px;
  }

  .method-stamp {
    top: -22px;
  }

  .portrait-label {
    right: 0;
    bottom: -16px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-brand .brand,
  .status-box {
    justify-self: center;
  }
}
