:root {
  --ink: #0b0d10;
  --ink-2: #15191d;
  --ink-3: #22272d;
  --bone: #f3f0e9;
  --paper: #fbfaf7;
  --muted: #b8b3aa;
  --muted-dark: #5f625f;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(11, 13, 16, 0.16);
  --orange: #ff8a45;
  --orange-deep: #d85f1f;
  --sage: #a8c9b6;
  --blue: #91b8d4;
  --header-height: 72px;
  --content: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--bone);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--bone);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 50%;
  width: min(calc(100% - 32px), 1240px);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(15, 18, 22, 0.76);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  transform: translateX(-50%);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 13, 16, 0.94);
  border-color: rgba(255, 255, 255, 0.24);
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 750;
  line-height: 1;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  padding: 10px 12px;
  color: rgba(243, 240, 233, 0.76);
  transition: color 160ms ease, background-color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--bone);
  background: rgba(255, 255, 255, 0.07);
}

.desktop-nav .nav-cta {
  margin-left: 6px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 6px;
}

.desktop-nav .nav-cta:hover {
  color: var(--ink);
  background: #ffa069;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--bone);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: 104px 20px 24px;
  background: rgba(11, 13, 16, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu nav {
  width: min(100%, 520px);
  margin: 0 auto;
  display: grid;
}

.mobile-menu nav > a:not(.button) {
  display: flex;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 24px;
  font-weight: 650;
}

.mobile-menu .button {
  margin-top: 24px;
}

.hero {
  position: relative;
  min-height: min(880px, 92svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(11, 13, 16, 0.42);
  pointer-events: none;
}

.signal-scene {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.hero-grid {
  width: min(calc(100% - 48px), var(--content));
  min-height: min(810px, 86svh);
  margin: 0 auto;
  padding: 160px 0 116px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 138, 69, 0.13);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 780;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--orange);
}

.hero-intro {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(243, 240, 233, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.founder-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--ink);
  background: var(--orange);
}

.button.primary:hover {
  background: #ffa069;
}

.button.secondary {
  color: var(--bone);
  border-color: rgba(243, 240, 233, 0.34);
  background: rgba(243, 240, 233, 0.06);
}

.button.secondary:hover {
  border-color: rgba(243, 240, 233, 0.62);
  background: rgba(243, 240, 233, 0.11);
}

.proof-line {
  margin: 24px 0 0;
  color: rgba(243, 240, 233, 0.54);
  font-size: 13px;
}

.proof-line span {
  margin: 0 6px;
  color: var(--orange);
}

.hero-instrument {
  position: relative;
  align-self: center;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(18, 22, 26, 0.74);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.instrument-head {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.instrument-head strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.instrument-kicker {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.state-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.state-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(168, 201, 182, 0.12);
}

.trace-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trace-list li {
  position: relative;
  min-height: 77px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(243, 240, 233, 0.72);
}

.trace-list li::before {
  content: "";
  position: absolute;
  left: 36px;
  bottom: -12px;
  width: 1px;
  height: 24px;
  background: var(--line-dark);
}

.trace-list li:last-child::before {
  display: none;
}

.trace-list li.is-current {
  color: var(--bone);
  background: rgba(255, 138, 69, 0.08);
}

.trace-list > li > span {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.trace-list strong,
.trace-list small {
  display: block;
}

.trace-list strong {
  color: inherit;
  font-size: 14px;
}

.trace-list small {
  margin-top: 2px;
  color: rgba(243, 240, 233, 0.48);
  font-size: 11px;
  line-height: 1.35;
}

.trace-list b {
  color: rgba(243, 240, 233, 0.52);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.trace-list .is-current b {
  color: var(--orange);
}

.instrument-foot {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  color: rgba(243, 240, 233, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.instrument-foot i {
  width: 16px;
  height: 1px;
  background: var(--orange);
  opacity: 0.5;
}

.method-strip {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: min(100%, var(--content));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  background: rgba(11, 13, 16, 0.8);
  transform: translateX(-50%);
}

.method-strip span {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-right: 1px solid var(--line-dark);
  color: rgba(243, 240, 233, 0.68);
  font-size: 13px;
  font-weight: 650;
}

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

.method-strip b {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.section,
.pathways,
.founder-band,
.company-thesis,
.contact-section,
.site-footer {
  position: relative;
  padding: 112px max(24px, calc((100% - var(--content)) / 2));
}

.section-light {
  color: var(--ink);
  background: var(--bone);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 64px;
}

.section-heading.compact {
  margin-bottom: 40px;
}

.section-heading h2,
.founder-copy h2,
.company-thesis h2,
.contact-intro h2,
.page-hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(243, 240, 233, 0.62);
  font-size: 18px;
}

.section-light .section-heading > p:last-child {
  color: var(--muted-dark);
}

.offer-list {
  border-top: 1px solid var(--line-light);
}

.offer {
  display: grid;
  grid-template-columns: 70px minmax(260px, 1fr) minmax(250px, 0.8fr) auto;
  align-items: start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line-light);
}

.offer-number {
  color: var(--orange-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.offer h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.offer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted-dark);
}

.offer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #3f4643;
  font-size: 14px;
}

.offer li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(11, 13, 16, 0.1);
}

.offer .text-link {
  margin-top: 2px;
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--orange);
}

.pathways {
  color: var(--ink);
  background: var(--sage);
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(11, 13, 16, 0.22);
  border-bottom: 1px solid rgba(11, 13, 16, 0.22);
}

.pathway-grid article {
  min-height: 320px;
  padding: 42px 42px 42px 0;
}

.pathway-grid article + article {
  padding-left: 42px;
  border-left: 1px solid rgba(11, 13, 16, 0.22);
}

.pathway-grid article > span,
.proof-type,
.lab-list span {
  color: rgba(11, 13, 16, 0.64);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.pathway-grid h3 {
  max-width: 500px;
  margin: 28px 0 16px;
  font-size: 32px;
  line-height: 1.15;
}

.pathway-grid p {
  max-width: 510px;
  margin: 0 0 32px;
  color: rgba(11, 13, 16, 0.7);
}

.proof-section {
  background: var(--ink);
}

.proof-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink-2);
}

.proof-media {
  min-height: 540px;
  overflow: hidden;
  background: #06080b;
}

.proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.proof-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px;
}

.proof-type {
  color: var(--orange);
}

.proof-copy h3,
.proof-note h3 {
  margin: 18px 0 14px;
  font-size: 32px;
  line-height: 1.15;
}

.proof-copy > p,
.proof-note p {
  color: rgba(243, 240, 233, 0.65);
}

.proof-copy dl {
  width: 100%;
  margin: 28px 0 32px;
}

.proof-copy dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line-dark);
}

