:root {
  --bg: #fcf8fa;
  --panel: #fffefe;
  --panel-alt: #f7eaf0;
  --ink: #241a20;
  --muted: #776970;
  --line: #e8dce2;
  --line-strong: #cfb9c4;
  --signal: #b71f61;
  --signal-dark: #f7eaf0;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 77% 16%, rgba(183, 31, 97, 0.07), transparent 34rem),
    var(--bg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.ambient { display: none; }

.site-header,
main,
footer {
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.wordmark-mark {
  width: 10px;
  height: 10px;
  display: block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px var(--signal-dark);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a { transition: color 120ms linear; }
nav a:hover { color: var(--signal); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--signal);
}

.nav-cta::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--signal);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  grid-template-rows: 1fr auto;
  column-gap: 72px;
  align-items: center;
  padding: 78px 0 0;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px var(--signal-dark);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 30px;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 650;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 0 16px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 120ms linear, background 120ms linear;
}

.button-primary { color: var(--bg); background: var(--signal); border-color: var(--signal); }
.button-primary:hover { color: var(--signal); background: transparent; }

.button-primary.dot-link {
  min-height: auto;
  justify-content: flex-start;
  gap: 12px;
  padding: 0;
  color: var(--signal);
  background: transparent;
  border: 0;
}

.button-primary.dot-link::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 6px var(--signal-dark);
}

.button-primary.dot-link:hover { color: var(--ink); }

.text-link {
  padding-bottom: 4px;
  color: var(--muted);
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 0.69rem;
  text-transform: uppercase;
}

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

.systems-map {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: end;
  isolation: isolate;
}

.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.orbit-large { width: 90%; }
.orbit-small { width: 56%; border-color: color-mix(in srgb, var(--signal) 34%, var(--line)); }
/*
.orbit-small::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: -4px;
  left: calc(50% - 3px);
  border-radius: 50%;
  background: var(--signal);
}*/

.map-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 116px;
  height: 116px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px;
  color: var(--ink);
  background: rgba(247, 234, 240, 0.78);
  border: 1px solid var(--signal);
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 14px 40px rgba(197, 34, 109, 0.1);
  z-index: 1;
}

.map-core span {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-core strong { margin-top: 5px; font-size: 1.05rem; }

.map-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: none;
  z-index: 3;
}

.map-node i { width: 9px; height: 9px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px var(--signal-dark); }
/* HUMANS — middle orbit, upper right */
.node-one {
  top: 27%;
  left: 68%;
}

/* SENSORS — middle orbit, lower right */
.node-two {
  top: 64%;
  left: 73%;
}

/* SYSTEMS — outer orbit, bottom */
.node-three {
  top: 94%;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* DECISIONS — middle orbit, left */
.node-four {
  top: 47%;
  right: 76%;
  flex-direction: row-reverse;
}
.signal-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 0.75fr 1.75fr;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-row > div,
.signal-row > p { padding: 20px 18px; border-right: 1px solid var(--line); }
.signal-row > div:first-child { padding-left: 0; }
.signal-row > div { display: flex; flex-direction: column; }
.signal-row strong { font-family: var(--mono); color: var(--signal); font-size: 1.1rem; font-weight: 500; }
.signal-row span { margin-top: 7px; color: var(--muted); font-family: var(--mono); font-size: 0.61rem; letter-spacing: 0.07em; text-transform: uppercase; }
.signal-row > p { margin: 0; border-right: 0; color: var(--muted); font-size: 0.82rem; line-height: 1.55; }

.products-section,
.work-section,
.approach-section,
.founder-section { scroll-margin-top: 30px; }

.products-section { padding: 96px 0 0; }
.work-section { padding: 96px 0 0; }

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  column-gap: 64px;
  row-gap: 24px;
  margin-bottom: 56px;
}

.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }

h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  line-height: 0.96;
  font-weight: 650;
  letter-spacing: -0.06em;
}

