:root {
  --paper: #f1efe7;
  --paper-2: #e8e4d9;
  --ink: #111310;
  --muted: #62645d;
  --line: rgba(17, 19, 16, 0.18);
  --line-soft: rgba(17, 19, 16, 0.09);
  --acid: #d9ff43;
  --orange: #ff5c35;
  --blue: #2f54ff;
  --green: #2e9e61;
  --black: #0c0e0c;
  --white: #fffdf7;
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --mono: "DM Mono", Consolas, monospace;
  --gutter: clamp(20px, 4.2vw, 72px);
  --section: clamp(88px, 11vw, 168px);
  --ease: cubic-bezier(.2, .72, .18, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -.015em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
::selection { background: var(--acid); color: var(--ink); }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  padding: 10px 16px;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
}
.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--ink);
  font: 500 14px/1 var(--mono);
  letter-spacing: -.04em;
  text-decoration: none;
}
.wordmark i { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: clamp(20px, 3vw, 48px); }
.nav-links a {
  color: var(--muted);
  font: 400 12px/1 var(--mono);
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font: 400 12px/1 var(--mono);
  text-decoration: none;
  text-transform: uppercase;
}
.status-dot, .live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(46, 158, 97, .12); }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  grid-template-rows: 1fr auto;
  padding: clamp(124px, 15vh, 184px) var(--gutter) 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), var(--line-soft) 50%, transparent calc(50% + .5px)),
    radial-gradient(circle at 80% 18%, rgba(217, 255, 67, .23), transparent 22%),
    var(--paper);
}
.hero-copy { align-self: center; padding: 0 clamp(22px, 5vw, 86px) clamp(54px, 8vh, 94px) 0; }
.kicker, .section-index, .project-meta, .paper-status, .card-no {
  margin: 0;
  font: 400 11px/1.3 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.kicker { color: var(--muted); margin-bottom: clamp(22px, 4vh, 44px); }
.kicker span { color: var(--orange); padding: 0 8px; }
.hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(56px, 7.25vw, 124px);
  font-weight: 500;
  line-height: .87;
  letter-spacing: -.075em;
  text-wrap: balance;
}
.hero h1 em, .section-heading h2 em, .research-intro h2 em, .about h2 em, .contact h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero h1 em { position: relative; color: var(--blue); white-space: nowrap; }
.hero h1 em::after {
  content: "";
  position: absolute;
  left: .03em;
  right: -.03em;
  bottom: -.06em;
  height: .075em;
  background: var(--orange);
  transform: rotate(-1deg);
}
.hero-deck { max-width: 650px; margin: clamp(32px, 5vh, 52px) 0 0; color: #42443f; font-size: clamp(18px, 1.6vw, 23px); line-height: 1.47; letter-spacing: -.025em; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 20px;
  border: 1px solid transparent;
  font: 500 12px/1 var(--mono);
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.arrow { position: relative; display: inline-block; flex: 0 0 14px; width: 14px; height: 14px; }
.arrow::before, .arrow::after { content: ""; position: absolute; box-sizing: border-box; }
.arrow-right::before, .arrow-left::before { top: 6px; width: 11px; height: 1.5px; background: currentColor; }
.arrow-right::before { left: 1px; }.arrow-left::before { right: 1px; }
.arrow-right::after, .arrow-left::after { top: 3px; width: 7px; height: 7px; border: solid currentColor; transform: rotate(45deg); }
.arrow-right::after { right: 1px; border-width: 1.5px 1.5px 0 0; }
.arrow-left::after { left: 1px; border-width: 0 0 1.5px 1.5px; }
.arrow-down::before { top: 1px; left: 6px; width: 1.5px; height: 11px; background: currentColor; }
.arrow-down::after { bottom: 1px; left: 4px; width: 6px; height: 6px; border: solid currentColor; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
.arrow-out::before { top: 7px; left: 1px; width: 12px; height: 1.5px; background: currentColor; transform: rotate(-45deg); transform-origin: center; }
.arrow-out::after { top: 1px; right: 1px; width: 7px; height: 7px; border: solid currentColor; border-width: 1.5px 1.5px 0 0; }
.button-dark { color: var(--white); background: var(--black); }
.button-dark:hover { background: var(--blue); }
.text-link, .project-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  font: 500 12px/1.2 var(--mono);
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}
.text-link span, .project-link span { transition: transform .2s ease; }
.text-link:hover span, .project-link:hover span { transform: translate(3px, -3px); }

.hero-lab {
  align-self: center;
  min-height: 580px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  margin: 0 0 clamp(54px, 8vh, 94px) clamp(12px, 4vw, 64px);
  color: #f3f4ec;
  background: var(--black);
  border: 1px solid #000;
  box-shadow: 22px 22px 0 var(--orange);
  overflow: hidden;
}
.lab-topbar { display: flex; justify-content: space-between; align-items: center; min-height: 46px; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.13); font: 400 10px/1 var(--mono); letter-spacing: .09em; }
.lab-title { color: rgba(255,255,255,.52); }
.lab-online { display: inline-flex; align-items: center; gap: 7px; color: var(--acid); }
.lab-online i { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); }
.lab-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid rgba(255,255,255,.13); }
.lab-tabs button { min-height: 54px; color: rgba(255,255,255,.42); background: none; border: 0; border-right: 1px solid rgba(255,255,255,.13); font: 400 11px/1 var(--mono); letter-spacing: .06em; cursor: pointer; }
.lab-tabs button:last-child { border-right: 0; }
.lab-tabs button[aria-selected="true"] { color: var(--black); background: var(--acid); }
.lab-panel { position: relative; min-height: 470px; padding: clamp(24px, 4vw, 46px); overflow: hidden; }
.lab-panel::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px); background-size: 34px 34px; }
.lab-panel > * { position: relative; z-index: 1; }
.lab-number { margin: clamp(52px, 9vh, 96px) 0 8px; color: var(--acid); font: 300 clamp(76px, 10vw, 150px)/.8 var(--mono); letter-spacing: -.1em; }
.lab-panel h2 { margin: 24px 0 0; font-size: clamp(28px, 3.2vw, 49px); line-height: .98; letter-spacing: -.055em; font-weight: 400; }
.lab-orbit { position: absolute; z-index: 2; top: 28px; right: 28px; display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.52); font: 400 9px/1 var(--mono); text-transform: uppercase; }
.lab-orbit span { border: 1px solid rgba(255,255,255,.2); padding: 6px 8px; }
.lab-orbit b { color: var(--orange); font-weight: 400; }
.lab-readout { position: absolute; z-index: 2; right: 28px; bottom: 26px; display: grid; grid-template-columns: auto auto; gap: 6px 16px; font: 400 9px/1.3 var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.lab-readout span { color: rgba(255,255,255,.37); }.lab-readout strong { color: var(--acid); font-weight: 400; text-align: right; }
.test-grid { position: absolute; top: 30px; right: 28px; width: min(250px, 48%); display: grid; grid-template-columns: 1fr auto; gap: 10px; font: 400 9px/1.1 var(--mono); }
.test-grid span { color: rgba(255,255,255,.5); }.test-grid i { font-style: normal; text-align: right; }.test-grid .pass { color: var(--acid); }.test-grid .fixed { color: var(--orange); }
.signal-chart { position: absolute; top: 32px; right: 20px; width: 63%; overflow: visible; }
.signal-chart path { fill: none; stroke-width: 3; vector-effect: non-scaling-stroke; }.signal-a { stroke: var(--acid); }.signal-b { stroke: var(--orange); opacity: .8; }

.proof-strip { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; border-top: 1px solid var(--line); }
.proof-strip > div { padding: 23px clamp(12px, 2vw, 30px); border-right: 1px solid var(--line); }
.proof-strip > div:first-child { padding-left: 0; }.proof-strip > div:last-child { border-right: 0; padding-right: 0; }
.proof-strip dt { margin-bottom: 7px; color: var(--muted); font: 400 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.proof-strip dd { margin: 0; font-size: clamp(13px, 1.1vw, 16px); font-weight: 500; }

.section-pad { padding: var(--section) var(--gutter); }
.section-heading { display: grid; grid-template-columns: minmax(150px, .42fr) minmax(0, 1.58fr); gap: clamp(30px, 7vw, 120px); margin-bottom: clamp(60px, 8vw, 112px); }
.section-index { color: var(--muted); padding-top: 12px; }
.section-heading h2, .research-intro h2, .contact h2 { margin: 0; font-size: clamp(46px, 6.1vw, 100px); line-height: .92; letter-spacing: -.066em; font-weight: 500; }
.section-heading h2 em, .research-intro h2 em, .contact h2 em { color: var(--blue); }
.section-heading > div > p { max-width: 570px; margin: 30px 0 0; color: var(--muted); font-size: clamp(17px, 1.45vw, 21px); }

.work { background: var(--white); }
.project { border: 1px solid var(--line); }
.project-fridgey { display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); min-height: 700px; }
.project-copy { padding: clamp(34px, 5vw, 76px); display: flex; flex-direction: column; align-items: flex-start; }
.project-meta { color: var(--muted); display: flex; align-items: center; gap: 10px; }
.project h3 { margin: clamp(38px, 6vw, 82px) 0 20px; font-size: clamp(48px, 6vw, 92px); line-height: .9; letter-spacing: -.07em; font-weight: 500; }
.project-lede { margin: 0 0 24px; max-width: 480px; color: var(--ink) !important; font: 400 italic clamp(23px, 2.4vw, 34px)/1.15 var(--serif) !important; letter-spacing: -.025em; }
.project-copy > p:not(.project-meta):not(.project-lede) { max-width: 570px; color: var(--muted); font-size: 16px; line-height: 1.68; }
.project-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; width: 100%; margin: auto 0 34px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.project-facts li { padding: 13px 8px 13px 0; border-bottom: 1px solid var(--line); font: 400 10px/1.3 var(--mono); letter-spacing: .02em; text-transform: uppercase; }
.project-facts li:nth-child(odd) { border-right: 1px solid var(--line); }.project-facts li:nth-child(even) { padding-left: 16px; }
.project-link { margin-top: 0; }

.product-stage { position: relative; min-height: 700px; overflow: hidden; }
.fridgey-stage { background: #bfd7a7; background-image: radial-gradient(circle at 80% 18%, rgba(255,255,255,.55), transparent 24%), linear-gradient(rgba(17,19,16,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(17,19,16,.08) 1px, transparent 1px); background-size: auto, 42px 42px, 42px 42px; }
.stage-label { position: absolute; top: 22px; right: 24px; font: 500 10px/1 var(--mono); letter-spacing: .08em; }
.phone-shell { position: absolute; z-index: 3; left: 50%; bottom: -94px; transform: translateX(-50%) rotate(-2.5deg); width: min(335px, 55%); min-height: 650px; padding: 19px 22px 0; color: #17301d; background: #fbfaf2; border: 8px solid #17231a; border-radius: 48px 48px 0 0; box-shadow: 0 38px 80px rgba(18,39,22,.28); }
.phone-status, .mini-brand { display: flex; justify-content: space-between; align-items: center; }.phone-status { padding: 0 5px 16px; font: 600 9px/1 var(--sans); }.mini-brand { border-top: 1px solid rgba(23,48,29,.12); padding: 16px 0 30px; }.mini-brand i { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: #d9ff43; font: 500 13px/1 var(--sans); }.mini-brand span { margin-right: auto; padding-left: 8px; font-size: 14px; font-weight: 600; }.mini-brand b { letter-spacing: 2px; font-size: 9px; }
.phone-eyebrow { margin: 0; font: 500 9px/1 var(--mono); letter-spacing: .12em; }.phone-shell h4 { margin: 12px 0 24px; font-size: 39px; line-height: .93; letter-spacing: -.06em; font-weight: 500; }
.ingredient-stack { display: flex; flex-wrap: wrap; gap: 7px; }.ingredient-stack span { padding: 8px 10px; border: 1px solid rgba(23,48,29,.16); border-radius: 999px; background: white; font-size: 10px; }
.mock-button { width: 100%; margin-top: 26px; padding: 15px; display: flex; justify-content: space-between; color: white; background: #17301d; border: 0; border-radius: 6px; font-size: 11px; }.phone-nav { position: absolute; left: 0; right: 0; bottom: 92px; display: flex; justify-content: space-around; padding: 16px; border-top: 1px solid rgba(23,48,29,.13); color: rgba(23,48,29,.45); }.phone-nav b { color: #17301d; }
.meal-card { position: absolute; z-index: 4; width: 230px; padding: 18px; color: #17301d; background: var(--acid); border: 1px solid #17301d; box-shadow: 8px 8px 0 #17301d; transform: rotate(4deg); }.meal-card span, .meal-card i { display: block; font: 500 8px/1 var(--mono); letter-spacing: .08em; }.meal-card strong { display: block; margin: 18px 0 28px; font-size: 21px; line-height: 1; letter-spacing: -.04em; }.meal-card i { font-style: normal; }.meal-one { top: 145px; right: -38px; }.meal-two { left: -38px; bottom: 65px; transform: rotate(-4deg); background: #fff4ca; }

.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.project-compact { display: flex; flex-direction: column; min-width: 0; }
.project-grid-single { grid-template-columns: 1fr; }
.project-grid-single .project-compact { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); }
.project-grid-single .compact-visual { min-height: 520px; border-right: 1px solid var(--line); border-bottom: 0; }
.project-grid-single .heart-visual p { font-size: clamp(46px, 6.3vw, 94px); }
.compact-visual { position: relative; min-height: 420px; overflow: hidden; border-bottom: 1px solid var(--line); }
.compact-copy { display: flex; flex-direction: column; align-items: flex-start; flex: 1; padding: clamp(28px, 4vw, 52px); }
.compact-copy h3 { margin: 30px 0 18px; font-size: clamp(36px, 4vw, 60px); }
.compact-copy > p:not(.project-meta):not(.disclosure) { margin: 0; max-width: 590px; color: var(--muted); line-height: 1.66; }
.compact-copy .project-link { margin-top: auto; padding-top: 34px; }
.mini-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }.mini-stack span { padding: 6px 9px; border: 1px solid var(--line); font: 400 9px/1 var(--mono); text-transform: uppercase; }
.heart-visual { padding: 28px; color: #351514; background: #ffb6b0; background-image: linear-gradient(rgba(53,21,20,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(53,21,20,.08) 1px, transparent 1px); background-size: 36px 36px; }
.visual-note { font: 500 9px/1 var(--mono); letter-spacing: .12em; }.heart-mark { position: absolute; top: 48px; right: 58px; font: 400 170px/1 var(--serif); color: #ef3e32; transform: rotate(11deg); text-shadow: 9px 9px 0 #351514; }
.heart-visual p { position: absolute; left: 28px; bottom: 66px; z-index: 2; margin: 0; font-size: clamp(32px, 4.2vw, 65px); line-height: .82; letter-spacing: -.06em; font-weight: 500; }.heart-visual p em { color: #fff6dd; font-family: var(--serif); font-weight: 400; }.order-line { position: absolute; left: 28px; right: 28px; bottom: 25px; display: flex; align-items: center; gap: 9px; font: 500 8px/1 var(--mono); text-transform: uppercase; }.order-line i { flex: 1; height: 1px; background: rgba(53,21,20,.4); }
.research { color: #f5f2e8; background: var(--black); }
.research-intro { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(32px, 7vw, 120px); align-items: end; margin-bottom: clamp(64px, 9vw, 126px); }
.research-intro .section-index { color: rgba(245,242,232,.5); align-self: start; }
.research-intro h2 em { color: var(--acid); }.research-intro > p:last-child { grid-column: 2; max-width: 620px; margin: 0; color: rgba(245,242,232,.58); font-size: clamp(17px, 1.45vw, 21px); }
.research-affiliation { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(34px, 6vw, 100px); margin-bottom: clamp(64px, 8vw, 112px); padding: clamp(28px, 4.2vw, 64px); border: 1px solid rgba(245,242,232,.24); background: #181c16; box-shadow: 12px 12px 0 rgba(217,255,67,.12); }
.affiliation-label { display: flex; align-items: center; gap: 10px; margin: 0; color: var(--acid); font: 400 10px/1.4 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.affiliation-pulse { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 4px rgba(217,255,67,.14); }
.affiliation-copy h3 { margin: 38px 0 24px; font-size: clamp(38px, 4.3vw, 66px); font-weight: 500; line-height: .95; letter-spacing: -.065em; }
.affiliation-copy h3 em { color: var(--acid); font-family: var(--serif); font-weight: 400; }
.affiliation-copy > p:not(.affiliation-label) { max-width: 500px; margin: 0; color: rgba(245,242,232,.68); line-height: 1.65; }
.affiliation-team { display: inline-flex; align-items: center; gap: 12px; margin-top: 36px; padding-bottom: 6px; border-bottom: 1px solid var(--acid); color: var(--acid); font: 400 10px/1.3 var(--mono); letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.affiliation-team:hover, .affiliation-writing a:hover .writing-link { color: var(--white); border-color: var(--white); }
.affiliation-writing { border-top: 1px solid rgba(245,242,232,.22); }
.affiliation-writing > .affiliation-label { padding: 18px 0 20px; color: rgba(245,242,232,.55); }
.affiliation-writing > a { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px 24px; padding: 25px 0; border-top: 1px solid rgba(245,242,232,.16); text-decoration: none; }
.writing-index { grid-column: 1 / -1; color: var(--orange); font: 400 9px/1.2 var(--mono); letter-spacing: .08em; }
.affiliation-writing strong { max-width: 520px; font-size: clamp(20px, 2vw, 29px); font-weight: 500; line-height: 1.12; letter-spacing: -.04em; }
.writing-link { align-self: end; white-space: nowrap; padding-bottom: 4px; border-bottom: 1px solid var(--acid); color: var(--acid); font: 400 9px/1.2 var(--mono); letter-spacing: .04em; text-transform: uppercase; }
.research-main { display: grid; grid-template-columns: .32fr 1fr 1fr; gap: clamp(28px, 5vw, 80px); padding: clamp(32px, 4.5vw, 70px) 0; border-top: 1px solid rgba(245,242,232,.18); border-bottom: 1px solid rgba(245,242,232,.18); }
.paper-mark { color: var(--orange); font: 300 clamp(56px, 6vw, 92px)/.9 var(--mono); letter-spacing: -.08em; }.paper-mark span { color: rgba(245,242,232,.25); }
.paper-copy h3 { margin: 20px 0 24px; font-size: clamp(41px, 4.4vw, 70px); line-height: .9; letter-spacing: -.065em; font-weight: 500; }.paper-status { color: var(--acid); }.paper-subtitle { color: var(--white) !important; font: 400 italic 23px/1.3 var(--serif) !important; }.paper-copy > p { color: rgba(245,242,232,.58); line-height: 1.65; }.paper-note { font: 400 10px/1.4 var(--mono) !important; text-transform: uppercase; letter-spacing: .06em; }.button-paper { margin-top: 24px; color: var(--black); background: var(--acid); }.button-paper:hover { background: var(--orange); }
.paper-figure { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: clamp(20px, 3vw, 40px); border: 1px solid rgba(245,242,232,.16); background: rgba(255,255,255,.025); }.figure-key { display: flex; gap: 18px; color: rgba(245,242,232,.5); font: 400 9px/1 var(--mono); text-transform: uppercase; }.figure-key span { display: flex; align-items: center; gap: 6px; }.figure-key i { width: 14px; height: 2px; }.key-one { background: var(--acid); }.key-two { background: var(--orange); }.paper-figure svg { margin: auto 0; overflow: visible; }.paper-figure svg line { stroke: rgba(245,242,232,.16); stroke-width: 1; }.paper-figure svg path { fill: none; stroke-width: 4; vector-effect: non-scaling-stroke; }.curve-one { stroke: var(--acid); }.curve-two { stroke: var(--orange); }.paper-figure svg .guide { stroke: rgba(245,242,232,.2); stroke-dasharray: 4 5; }.paper-figure svg text { fill: rgba(245,242,232,.4); font: 9px var(--mono); text-transform: uppercase; }.paper-figure > p { margin: 0; color: rgba(245,242,232,.5); font: 400 italic 17px/1.3 var(--serif); }
.system-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(64px, 8vw, 112px); border-top: 1px solid rgba(245,242,232,.18); border-left: 1px solid rgba(245,242,232,.18); }.system-card { min-height: 350px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(28px, 3.5vw, 52px); border-right: 1px solid rgba(245,242,232,.18); border-bottom: 1px solid rgba(245,242,232,.18); }.card-no { color: rgba(245,242,232,.38); }.system-card h3 { margin: 48px 0 18px; font-size: clamp(28px, 2.6vw, 42px); line-height: 1; letter-spacing: -.05em; }.system-card > p:not(.card-no) { color: rgba(245,242,232,.55); line-height: 1.65; }.system-card a, .quiet-label { margin-top: auto; padding-top: 36px; color: var(--acid); font: 400 10px/1.3 var(--mono); letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }.system-card a { border-bottom: 1px solid var(--acid); padding-bottom: 4px; }.quiet-label { color: rgba(245,242,232,.38); }

.about { background: var(--paper-2); }.about-heading h2 em { color: var(--orange); }.process-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }.process-list li { display: grid; grid-template-columns: 90px minmax(250px, .8fr) 1.2fr; gap: 24px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line); }.process-list li > span { font: 400 11px/1 var(--mono); color: var(--orange); }.process-list h3 { margin: 0; font-size: clamp(20px, 2vw, 30px); line-height: 1.1; letter-spacing: -.04em; }.process-list p { max-width: 620px; margin: 0; color: var(--muted); }
.bio-grid { display: grid; grid-template-columns: 1.1fr .9fr .8fr; gap: clamp(34px, 6vw, 96px); margin-top: clamp(82px, 10vw, 144px); padding-top: 42px; border-top: 4px solid var(--ink); }.bio-lead > p:last-child { margin: 36px 0 0; font: 400 italic clamp(27px, 3vw, 44px)/1.2 var(--serif); letter-spacing: -.035em; }.bio-notes { color: var(--muted); font-size: 17px; }.bio-notes p { margin: 0 0 24px; }.bio-facts { margin: 0; }.bio-facts div { padding: 14px 0; border-bottom: 1px solid var(--line); }.bio-facts div:first-child { padding-top: 0; }.bio-facts dt { margin-bottom: 6px; color: var(--muted); font: 400 9px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }.bio-facts dd { margin: 0; font-size: 14px; line-height: 1.5; }.bio-facts a { margin-right: 12px; }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 140px); color: var(--white); background: var(--blue); }.contact .section-index { color: rgba(255,255,255,.55); }.contact h2 { margin-top: 42px; font-size: clamp(48px, 6vw, 94px); }.contact h2 em { color: var(--acid); }.contact-intro > p:not(.section-index) { max-width: 520px; margin: 32px 0 0; color: rgba(255,255,255,.7); font-size: 18px; }.direct-contact { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px 16px; margin-top: 58px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); }.direct-contact > span { grid-column: 1/-1; color: rgba(255,255,255,.5); font: 400 9px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }.direct-contact a { overflow-wrap: anywhere; font-size: 16px; text-decoration: none; }.copy-button { padding: 7px 10px; color: white; background: transparent; border: 1px solid rgba(255,255,255,.35); font: 400 9px/1 var(--mono); text-transform: uppercase; cursor: pointer; }
.contact-form { align-self: start; padding: clamp(28px, 4vw, 56px); color: var(--ink); background: var(--white); box-shadow: 14px 14px 0 var(--acid); }.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.field { display: block; margin-bottom: 26px; }.field > span { display: block; margin-bottom: 9px; color: var(--muted); font: 500 9px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }.field input, .field textarea, .field select { width: 100%; padding: 13px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; }.field textarea { resize: vertical; min-height: 126px; }.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--blue); box-shadow: 0 2px 0 var(--blue); }.field input::placeholder, .field textarea::placeholder { color: #9c9d96; }.field [aria-invalid="true"] { border-bottom-color: #b82020; }.honey-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }.form-footer { display: flex; align-items: center; gap: 20px; margin-top: 6px; }.button-acid { color: var(--ink); background: var(--acid); border-color: var(--ink); }.button-acid:hover { color: white; background: var(--black); }.submit-button:disabled { cursor: wait; opacity: .65; transform: none; }.form-status { margin: 0; color: var(--muted); font: 400 10px/1.5 var(--mono); }.form-status[data-state="success"] { color: #16763f; }.form-status[data-state="error"] { color: #b82020; }

.site-footer { display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center; padding: 34px var(--gutter); color: rgba(255,255,255,.5); background: var(--black); border-top: 1px solid rgba(255,255,255,.1); font: 400 10px/1.5 var(--mono); letter-spacing: .02em; }.footer-mark { color: var(--white); }.site-footer p { margin: 0; text-align: center; }.site-footer > div { display: flex; flex-direction: column; align-items: flex-end; }

.hero-in { animation: rise-in .8s var(--ease) both; }.hero-copy .hero-in:nth-child(2) { animation-delay: .08s; }.hero-copy .hero-in:nth-child(3) { animation-delay: .16s; }.hero-copy .hero-in:nth-child(4) { animation-delay: .24s; }.hero-lab { animation-delay: .16s; }.proof-strip { animation-delay: .32s; }
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 1; transform: none; }
.js .reveal.will-reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js .reveal.will-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Long-form writing page uses the same editorial system. */
.article-page { background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 18px; line-height: 1.72; }
.article-page::before { z-index: 0; }.article-page .amb, .article-page .grain { display: none; }
.article-page .wrap { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 clamp(22px, 5vw, 70px) 110px; }
.article-page .back { display: inline-flex; margin: 42px 0 74px; color: var(--muted); font: 400 11px/1 var(--mono); letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.article-page header { margin-bottom: 58px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.article-page h1 { margin: 0 0 24px; font-size: clamp(47px, 7vw, 78px); font-weight: 500; line-height: .94; letter-spacing: -.065em; }
.article-page .byline { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font: 400 10px/1 var(--mono); text-transform: uppercase; }
.article-page .byline span:not(:last-child)::after { content: " /"; color: var(--orange); }
.article-page article p { margin: 0 0 1.45em; color: #454741; }
.article-page article p em { color: var(--ink); font-family: var(--serif); font-size: 1.08em; }
.article-page article h2 { margin: 2.4em 0 .85em; color: var(--ink); font: 500 clamp(30px, 4vw, 46px)/1 var(--sans); letter-spacing: -.05em; }
.article-page article h2::before { content: ""; display: block; width: 44px; height: 5px; margin-bottom: 20px; background: var(--orange); }
.article-page .turn { margin: 2.3em 0; padding: 24px 28px; color: var(--ink); background: var(--acid); border: 1px solid var(--ink); border-left: 8px solid var(--ink); border-radius: 0; font: 400 italic 24px/1.4 var(--serif); }
.article-page .turn strong { color: var(--ink); font-weight: 500; }
.article-page .tail { margin-top: 78px; padding: 28px; background: var(--black); border: 0; border-radius: 0; color: var(--white); }.article-page .tail .k { display: block; margin-bottom: 12px; color: var(--acid); font: 400 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }.article-page .tail p { margin: 0; color: rgba(255,255,255,.7); }.article-page .tail em { color: white; font-family: var(--serif); }
.article-page footer { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font: 400 10px/1 var(--mono); }.article-page footer a { color: inherit; }

.thanks-page { min-height: 100svh; display: grid; place-items: center; padding: var(--gutter); background: var(--blue); }
.thanks-card { width: min(760px, 100%); padding: clamp(34px, 7vw, 90px); color: var(--ink); background: var(--white); border: 1px solid var(--ink); box-shadow: 16px 16px 0 var(--acid); }
.thanks-card .section-index { color: var(--blue); }
.thanks-card h1 { margin: 34px 0 24px; font-size: clamp(52px, 9vw, 96px); font-weight: 500; line-height: .86; letter-spacing: -.07em; }
.thanks-card h1 em { color: var(--orange); font-family: var(--serif); font-weight: 400; }
.thanks-card > p:not(.section-index) { max-width: 520px; margin: 0 0 36px; color: var(--muted); font-size: 18px; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; background: radial-gradient(circle at 82% 9%, rgba(217,255,67,.26), transparent 20%), var(--paper); }
  .hero-copy { padding-right: 0; }.hero-lab { width: min(720px, calc(100% - 22px)); min-height: 520px; margin: 0 22px 76px 0; }.lab-panel { min-height: 410px; }
  .project-fridgey { grid-template-columns: 1fr; }.product-stage { min-height: 680px; }.project-facts { margin-top: 44px; }
  .research-main { grid-template-columns: 120px 1fr; }.paper-figure { grid-column: 2; min-height: 450px; }.paper-mark { grid-row: 1 / 3; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; height: 64px; }.nav-links { display: none; }
  .hero { padding-top: 110px; }.hero h1 { font-size: clamp(52px, 15vw, 88px); }.hero-deck { font-size: 18px; }.hero-actions { align-items: flex-start; flex-direction: column; }
  .proof-strip { grid-template-columns: 1fr 1fr; }.proof-strip > div { border-bottom: 1px solid var(--line); }.proof-strip > div:nth-child(2) { border-right: 0; }.proof-strip > div:first-child, .proof-strip > div:nth-child(3) { padding-left: 0; }.proof-strip > div:nth-child(3), .proof-strip > div:nth-child(4) { border-bottom: 0; }.proof-strip > div:nth-child(4) { padding-right: 0; }
  .section-heading, .research-intro { grid-template-columns: 1fr; gap: 30px; }.research-intro > p:last-child { grid-column: 1; }.section-heading .section-index { padding-top: 0; }
  .research-affiliation { grid-template-columns: 1fr; }.affiliation-writing { margin-top: 4px; }
  .project-grid { grid-template-columns: 1fr; }.project-grid-single .project-compact { display: flex; }.project-grid-single .compact-visual { min-height: 390px; border-right: 0; border-bottom: 1px solid var(--line); }.project-grid-single .heart-visual p { font-size: clamp(32px, 10vw, 65px); }.compact-visual { min-height: 390px; }
  .research-main { grid-template-columns: 1fr; }.paper-mark { grid-row: auto; }.paper-figure { grid-column: auto; min-height: 400px; }.system-grid { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 54px 1fr; }.process-list li p { grid-column: 2; }.bio-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }.contact-form { box-shadow: 9px 9px 0 var(--acid); }
  .site-footer { grid-template-columns: auto 1fr; }.site-footer p { display: none; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; --section: 82px; }
  .header-cta { font-size: 9px; }.status-dot { width: 6px; height: 6px; }
  .hero h1 { font-size: clamp(48px, 15vw, 74px); }.hero h1 em { white-space: normal; }.hero-copy { padding-bottom: 58px; }
  .hero-lab { min-height: 465px; box-shadow: 11px 11px 0 var(--orange); }.lab-panel { min-height: 360px; padding: 22px; }.lab-number { margin-top: 72px; font-size: 76px; }.lab-panel h2 { font-size: 30px; }.lab-readout { display: none; }.lab-tabs button { font-size: 9px; }.signal-chart { width: 78%; }.test-grid { width: 60%; right: 18px; }
  .proof-strip dd { font-size: 12px; }.proof-strip > div { padding: 16px 10px; }
  .section-heading h2, .research-intro h2, .contact h2 { font-size: 49px; }
  .project-copy { padding: 28px 22px 34px; }.project h3 { margin-top: 44px; }.project-facts { grid-template-columns: 1fr; }.project-facts li:nth-child(odd) { border-right: 0; }.project-facts li:nth-child(even) { padding-left: 0; }
  .product-stage { min-height: 540px; }.phone-shell { width: 73%; min-height: 570px; bottom: -110px; }.phone-shell h4 { font-size: 31px; }.meal-card { width: 165px; padding: 13px; }.meal-card strong { font-size: 16px; margin: 13px 0 20px; }.meal-one { right: -62px; }.meal-two { left: -65px; bottom: 38px; }
  .compact-visual { min-height: 320px; }.heart-mark { top: 40px; right: 18px; font-size: 120px; }.heart-visual p { font-size: 42px; }.dash-stat { margin-top: 48px; }.dash-bars { margin-top: 28px; }
  .research-main { padding-top: 34px; }.paper-mark { font-size: 54px; }.paper-figure { min-height: 320px; padding: 16px; }.paper-figure svg { width: 100%; }.system-card { min-height: 300px; }
  .research-affiliation { gap: 30px; padding: 26px 22px; box-shadow: 8px 8px 0 rgba(217,255,67,.12); }.affiliation-copy h3 { margin: 30px 0 18px; font-size: 43px; }.affiliation-writing > a { grid-template-columns: 1fr; gap: 12px; }.writing-index { grid-column: 1; }.writing-link { justify-self: start; margin-top: 3px; }
  .process-list li { grid-template-columns: 38px 1fr; gap: 14px; }.process-list p { font-size: 14px; }.bio-lead > p:last-child { font-size: 29px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }.contact-form { padding: 26px 20px; }.form-footer { align-items: flex-start; flex-direction: column; }
  .site-footer { padding: 28px 18px; }.site-footer > div { font-size: 8px; }
}

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