.proof-copy dt {
  color: rgba(243, 240, 233, 0.45);
  font-size: 12px;
}

.proof-copy dd {
  margin: 0;
  font-size: 13px;
}

.proof-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.proof-note {
  min-height: 300px;
  padding: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--ink-2);
}

.proof-note .text-link {
  margin-top: 24px;
}

.proof-cta {
  margin-top: 32px;
}

.process-section {
  color: var(--ink);
  background: var(--blue);
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid rgba(11, 13, 16, 0.25);
  border-bottom: 1px solid rgba(11, 13, 16, 0.25);
}

.process-list li {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgba(11, 13, 16, 0.25);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li > span {
  color: rgba(11, 13, 16, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.process-list h3 {
  margin: 72px 0 12px;
  font-size: 27px;
}

.process-list p {
  margin: 0;
  color: rgba(11, 13, 16, 0.68);
}

.labs-preview {
  background: var(--paper);
  color: var(--ink);
}

.lab-list {
  margin-bottom: 36px;
  border-top: 1px solid var(--line-light);
}

.lab-list > a {
  min-height: 94px;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 340px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
  transition: padding-left 160ms ease, color 160ms ease;
}

.lab-list > a:hover {
  padding-left: 8px;
  color: var(--orange-deep);
}

.lab-list strong {
  font-size: 20px;
}

.lab-list small {
  color: var(--muted-dark);
  text-align: right;
}

.founder-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.1fr);
  gap: 72px;
  color: var(--bone);
  background: #24221f;
}

.founder-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink-3);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-copy {
  align-self: center;
  max-width: 690px;
}

.founder-copy p:not(.eyebrow) {
  margin: 26px 0 32px;
  color: rgba(243, 240, 233, 0.68);
  font-size: 19px;
}

.founder-links {
  align-items: flex-start;
  gap: 26px;
}

.company-thesis {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
  color: var(--ink);
  background: var(--bone);
}

.company-thesis > div:last-child p {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--muted-dark);
  font-size: 19px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1fr);
  gap: 80px;
  color: var(--bone);
  background: var(--ink-2);
}

.contact-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.contact-intro p:not(.eyebrow) {
  margin: 26px 0 0;
  color: rgba(243, 240, 233, 0.62);
  font-size: 17px;
}