.section-heading > p:last-child {
  align-self: end;
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.product-stage {
  display: grid;
  grid-template-columns: 0.35fr 1.2fr 0.9fr;
  gap: 44px;
  padding: 40px 0;
  border-top: 1px solid var(--signal);
  border-bottom: 1px solid var(--line);
}

.product-index,
.product-kicker {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-main h3 {
  margin: 22px 0 30px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.product-main > p:last-child { max-width: 620px; margin: 0; color: var(--muted); line-height: 1.7; }
.product-capabilities { border-top: 1px solid var(--line); }

.product-capabilities > div {
  display: grid;
  grid-template-columns: 30px 0.6fr 1fr;
  gap: 12px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.product-capabilities span { color: var(--signal); font-family: var(--mono); font-size: 0.62rem; }
.product-capabilities strong { font-size: 0.94rem; font-weight: 600; }
.product-capabilities p { margin: 0; color: var(--muted); font-size: 0.79rem; line-height: 1.5; }

.application-card {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr 0.95fr;
  gap: 48px;
  align-items: end;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.application-card .eyebrow { margin-bottom: 24px; }
.application-card h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 600; letter-spacing: -0.045em; }
.application-card > p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.application-tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.application-tags span,
.project-card li,
.card-foot {
  padding: 7px 9px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.project-card {
  display: grid;
  grid-template-columns: 180px minmax(260px, 0.95fr) minmax(260px, 1.05fr);
  gap: 38px;
  align-items: start;
  min-height: 0;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.card-topline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-topline span:first-child { color: var(--signal); }
.project-card h3 { margin: 0; font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 600; letter-spacing: -0.035em; }
.project-card p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.project-card ul { display: flex; flex-wrap: wrap; align-self: start; gap: 6px; margin: 0; padding: 0; list-style: none; }
.card-foot { border: 0; padding: 0; line-height: 1.65; }

.approach-section { padding: 96px 0 0; }
.approach-copy { display: grid; grid-template-columns: 0.85fr 1.15fr; column-gap: 64px; row-gap: 24px; }
.approach-copy .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.approach-copy > p:last-child { align-self: end; max-width: 620px; margin: 0 0 6px; color: var(--muted); line-height: 1.7; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.principle { min-height: 220px; padding: 25px 28px 25px 0; border-right: 1px solid var(--line); }
.principle + .principle { padding-left: 28px; }
.principle:last-child { border-right: 0; }
.principle > span { color: var(--signal); font-family: var(--mono); font-size: 0.62rem; }
.principle > div { display: block; }
.principle strong { display: block; margin: 40px 0 13px; font-size: 1rem; font-weight: 600; }
.principle p { margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.6; }

.founder-section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 64px;
  margin-top: 96px;
  padding: 96px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.founder-label {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}

.founder-monogram {
  width: 175px;
  height: 210px;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
}

.founder-monogram img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.founder-copy { max-width: 760px; }
.founder-copy h2 { margin-bottom: 28px; }
.founder-lead { max-width: 650px; color: var(--ink); font-size: 1.24rem; line-height: 1.5; }
.founder-copy > p:not(.founder-lead) { max-width: 680px; color: var(--muted); line-height: 1.75; }
.founder-links { display: flex; gap: 24px; margin-top: 34px; }
.founder-links a { padding-bottom: 4px; border-bottom: 1px solid var(--line-strong); color: var(--muted); font-family: var(--mono); font-size: 0.66rem; text-transform: uppercase; }
.founder-links a:hover { color: var(--signal); border-color: var(--signal); }

.contact-panel {
  margin-top: 96px;
  padding: 48px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  color: var(--ink);
  background: var(--signal-dark);
  border-top: 1px solid var(--signal);
  border-bottom: 1px solid var(--signal);
}

.contact-panel .eyebrow { color: var(--signal); }
.contact-panel .eyebrow > span { background: var(--signal); }
.contact-panel h2 { max-width: 800px; font-size: clamp(1.9rem, 3vw, 3.2rem); }
.button-light { flex: 0 0 auto; color: #ffffff; background: var(--signal); border-color: var(--signal); }
.button-light:hover { color: var(--signal); background: transparent; }

footer {
  display: flex;
  justify-content: space-between;
  padding: 26px 0 32px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reveal { opacity: 0; transition: opacity 400ms linear; }
.reveal.visible { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transition: none; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .systems-map { width: min(100%, 560px); justify-self: start; margin-top: 70px; }
  .product-stage { grid-template-columns: 130px 1fr; }
  .product-capabilities { grid-column: 2; margin-top: 16px; }
  .project-card { grid-template-columns: 130px 1fr; }
  .project-card > :last-child { grid-column: 2; }
  .application-card { grid-template-columns: 1fr 1fr; }
  .application-tags { grid-column: 2; justify-content: flex-start; }
}

@media (max-width: 760px) {
  .systems-map {
  width: min(72vw, 340px);
  justify-self: center;
  margin-top: 40px;
  }
  .signal-row {
  margin-top: 40px;
  }
  .products-section { padding-top: 64px; }
  .work-section { padding-block: 64px 0 0; }
  .approach-section { padding-top: 64px; }
  .founder-section { margin-top: 64px; padding-block: 64px; }
  .contact-panel { margin-top: 64px; }
  .site-header, main, footer { width: min(100% - 32px, 1280px); }
  nav > a:not(.nav-cta) { display: none; }
  .hero { padding-top: 64px; }
  h1 {
  font-size: clamp(2.6rem, 11vw, 3.8rem);
  line-height: 0.98;
  }
  .signal-row { grid-template-columns: repeat(3, 1fr); }
  .signal-row > p { grid-column: 1 / -1; padding-left: 0; border-top: 1px solid var(--line); }
  .signal-row > div:nth-child(3) { border-right: 0; }
  .section-heading,
  .approach-copy { grid-template-columns: 1fr; row-gap: 24px; }
  .section-heading > p:last-child { margin: 0; }
  .product-stage { grid-template-columns: 1fr; gap: 30px; }
  .product-capabilities { grid-column: 1; }
  .application-card { grid-template-columns: 1fr; }
  .application-tags { grid-column: 1; }
  .project-card { grid-template-columns: 1fr; gap: 22px; }
  .project-card > :last-child { grid-column: 1; }
  .card-topline { flex-direction: row; justify-content: space-between; }
  .principles { grid-template-columns: 1fr; }
  .principle,
  .principle + .principle { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle:last-child { border-bottom: 0; }
  .principle strong { margin-top: 24px; }
  .founder-section { grid-template-columns: 1fr; gap: 42px; }
  .founder-label { flex-direction: row; align-items: flex-start; }
  .contact-panel { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  /*.orbit-large { width: 76%; }
  .orbit-small { width: 56%; }*/
  .map-core { width: 100px; height: 100px; }
  /*.node-one { top: 17.8%; left: 71%; }
  .node-two { top: 65.3%; left: 83.7%; }
  .node-three { top: 64.8%; left: 34.9%; }
  .node-four { top: 36.3%; right: 83.5%; }*/
  .signal-row strong { font-size: 0.92rem; }
  .signal-row > div { padding-inline: 8px; }
  .signal-row > div:first-child { padding-left: 0; }
  .product-capabilities > div { grid-template-columns: 26px 1fr; }
  .product-capabilities p { grid-column: 2; }
  footer { flex-direction: column; gap: 8px; }
}