.contact-intro p a {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.contact-form {
  min-width: 0;
  padding: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(243, 240, 233, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.contact-form label span {
  display: flex;
  justify-content: space-between;
}

.contact-form label small {
  color: rgba(243, 240, 233, 0.4);
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--bone);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  outline: 0;
  background: #11151a;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 138, 69, 0.14);
}

.contact-form [aria-invalid="true"] {
  border-color: #ff7c74;
}

.form-error {
  min-height: 24px;
  margin: -4px 0 16px;
  color: #ffaaa4;
  font-size: 13px;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-submit p {
  max-width: 330px;
  margin: 0;
  color: rgba(243, 240, 233, 0.45);
  font-size: 11px;
  line-height: 1.45;
}

.form-submit p a {
  color: rgba(243, 240, 233, 0.75);
  text-decoration: underline;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.site-footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.site-footer > p {
  margin: 0;
  color: rgba(243, 240, 233, 0.5);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(243, 240, 233, 0.68);
  font-size: 12px;
}

.site-footer nav a:hover {
  color: var(--orange);
}

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

.js [data-reveal] {
  opacity: 1;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

/* Shared interior pages */
.page-main {
  background: var(--paper);
  color: var(--ink);
}

.page-hero {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 160px max(24px, calc((100% - var(--content)) / 2)) 80px;
  color: var(--bone);
  background: var(--ink);
}

.page-hero > div {
  max-width: 880px;
}

.page-hero h1 {
  font-size: 64px;
}

.page-hero .lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(243, 240, 233, 0.68);
  font-size: 20px;
}

.page-section {
  padding: 88px max(24px, calc((100% - 980px) / 2));
}

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

.page-section h2 {
  margin: 0 0 22px;
  font-size: 40px;
  line-height: 1.15;
}

.page-section h3 {
  margin: 38px 0 12px;
  font-size: 24px;
}

.page-section p,
.page-section li {
  color: #4e534f;
}

.page-section blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  color: #303632;
  border-left: 3px solid var(--orange-deep);
  background: rgba(255, 138, 69, 0.08);
}

.page-section .button.secondary {
  color: var(--ink);
  border-color: var(--line-light);
  background: transparent;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.content-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.content-block {
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}

.content-block h2,
.content-block h3 {
  margin-top: 0;
}

.meta-list {
  margin: 28px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.meta-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-actions .button.secondary {
  color: var(--bone);
  border-color: rgba(243, 240, 233, 0.34);
}

.founder-profile {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  gap: 56px;
}

.founder-profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.legal-layout {
  min-height: 100vh;
  padding: 136px max(24px, calc((100% - 920px) / 2)) 88px;
  color: var(--ink);
  background: var(--paper);
}

.legal-document {
  padding: 48px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #fff;
}

.legal-document h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
}

.legal-document h2 {
  margin: 42px 0 12px;
  font-size: 23px;
  line-height: 1.25;
}

.legal-document p,
.legal-document li {
  color: #4e534f;
}

.legal-document a {
  text-decoration: underline;
  text-decoration-color: var(--orange-deep);
  text-underline-offset: 4px;
}

.legal-date {
  margin: 12px 0 32px;
  color: var(--muted-dark);
  font-size: 13px;
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 64px;
  background: var(--ink);
}

.status-page > section {
  width: min(100%, 720px);
  padding: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--ink-2);
}

.status-page h1 {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.08;
}

.status-page p {
  color: rgba(243, 240, 233, 0.64);
}

.status-page .page-actions {
  margin-top: 28px;
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 36px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .offer {
    grid-template-columns: 48px minmax(260px, 1fr) minmax(220px, 0.8fr);
  }

  .offer .text-link {
    grid-column: 2 / -1;
  }

  .contact-section {
    gap: 44px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    padding: 0 10px 0 8px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .hero {
    min-height: 0;
  }

  .hero::before {
    background: rgba(11, 13, 16, 0.77);
  }

  .signal-scene {
    opacity: 0.62;
  }

  .hero-grid {
    width: min(calc(100% - 32px), 640px);
    min-height: 0;
    padding: 132px 0 128px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-intro {
    font-size: 18px;
  }

  .hero-instrument {
    width: min(100%, 560px);
  }

  .method-strip {
    position: relative;
    left: auto;
    width: 100%;
    grid-template-columns: 1fr;
    transform: none;
  }

  .method-strip span {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .section,
  .pathways,
  .founder-band,
  .company-thesis,
  .contact-section,
  .site-footer {
    padding: 84px 24px;
  }

  .section-heading h2,
  .founder-copy h2,
  .company-thesis h2,
  .contact-intro h2 {
    font-size: 42px;
  }

  .offer {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 22px;
  }

  .offer ul,
  .offer .text-link {
    grid-column: 2;
  }

  .pathway-grid,
  .proof-feature,
  .founder-band,
  .company-thesis,
  .contact-section,
  .founder-profile {
    grid-template-columns: 1fr;
  }

  .pathway-grid article {
    min-height: 0;
    padding: 36px 0;
  }

  .pathway-grid article + article {
    padding-left: 0;
    border-top: 1px solid rgba(11, 13, 16, 0.22);
    border-left: 0;
  }

  .proof-media {
    min-height: 400px;
  }

  .proof-copy {
    padding: 36px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n+2) {
    border-bottom: 1px solid rgba(11, 13, 16, 0.25);
  }

  .lab-list > a {
    grid-template-columns: 150px 1fr;
  }

  .lab-list small {
    grid-column: 2;
    padding-bottom: 18px;
    text-align: left;
  }

  .founder-photo {
    max-width: 480px;
  }

  .contact-intro {
    position: static;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .page-hero {
    min-height: 500px;
    padding: 144px 24px 72px;
  }

  .page-hero h1 {
    font-size: 52px;
  }

  .page-section {
    padding: 72px 24px;
  }

  .legal-layout {
    padding: 112px 18px 64px;
  }

  .legal-document,
  .status-page > section {
    padding: 28px;
  }

  .legal-document h1,
  .status-page h1 {
    font-size: 38px;
  }

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

  .founder-profile {
    max-width: 720px;
  }

  .founder-profile img {
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 18px;
  }

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

  .hero-grid {
    width: min(calc(100% - 28px), 500px);
    padding-top: 116px;
    padding-bottom: 92px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .hero-intro {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-line {
    line-height: 1.65;
  }

  .instrument-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .trace-list li {
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 14px 16px;
  }

  .trace-list b {
    grid-column: 2;
  }

  .trace-list li::before {
    left: 29px;
  }

  .instrument-foot {
    flex-wrap: wrap;
  }

  .section,
  .pathways,
  .founder-band,
  .company-thesis,
  .contact-section,
  .site-footer {
    padding: 72px 18px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .founder-copy h2,
  .company-thesis h2,
  .contact-intro h2 {
    font-size: 34px;
  }

  .offer {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 32px 0;
  }

  .offer h3 {
    font-size: 24px;
  }

  .proof-pair,
  .process-list {
    grid-template-columns: 1fr;
  }

  .proof-media {
    min-height: 260px;
  }

  .proof-copy,
  .proof-note {
    padding: 26px;
  }

  .proof-copy h3,
  .proof-note h3,
  .pathway-grid h3 {
    font-size: 27px;
  }

  .proof-copy dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .process-list li,
  .process-list li:nth-child(2),
  .process-list li:nth-child(-n+2) {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 13, 16, 0.25);
  }

  .process-list h3 {
    margin: 0 0 8px;
  }

  .lab-list > a {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .lab-list small {
    grid-column: 1;
    padding-bottom: 0;
  }

  .founder-band {
    gap: 38px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 20px;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit .button {
    width: 100%;
  }

  .page-hero {
    min-height: 460px;
    padding: 128px 18px 60px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero .lede {
    font-size: 17px;
  }

  .page-section {
    padding: 64px 18px;
  }

  .page-section h2 {
    font-size: 32px;
  }

  .meta-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

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

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

  .signal-scene {
    opacity: 0.38;
  }
}

/* ============================================================
   PORTFOLIO VISUAL INHERITANCE
   The live company gateway now uses the portfolio's responsive
   glass material and keeps the founder portrait inside /portfolio/.
   ============================================================ */

.signal-scene {
  opacity: 1;
  filter: saturate(1.08) contrast(1.04);
}

html[data-theme="light"] .signal-scene {
  opacity: 0.58;
  filter: saturate(0.9) contrast(0.92);
}

.liquid-surface {
  --glass-x: 50%;
  --glass-y: 12%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.liquid-surface > .glass-glint {
  position: absolute;
  z-index: 0;
  inset: -1px;
  display: block;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle 260px at var(--glass-x) var(--glass-y), rgba(255, 255, 255, 0.2), rgba(166, 204, 232, 0.07) 30%, transparent 68%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.08), transparent 31%, rgba(255, 138, 69, 0.035) 72%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  opacity: 0.42;
  transition: opacity 220ms ease;
}

.liquid-surface.is-glass-active {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: var(--glass-shadow), 0 18px 60px rgba(255, 138, 69, 0.09);
}

.liquid-surface.is-glass-active > .glass-glint {
  opacity: 0.92;
}

.liquid-surface > :not(.glass-glint) {
  position: relative;
  z-index: 1;
}

.portfolio-bridge {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 112px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
}

.portfolio-bridge-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--bone);
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: 0;
}

.portfolio-bridge-copy > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: color-mix(in srgb, var(--bone) 67%, transparent);
  font-size: 18px;
}

.portfolio-bridge-action {
  min-height: 310px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.018) 46%),
    var(--glass);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
}

.portfolio-bridge-action small {
  display: block;
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.portfolio-bridge-action strong {
  display: block;
  max-width: 540px;
  margin-top: 10px;
  color: var(--bone);
  font-size: 24px;
  line-height: 1.35;
}

.portfolio-bridge-action .button {
  grid-column: 2;
  justify-self: start;
}

.portfolio-signal {
  position: relative;
  width: 88px;
  height: 88px;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
}

.portfolio-signal::before,
.portfolio-signal::after,
.portfolio-signal i {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 138, 69, 0.55);
  border-radius: 50%;
}

.portfolio-signal::before {
  inset: 5px;
  transform: rotateX(62deg) rotateZ(18deg);
  animation: portfolioSignalOrbit 9s linear infinite;
}

.portfolio-signal::after {
  inset: 16px 4px;
  border-color: rgba(145, 184, 212, 0.6);
  transform: rotateY(58deg) rotateZ(-24deg);
  animation: portfolioSignalOrbitReverse 11s linear infinite;
}

.portfolio-signal i:nth-child(1) {
  inset: 25px;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 138, 69, 0.22);
  box-shadow: 0 0 26px rgba(255, 138, 69, 0.3);
}

.portfolio-signal i:nth-child(2) {
  width: 8px;
  height: 8px;
  top: 8px;
  right: 13px;
  border: 0;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 138, 69, 0.72);
}

.portfolio-signal i:nth-child(3) {
  width: 6px;
  height: 6px;
  left: 8px;
  bottom: 19px;
  border: 0;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(145, 184, 212, 0.65);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .portfolio-bridge-copy h2 {
    color: transparent;
    background-image: linear-gradient(104deg, var(--bone) 0%, var(--bone) 38%, #ffffff 47%, var(--orange) 53%, var(--bone) 64%, var(--bone) 100%);
    background-size: 230% 100%;
    background-position: 170% 0;
    -webkit-background-clip: text;
    background-clip: text;
    animation: auraMirrorText 12s ease-in-out infinite;
  }

  html[data-theme="light"] .portfolio-bridge-copy h2 {
    background-image: linear-gradient(104deg, #15191e 0%, #15191e 38%, #607482 47%, var(--orange-deep) 53%, #15191e 64%, #15191e 100%);
  }
}

@keyframes portfolioSignalOrbit {
  to { transform: rotateX(62deg) rotateZ(378deg); }
}

@keyframes portfolioSignalOrbitReverse {
  to { transform: rotateY(58deg) rotateZ(-384deg); }
}

@media (max-width: 900px) {
  .portfolio-bridge {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 84px 0;
  }

  .portfolio-bridge-action {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .portfolio-bridge {
    width: min(calc(100% - 28px), var(--content));
    padding: 68px 0;
  }

  .portfolio-bridge-copy h2 {
    font-size: 38px;
  }

  .portfolio-bridge-copy > p:last-child {
    font-size: 16px;
  }

  .portfolio-bridge-action {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
  }

  .portfolio-signal {
    width: 64px;
    height: 64px;
  }

  .portfolio-bridge-action strong {
    font-size: 18px;
  }

  .portfolio-bridge-action .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-signal::before,
  .portfolio-signal::after,
  .portfolio-bridge-copy h2 {
    animation: none !important;
  }
}

/* ============================================================
   LIQUID-GLASS PRODUCT WORLD
   Restores the portfolio's spatial material language while keeping
   the reliability-first information architecture above it.
   ============================================================ */

:root {
  --glass: rgba(18, 23, 31, 0.58);
  --glass-strong: rgba(15, 20, 28, 0.76);
  --glass-soft: rgba(255, 255, 255, 0.055);
  --glass-line: rgba(255, 255, 255, 0.18);
  --glass-line-strong: rgba(255, 255, 255, 0.28);
  --glass-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  --glass-blur: blur(22px) saturate(155%);
}

html[data-theme="light"] {
  --ink: #edf1f3;
  --ink-2: #e2e7ea;
  --ink-3: #d5dde1;
  --bone: #15191e;
  --paper: #f7f9fa;
  --muted: #5e6871;
  --muted-dark: #4e5861;
  --line-dark: rgba(18, 25, 31, 0.16);
  --line-light: rgba(18, 25, 31, 0.18);
  --orange-deep: #b64e17;
  --glass: rgba(241, 246, 248, 0.62);
  --glass-strong: rgba(245, 248, 249, 0.8);
  --glass-soft: rgba(255, 255, 255, 0.45);
  --glass-line: rgba(255, 255, 255, 0.78);
  --glass-line-strong: rgba(255, 255, 255, 0.94);
  --glass-shadow: 0 24px 60px rgba(53, 66, 76, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body {
  position: relative;
  background: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 8, 13, 0.86) 0%, rgba(6, 8, 13, 0.56) 42%, rgba(6, 8, 13, 0.16) 100%),
    linear-gradient(180deg, rgba(6, 8, 13, 0.04) 0%, rgba(6, 8, 13, 0.48) 100%);
}

html[data-theme="light"] body::before {
  background:
    linear-gradient(90deg, rgba(237, 241, 243, 0.88) 0%, rgba(237, 241, 243, 0.58) 44%, rgba(237, 241, 243, 0.2) 100%),
    linear-gradient(180deg, rgba(237, 241, 243, 0.08) 0%, rgba(237, 241, 243, 0.52) 100%);
}

body > .site-header,
body > .mobile-menu,
body > main,
body > .site-footer {
  position: relative;
  z-index: 2;
}

.skip-link {
  position: fixed;
  z-index: 1000;
}

.signal-scene {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100vw;
  height: 100svh;
  max-width: none;
  opacity: 0.96;
  pointer-events: none;
}

html[data-theme="light"] .signal-scene {
  opacity: 0.52;
  filter: saturate(0.86) contrast(0.9);
}

.hero,
.section,
.section-light,
.pathways,
.proof-section,
.process-section,
.labs-preview,
.founder-band,
.company-thesis,
.contact-section,
.page-main,
.page-hero,
.page-section,
.status-page,
.site-footer {
  color: var(--bone);
  background: transparent;
}

.hero {
  min-height: min(960px, 100svh);
  overflow: visible;
  isolation: auto;
}

.hero::before {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: min(890px, 94svh);
  padding-top: 132px;
  gap: clamp(42px, 5vw, 76px);
}

.site-header {
  z-index: 100;
  overflow: hidden;
  border-color: var(--glass-line);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.018) 46%),
    var(--glass-strong);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(26px) saturate(165%);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 1px solid var(--glass-line-strong);
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.11) 47%, transparent 72%);
  transform: translateX(-120%);
  animation: glassHeaderShine 11s ease-in-out infinite;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  border-color: var(--glass-line-strong);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.012) 46%),
    var(--glass-strong);
}

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

.desktop-nav .nav-cta,
.button.primary {
  color: #17110c;
  border-color: rgba(255, 198, 154, 0.62);
  background: linear-gradient(180deg, #ffad74, var(--orange));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52), 0 12px 28px rgba(255, 138, 69, 0.18);
}

.desktop-nav .nav-cta:hover,
.button.primary:hover {
  color: #17110c;
  background: linear-gradient(180deg, #ffc49c, #ff9658);
}

.button.secondary,
.page-section .button.secondary {
  color: var(--bone);
  border-color: var(--glass-line);
  background: var(--glass-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
}

.theme-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin-left: 6px;
  padding: 0;
  border: 1px solid var(--glass-line);
  border-radius: 50%;
  color: var(--bone);
  background: var(--glass-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.theme-toggle-icon,
.theme-toggle-icon::before {
  position: absolute;
  border-radius: 50%;
}

.theme-toggle-icon {
  inset: 11px;
  border: 2px solid currentColor;
}

.theme-toggle-icon::before {
  content: "";
  top: -4px;
  right: -4px;
  width: 11px;
  height: 11px;
  background: var(--glass-strong);
  box-shadow: -1px 1px 0 1px currentColor;
}

html[data-theme="light"] .theme-toggle-icon {
  border-color: var(--orange-deep);
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 69, 0.14);
}

html[data-theme="light"] .theme-toggle-icon::before {
  display: none;
}

html[data-theme="light"] .desktop-nav a,
html[data-theme="light"] .mobile-menu nav > a:not(.button) {
  color: rgba(21, 25, 30, 0.7);
}

html[data-theme="light"] .desktop-nav a:hover,
html[data-theme="light"] .desktop-nav a[aria-current="page"] {
  color: #15191e;
}

html[data-theme="light"] .hero-intro,
html[data-theme="light"] .proof-line,
html[data-theme="light"] .instrument-kicker,
html[data-theme="light"] .trace-list li,
html[data-theme="light"] .trace-list small,
html[data-theme="light"] .trace-list b,
html[data-theme="light"] .instrument-foot,
html[data-theme="light"] .method-strip span {
  color: rgba(21, 25, 30, 0.66);
}

html[data-theme="light"] .trace-list li.is-current,
html[data-theme="light"] .trace-list strong,
html[data-theme="light"] .instrument-head strong {
  color: #15191e;
}

html[data-theme="light"] .trace-list .is-current b {
  color: var(--orange-deep);
}

html[data-theme="light"] .state-badge {
  color: #337657;
}

html[data-theme="light"] .state-badge i {
  background: #4c9a72;
  box-shadow: 0 0 0 5px rgba(76, 154, 114, 0.14);
}

.menu-button {
  margin-left: 6px;
  border-color: var(--glass-line);
  background: var(--glass-soft);
}

.mobile-menu {
  z-index: 90;
  color: var(--bone);
  background: var(--glass-strong);
  backdrop-filter: blur(30px) saturate(155%);
  -webkit-backdrop-filter: blur(30px) saturate(155%);
}

.zara-hero-launch {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  width: min(100%, 560px);
  min-height: 74px;
  margin-bottom: 25px;
  padding: 11px 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 69, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(130deg, rgba(255, 138, 69, 0.14), transparent 42%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 46%),
    var(--glass);
  box-shadow: var(--glass-shadow), 0 0 46px rgba(255, 138, 69, 0.08);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.zara-hero-launch::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.14) 48%, transparent 74%);
  transform: translateX(-125%);
  animation: zaraSignalSweep 8.5s ease-in-out infinite;
}

.zara-hero-launch:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 166, 103, 0.72);
  box-shadow: var(--glass-shadow), 0 0 56px rgba(255, 138, 69, 0.14);
}

.zara-hero-orb,
.zara-product-orb {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 206, 170, 0.78) 12%, transparent 31%),
    radial-gradient(circle at 68% 73%, rgba(255, 138, 69, 0.92) 0%, transparent 52%),
    radial-gradient(circle at 50% 50%, #63809b 0%, #111823 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), inset -8px -10px 22px rgba(0, 0, 0, 0.48), 0 10px 28px rgba(255, 138, 69, 0.3);
  animation: zaraBreathe 6.8s ease-in-out infinite;
}

.zara-hero-orb::before,
.zara-product-orb::before,
.zara-hero-orb::after,
.zara-product-orb::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 166, 103, 0.44);
  border-radius: 50%;
}

.zara-hero-orb::before,
.zara-product-orb::before {
  inset: -6px;
  animation: zaraRing 5.4s ease-out infinite;
}

.zara-hero-orb::after,
.zara-product-orb::after {
  inset: 8px -4px;
  transform: rotate(35deg);
}

.zara-hero-orb i,
.zara-product-orb i {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: #ffe5d2;
  box-shadow: 0 0 18px 8px rgba(255, 138, 69, 0.52);
}

.zara-hero-copy {
  display: grid;
  min-width: 0;
  line-height: 1.2;
}

.zara-hero-copy small,
.zara-product-stage small {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.zara-hero-copy strong {
  margin-top: 4px;
  color: var(--bone);
  font-size: 17px;
}

.zara-hero-action {
  color: rgba(243, 240, 233, 0.68);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

html[data-theme="light"] .zara-hero-action {
  color: rgba(21, 25, 30, 0.68);
}

.hero-instrument,
.contact-form,
.content-block,
.status-page > section,
.zara-product-stage {
  border-color: var(--glass-line);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.016) 46%),
    var(--glass);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.hero-instrument {
  overflow: hidden;
}

.trace-list li.is-current {
  background: linear-gradient(90deg, rgba(255, 138, 69, 0.15), rgba(255, 138, 69, 0.035));
}

.method-strip {
  border-color: var(--glass-line);
  background: var(--glass-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.section,
.pathways,
.founder-band,
.company-thesis,
.contact-section,
.site-footer,
.page-section {
  border-top: 1px solid var(--line-dark);
}

.section-heading > p:last-child,
.section-light .section-heading > p:last-child,
.offer p,
.offer li,
.pathway p,
.proof-card p,
.proof-card small,
.process-list p,
.lab-list small,
.founder-copy p,
.company-thesis p,
.contact-intro > p,
.page-hero .lede,
.page-section p,
.page-section li,
.status-page p,
.site-footer p {
  color: color-mix(in srgb, var(--bone) 67%, transparent);
}

.offer-list,
.offer {
  border: 0;
}

.offer-list {
  display: grid;
  gap: 14px;
}

.offer,
.pathway,
.proof-card,
.process-list li,
.lab-list a {
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.012) 44%),
    var(--glass);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.offer {
  padding: 32px;
}

.offer-number,
.offer h3,
.pathway h3,
.proof-card h3,
.process-list h3,
.lab-list strong {
  color: var(--bone);
}

.offer-number,
.pathway-kicker,
.proof-card .eyebrow {
  color: var(--orange);
}

.pathways,
.proof-grid,
.process-list,
.lab-list {
  gap: 14px;
}

.process-list {
  border: 0;
}

.process-list li {
  padding: 24px;
}

.labs-preview,
.founder-band,
.contact-section {
  background: rgba(7, 10, 15, 0.18);
}

html[data-theme="light"] .labs-preview,
html[data-theme="light"] .founder-band,
html[data-theme="light"] .contact-section {
  background: rgba(239, 244, 246, 0.28);
}

.founder-photo,
.founder-copy,
.company-thesis > div {
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.015) 48%),
    var(--glass);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.founder-photo {
  overflow: hidden;
}

.founder-copy,
.company-thesis > div {
  padding: clamp(28px, 4vw, 54px);
}

.company-thesis {
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--bone);
  border-color: var(--glass-line);
  background: color-mix(in srgb, var(--glass-strong) 78%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--bone) 44%, transparent);
}

.page-main {
  position: relative;
}

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

.page-section blockquote {
  color: var(--bone);
  border-color: var(--orange);
  background: rgba(255, 138, 69, 0.09);
}

.zara-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
}

.zara-product-stage {
  min-height: 350px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 30px;
  padding: 42px;
  text-align: center;
  transition: transform 260ms ease, border-color 260ms ease;
}

.zara-product-stage:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 69, 0.62);
}

.zara-product-orb {
  width: 132px;
  height: 132px;
}

.zara-product-orb i {
  inset: 45px;
}

.zara-product-stage > span:nth-child(2) {
  display: grid;
  gap: 8px;
}

.zara-product-stage strong {
  color: var(--bone);
  font-size: 23px;
}

.zara-product-stage em {
  color: color-mix(in srgb, var(--bone) 58%, transparent);
  font-size: 13px;
  font-style: normal;
}

.zara-product-stage b {
  color: var(--orange);
  font-size: 22px;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1,
  .section-heading h2,
  .founder-copy h2,
  .company-thesis h2,
  .contact-intro h2,
  .page-hero h1 {
    color: transparent;
    background-image: linear-gradient(104deg, var(--bone) 0%, var(--bone) 38%, #ffffff 47%, var(--orange) 53%, var(--bone) 64%, var(--bone) 100%);
    background-size: 230% 100%;
    background-position: 170% 0;
    -webkit-background-clip: text;
    background-clip: text;
    animation: auraMirrorText 12s ease-in-out infinite;
  }

  html[data-theme="light"] .hero h1,
  html[data-theme="light"] .section-heading h2,
  html[data-theme="light"] .founder-copy h2,
  html[data-theme="light"] .company-thesis h2,
  html[data-theme="light"] .contact-intro h2,
  html[data-theme="light"] .page-hero h1 {
    background-image: linear-gradient(104deg, #15191e 0%, #15191e 38%, #607482 47%, var(--orange-deep) 53%, #15191e 64%, #15191e 100%);
  }
}

@keyframes glassHeaderShine {
  0%, 62% { transform: translateX(-120%); }
  82%, 100% { transform: translateX(120%); }
}

@keyframes zaraSignalSweep {
  0%, 66% { transform: translateX(-125%); }
  84%, 100% { transform: translateX(125%); }
}

@keyframes zaraBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.025); }
}

@keyframes zaraRing {
  0% { transform: scale(0.92); opacity: 0.6; }
  72%, 100% { transform: scale(1.28); opacity: 0; }
}

@keyframes auraMirrorText {
  0%, 64% { background-position: 170% 0; }
  88%, 100% { background-position: -55% 0; }
}

@media (max-width: 1060px) {
  .zara-product-hero {
    grid-template-columns: 1fr;
  }

  .zara-product-stage {
    min-height: 280px;
  }
}

@media (max-width: 860px) {
  body::before,
  html[data-theme="light"] body::before {
    background: linear-gradient(180deg, color-mix(in srgb, var(--ink) 80%, transparent) 0%, color-mix(in srgb, var(--ink) 42%, transparent) 45%, color-mix(in srgb, var(--ink) 76%, transparent) 100%);
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    height: 64px;
    padding: 0 10px;
  }

  .brand {
    gap: 8px;
    font-size: 18px;
  }

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

  .theme-toggle,
  .menu-button {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .theme-toggle {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 98px;
    padding-bottom: 112px;
  }

  .zara-hero-launch {
    width: 100%;
    margin-bottom: 22px;
  }

  .signal-scene {
    opacity: 0.88;
  }

  .offer {
    padding: 24px;
  }

  .founder-photo,
  .founder-copy {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 60px;
    padding: 0 8px;
  }

  .brand {
    font-size: 16px;
  }

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

  .theme-toggle,
  .menu-button {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .zara-hero-launch {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 68px;
    padding: 10px;
  }

  .zara-hero-orb {
    width: 43px;
    height: 43px;
  }

  .zara-hero-action {
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid var(--glass-line);
    text-align: left;
  }

  .hero-grid {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-intro {
    font-size: 17px;
  }

  .method-strip {
    width: calc(100% - 20px);
  }

  .offer,
  .process-list li,
  .founder-copy,
  .company-thesis > div,
  .contact-form {
    padding: 20px;
  }

  .offer .text-link {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    white-space: normal;
  }

  .offer .text-link span {
    flex: 0 0 auto;
  }

  .zara-product-stage {
    min-height: 250px;
    padding: 28px 18px;
  }

  .zara-product-orb {
    width: 104px;
    height: 104px;
  }

  .zara-product-orb i {
    inset: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::before,
  .zara-hero-launch::after,
  .zara-hero-orb,
  .zara-product-orb,
  .zara-hero-orb::before,
  .zara-product-orb::before,
  .hero h1,
  .section-heading h2,
  .founder-copy h2,
  .company-thesis h2,
  .contact-intro h2,
  .page-hero h1 {
    animation: none !important;
  }
}
