:root {
  --ink: #071521;
  --ink-soft: #2b3c48;
  --muted: #60717a;
  --paper: #ffffff;
  --surface: #f5f9f8;
  --surface-strong: #eaf2f0;
  --line: #d8e4e1;
  --line-dark: rgba(255, 255, 255, 0.16);
  --cyan: #00aee8;
  --cyan-deep: #007faa;
  --teal: #0d8f80;
  --green: #3f9d55;
  --lime: #b8dc63;
  --amber: #c9821d;
  --rose: #c7566a;
  --focus: #006f9a;
  --shadow: 0 24px 70px rgba(9, 36, 47, 0.13);
  --max: 1200px;
}

.token-main { min-height: calc(100vh - 84px); display: grid; place-items: center; padding: 40px 20px; background: #f6faf9; }
.token-card { width: min(100%, 520px); padding: 38px; border: 1px solid rgba(15, 40, 35, .12); border-radius: 24px; background: #fff; box-shadow: 0 22px 70px rgba(15, 40, 35, .09); }
.token-card h1 { margin: 6px 0 12px; }
.legal-main { width: min(880px, calc(100% - 40px)); margin: 0 auto; padding: 72px 0 110px; color: #142c27; }
.legal-main h1 { max-width: 760px; margin: 8px 0 18px; font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: 1.02; letter-spacing: -.045em; }
.legal-lead { max-width: 720px; color: #58706a; font-size: 1.1rem; line-height: 1.7; }
.legal-main section { margin-top: 42px; padding-top: 28px; border-top: 1px solid rgba(20, 44, 39, .14); }
.legal-main section h2 { margin: 0 0 10px; }
.legal-main section p { max-width: 760px; color: #4e6660; line-height: 1.75; }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(0, 174, 232, 0.42);
  outline-offset: 3px;
}

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

.announcement {
  min-height: 34px;
  padding: 7px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #dceff0;
  background: var(--ink);
  font-size: 12px;
}

.announcement a {
  color: #85def2;
  font-weight: 700;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 34px;
  left: 0;
  right: 0;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 0 rgba(7, 21, 33, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1280px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-link img {
  width: 162px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a,
.text-link {
  position: relative;
}

.main-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--cyan);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.text-link:hover::after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-small {
  min-height: 40px;
  padding: 0 17px;
  font-size: 13px;
}

.button-primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(7, 21, 33, 0.18);
}

.button-primary:hover,
.button-dark:hover {
  background: #103044;
}

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

.button-quiet {
  color: var(--ink);
  border-color: rgba(7, 21, 33, 0.3);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.button-quiet:hover {
  border-color: var(--ink);
  background: var(--paper);
}

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

.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

.button-outline:hover {
  border-color: var(--cyan);
}

.button-full {
  width: 100%;
}

.eyebrow,
.micro-label {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.micro-label {
  margin-bottom: 6px;
  font-size: 10px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 190px);
  padding: 136px 0 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f7fafb;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/molexio-discovery-hero.webp");
  background-size: cover;
  background-position: center right;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -80px auto -80px -140px;
  width: 760px;
  background: radial-gradient(circle at 45% 50%, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0.93) 48%, rgba(255, 255, 255, 0) 76%);
}

.hero-brand {
  margin: 0;
  max-width: 700px;
  font-size: clamp(58px, 7.6vw, 112px);
  line-height: 0.9;
  font-weight: 780;
  letter-spacing: 0;
}

.hero-claim {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(27px, 3.2vw, 48px);
  line-height: 1.04;
  font-weight: 720;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.hero-facts {
  max-width: 700px;
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(7, 21, 33, 0.16);
}

.hero-facts div {
  min-width: 0;
  padding: 18px 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-facts strong {
  font-size: 24px;
  font-weight: 780;
}

.hero-facts span {
  color: var(--muted);
  font-size: 12px;
}

.product-band {
  position: relative;
  z-index: 4;
  padding: 58px 0 110px;
}

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

.section-heading h2,
.evidence-copy h2,
.deployment-layout h2,
.contact-copy h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: 1.02;
  font-weight: 730;
  letter-spacing: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 72px;
}

.split-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
}

.centered-heading {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.centered-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

.centered-heading > p:last-child {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.centered-heading.compact {
  max-width: 780px;
  margin-bottom: 40px;
}

.workspace-preview {
  min-height: 640px;
  border: 1px solid #bfcfcb;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.workspace-topbar {
  min-height: 62px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fbfdfd;
}

.workspace-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 750;
}

.workspace-brand img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.workspace-context {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.workspace-context span {
  color: var(--muted);
}

.workspace-user {
  justify-self: end;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.workspace-body {
  min-height: 578px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 280px;
}

.workspace-sidebar {
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--line);
  background: #f7faf9;
}

.side-label {
  margin: 14px 9px 5px;
  color: #829198;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.side-item {
  width: 100%;
  min-height: 36px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 3px;
  color: #53646c;
  background: transparent;
  font-size: 11px;
  text-align: left;
}

.side-item i {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.side-item.active {
  color: var(--ink);
  background: #deeeea;
  font-weight: 750;
}

.side-item.active i {
  border-color: var(--teal);
  background: var(--teal);
}

.workspace-main {
  min-width: 0;
  padding: 32px 26px;
}

.workspace-heading {
  margin-bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.workspace-heading h3,
.decision-panel h3 {
  margin: 0;
  font-size: 22px;
}

.mini-actions {
  display: flex;
  gap: 7px;
}

.mini-actions button {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  font-size: 10px;
  font-weight: 700;
}

.mini-actions .mini-primary {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.candidate-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.candidate-row {
  width: 100%;
  min-height: 82px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 0.5fr 0.7fr;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 11px;
  text-align: left;
}

button.candidate-row {
  cursor: pointer;
}

.candidate-row:last-child {
  border-bottom: 0;
}

.candidate-row.selected {
  background: #f1f9f7;
  box-shadow: inset 3px 0 var(--teal);
}

.candidate-head {
  min-height: 42px;
  color: #7b8c93;
  background: #f7faf9;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.candidate-row span:first-child {
  display: flex;
  flex-direction: column;
}

.candidate-row b {
  color: var(--ink);
  font-size: 12px;
}

.candidate-row small {
  color: #84939a;
  font-size: 9px;
}

.status {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 2px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.status.advance {
  color: #145e3d;
  background: #d9f1e3;
}

.status.review {
  color: #7e5412;
  background: #f8ebd2;
}

.status.watch {
  color: #8a3b49;
  background: #f5dfe3;
}

.decision-panel {
  padding: 30px 24px;
  border-left: 1px solid var(--line);
  background: #fbfdfd;
}

.decision-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.molecule-sketch {
  position: relative;
  height: 150px;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(30deg, transparent 48%, rgba(13, 143, 128, 0.08) 49%, transparent 52%),
    #ffffff;
}

.bond {
  position: absolute;
  width: 58px;
  height: 2px;
  background: #21424e;
  transform-origin: left center;
}

.b1 { top: 74px; left: 44px; transform: rotate(-32deg); }
.b2 { top: 44px; left: 92px; transform: rotate(32deg); }
.b3 { top: 74px; left: 142px; transform: rotate(148deg); }
.b4 { top: 76px; left: 44px; transform: rotate(32deg); }
.b5 { top: 106px; left: 92px; transform: rotate(-32deg); }
.b6 { top: 76px; left: 142px; transform: rotate(32deg); }

.atom {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--cyan-deep);
  font-size: 9px;
  font-weight: 800;
}

.a1 { top: 34px; left: 84px; }
.a2 { top: 96px; left: 84px; background: var(--rose); }
.a3 { top: 66px; left: 133px; }

.decision-metrics {
  margin: 0;
}

.decision-metrics div {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.decision-metrics dt {
  color: var(--muted);
}

.decision-metrics dd {
  margin: 0;
  font-weight: 700;
}

.boundary-note {
  margin: 22px 0 0;
  padding: 12px;
  color: #52656e;
  background: #edf3f1;
  font-size: 10px;
}

.platform-section {
  padding: 110px 0;
  background: var(--surface);
}

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

.capability-card {
  position: relative;
  min-height: 288px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  transition: background 180ms ease, transform 180ms ease;
}

.capability-card:hover {
  z-index: 2;
  background: var(--paper);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(18, 51, 59, 0.09);
}

.capability-index {
  color: var(--cyan-deep);
  font-size: 11px;
  font-weight: 800;
}

.capability-card h3 {
  margin: 36px 0 14px;
  font-size: 22px;
  line-height: 1.15;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.capability-meta {
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.workflow-section {
  padding: 110px 0;
}

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

.workflow-tab {
  min-height: 54px;
  padding: 0 14px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.workflow-tab:hover {
  color: var(--ink);
}

.workflow-tab.active {
  color: var(--ink);
  border-bottom-color: var(--cyan);
}

.workflow-stage {
  min-height: 520px;
}

.workflow-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.workflow-panel[hidden] {
  display: none;
}

.workflow-copy {
  padding: 70px 70px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workflow-number {
  color: var(--cyan-deep);
  font-size: 12px;
  font-weight: 800;
}

.workflow-copy h3 {
  margin: 22px 0 20px;
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1.08;
}

.workflow-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 26px;
  color: var(--ink-soft);
  font-size: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 2px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.workflow-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #eef5f3;
}

.natural-visual {
  background:
    linear-gradient(rgba(255,255,255,0.56), rgba(255,255,255,0.56)),
    url("assets/images/molexio-discovery-hero.webp") center right / cover;
}

.graph-node {
  position: absolute;
  z-index: 3;
  width: 145px;
  min-height: 72px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(7, 21, 33, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(7, 21, 33, 0.08);
  backdrop-filter: blur(12px);
}

.graph-node b {
  font-size: 12px;
}

.graph-node span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.plant-node { top: 72px; left: 44px; }
.compound-node { top: 208px; left: 230px; border-color: var(--green); }
.target-node { top: 82px; right: 42px; }
.disease-node { right: 58px; bottom: 62px; }

.graph-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: var(--teal);
  transform-origin: left center;
}

.line-a { top: 144px; left: 176px; width: 133px; transform: rotate(38deg); }
.line-b { top: 219px; left: 364px; width: 136px; transform: rotate(-36deg); }
.line-c { top: 260px; left: 364px; width: 186px; transform: rotate(29deg); }

.evidence-chip {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 28px;
  padding: 9px 12px;
  border-left: 3px solid var(--green);
  background: var(--paper);
  font-size: 10px;
  font-weight: 750;
}

.structure-visual {
  background: #071d2a;
}

.protein-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(113, 225, 232, 0.4);
  border-radius: 50%;
  color: rgba(255,255,255,0.68);
  background: radial-gradient(circle, rgba(28, 169, 163, 0.42), rgba(7, 29, 42, 0.2));
  font-size: 10px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.protein-core b {
  color: var(--paper);
  font-size: 13px;
}

.protein-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(0, 174, 232, 0.38);
  border-radius: 50%;
}

.orbit-one {
  width: 350px;
  height: 210px;
  transform: translate(-50%, -50%) rotate(26deg);
}

.orbit-two {
  width: 260px;
  height: 400px;
  border-color: rgba(184, 220, 99, 0.32);
  transform: translate(-50%, -50%) rotate(58deg);
}

.ligand-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(184, 220, 99, 0.8);
}

.dot-one { top: 162px; left: 225px; }
.dot-two { top: 245px; right: 195px; background: var(--cyan); }
.dot-three { bottom: 142px; left: 265px; width: 11px; height: 11px; background: var(--rose); }

.pose-score {
  position: absolute;
  right: 22px;
  bottom: 22px;
  min-width: 150px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.62);
  background: rgba(0,0,0,0.2);
  font-size: 10px;
}

.pose-score b {
  color: var(--lime);
}

.optimize-visual {
  background: #f0f5f4;
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #bed0cc;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ring-one { width: 110px; height: 110px; }
.ring-two { width: 230px; height: 230px; }
.ring-three { width: 360px; height: 360px; }

.axis {
  position: absolute;
  z-index: 3;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.axis::after {
  content: "";
  position: absolute;
  background: #bed0cc;
}

.axis-a { top: 45px; left: calc(50% - 20px); }
.axis-b { top: calc(50% - 8px); right: 34px; }
.axis-c { bottom: 45px; left: calc(50% - 18px); }
.axis-d { top: calc(50% - 8px); left: 34px; }

.radar-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  background: rgba(0, 174, 232, 0.2);
  clip-path: polygon(52% 4%, 94% 44%, 62% 94%, 12% 73%, 21% 23%);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 2px var(--cyan-deep));
}

.dmta-visual {
  background: #eaf2f0;
}

.cycle-node {
  position: absolute;
  width: 128px;
  min-height: 78px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

.cycle-node b {
  font-size: 14px;
}

.cycle-node span {
  color: var(--muted);
  font-size: 10px;
}

.design-node { top: 72px; left: calc(50% - 64px); border-top: 3px solid var(--cyan); }
.make-node { top: calc(50% - 39px); right: 70px; border-top: 3px solid var(--amber); }
.test-node { bottom: 72px; left: calc(50% - 64px); border-top: 3px solid var(--green); }
.analyze-node { top: calc(50% - 39px); left: 70px; border-top: 3px solid var(--rose); }

.cycle-arrow {
  position: absolute;
  color: var(--teal);
  font-size: 34px;
  font-weight: 300;
}

.arrow-a { top: 105px; right: 150px; transform: rotate(45deg); }
.arrow-b { right: 125px; bottom: 150px; transform: rotate(45deg); }
.arrow-c { bottom: 105px; left: 150px; transform: rotate(45deg); }
.arrow-d { top: 150px; left: 125px; transform: rotate(45deg); }

.evidence-section {
  padding: 120px 0;
  color: var(--paper);
  background: #071925;
}

.evidence-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
  align-items: center;
}

.evidence-copy .eyebrow {
  color: #79dbe1;
}

.evidence-copy h2 {
  max-width: 570px;
}

.evidence-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 25px 0 32px;
  color: #aabdc4;
  font-size: 16px;
}

.evidence-ladder {
  border-top: 1px solid var(--line-dark);
}

.evidence-row {
  min-height: 104px;
  padding: 18px 6px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.evidence-row > span {
  color: #6e8993;
  font-size: 11px;
}

.evidence-row div {
  display: flex;
  flex-direction: column;
}

.evidence-row b {
  font-size: 16px;
}

.evidence-row small {
  color: #8ea4ad;
  font-size: 12px;
}

.evidence-row em {
  padding: 6px 8px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.evidence-row.measured em { color: #83e3af; }
.evidence-row.calculated em { color: #72d7e8; }
.evidence-row.predicted em { color: #efbd70; }
.evidence-row.missing em { color: #e38b9d; }

.deployment-section {
  padding: 110px 0;
  background: var(--surface);
}

.deployment-layout > div:first-child {
  max-width: 900px;
}

.deployment-options {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.deployment-options article {
  min-height: 250px;
  padding: 34px 34px 30px 0;
  border-right: 1px solid var(--line);
}

.deployment-options article + article {
  padding-left: 34px;
}

.deployment-options article:last-child {
  border-right: 0;
}

.deployment-options span {
  color: var(--cyan-deep);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.deployment-options h3 {
  margin: 42px 0 14px;
  font-size: 23px;
}

.deployment-options p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.roles-section {
  padding: 100px 0;
}

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

.role-strip > div {
  min-height: 125px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border-right: 1px solid var(--line);
}

.role-strip > div:last-child {
  border-right: 0;
}

.role-strip b {
  font-size: 14px;
}

.role-strip span {
  color: var(--muted);
  font-size: 12px;
}

.contact-section {
  padding: 110px 0;
  background: #edf6f4;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 100px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 680px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-points {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-points span {
  min-height: 58px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  background: #f8fbfa;
  font-size: 12px;
  font-weight: 700;
}

.demo-form,
.auth-form {
  display: grid;
  gap: 17px;
}

.demo-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(11, 50, 57, 0.09);
}

.demo-form label,
.auth-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #c9d7d4;
  border-radius: 3px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #95a2a7;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #9db0ac;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(0, 127, 170, 0.11);
}

input.invalid,
select.invalid,
textarea.invalid {
  border-color: var(--rose);
}

.field-error {
  min-height: 14px;
  color: #a53f50;
  font-size: 10px;
  font-weight: 600;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 650;
}

.form-status.error {
  color: #a53f50;
}

.site-footer {
  padding: 72px 0 22px;
  color: #dfe9ea;
  background: #06131d;
}

.footer-grid {
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.footer-brand img {
  width: 175px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 340px;
  margin: 22px 0 0;
  color: #91a5ad;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links b {
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 12px;
}

.footer-links a {
  color: #91a5ad;
  font-size: 12px;
}

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

.footer-base {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #70868f;
  font-size: 10px;
}

/* Authentication */

.auth-page {
  min-height: 100vh;
  background: #f3f7f6;
}

.auth-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 76px;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.auth-header > div {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}

.auth-main {
  min-height: 100vh;
  padding-top: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(470px, 0.92fr);
}

.auth-context {
  position: sticky;
  top: 76px;
  height: calc(100vh - 76px);
  min-height: 670px;
  padding: 7vw;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #eaf3f1;
}

.auth-context::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 22, 31, 0.95) 0, rgba(5, 22, 31, 0.52) 48%, rgba(5, 22, 31, 0.02) 85%);
}

.auth-context-image {
  position: absolute;
  inset: 0;
  background: url("assets/images/molexio-discovery-hero.webp") center right / cover;
  transform: scale(1.02);
}

.auth-context-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--paper);
}

.auth-context-copy .eyebrow {
  color: #8ce4e5;
}

.auth-context-copy h1 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.02;
}

.auth-context-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: #c2d1d5;
  font-size: 16px;
}

.auth-proof {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auth-proof span {
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 2px;
  color: #d9e8e9;
  background: rgba(0,0,0,0.14);
  font-size: 10px;
}

.auth-form-wrap {
  min-height: calc(100vh - 76px);
  padding: 70px 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--paper);
}

.auth-form-content {
  width: min(100%, 430px);
}

.auth-form-content h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
}

.auth-intro {
  margin: 12px 0 30px;
  color: var(--muted);
  font-size: 14px;
}

.auth-message {
  margin: -12px 0 22px;
  padding: 12px 14px;
  border-left: 3px solid var(--green);
  color: #23623d;
  background: #e7f4ec;
  font-size: 12px;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 60px;
}

.password-field button {
  position: absolute;
  top: 50%;
  right: 9px;
  padding: 5px;
  border: 0;
  color: var(--cyan-deep);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transform: translateY(-50%);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.check-control {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 9px !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  cursor: pointer;
}

.check-control input {
  width: 16px;
  height: 16px;
  min-height: 0;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.check-control span {
  flex: 1;
}

.inline-button {
  padding: 0;
  border: 0;
  color: var(--cyan-deep);
  background: transparent;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.inline-button:hover {
  text-decoration: underline;
}

.back-button {
  margin-top: 22px;
}

.auth-divider {
  position: relative;
  margin: 25px 0;
  color: #91a0a5;
  font-size: 10px;
  text-align: center;
}

.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.auth-divider span {
  position: relative;
  padding: 0 12px;
  background: var(--paper);
}

.auth-switch {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.auth-switch a {
  color: var(--cyan-deep);
  font-weight: 750;
}

.signup-context {
  min-height: 820px;
}

.signup-form-wrap {
  padding-top: 48px;
  padding-bottom: 48px;
  align-items: flex-start;
}

.signup-form-wrap .auth-form-content {
  width: min(100%, 520px);
}

.signup-steps {
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  list-style: none;
  background: rgba(255,255,255,0.2);
}

.signup-steps li {
  min-width: 0;
  min-height: 110px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: rgba(5, 22, 31, 0.62);
}

.signup-steps li > span {
  color: #7bd8e1;
  font-size: 10px;
  font-weight: 800;
}

.signup-steps li div {
  display: flex;
  flex-direction: column;
}

.signup-steps b {
  font-size: 12px;
}

.signup-steps small {
  color: #a9bec4;
  font-size: 9px;
}

.strength-meter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.strength-meter i {
  height: 3px;
  background: var(--line);
}

.strength-meter[data-level="1"] i:nth-child(-n+1) { background: var(--rose); }
.strength-meter[data-level="2"] i:nth-child(-n+2) { background: var(--amber); }
.strength-meter[data-level="3"] i:nth-child(-n+3) { background: var(--cyan); }
.strength-meter[data-level="4"] i:nth-child(-n+4) { background: var(--green); }

.strength-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.terms-control {
  margin-top: 1px;
}

.terms-error {
  margin-top: -14px;
}

.solutions-section,
.faq-section {
  padding: 110px 0;
}

.solutions-section {
  color: var(--paper);
  background: #071d27;
}

.solutions-section .eyebrow {
  color: #78d9d2;
}

.solutions-section .section-heading > p,
.solution-card > p:not(.eyebrow) {
  color: #abc0c6;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.solution-card {
  min-height: 390px;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  background: #0a2631;
}

.solution-card h3 {
  margin: 12px 0 18px;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08;
}

.solution-card > p:not(.eyebrow) {
  margin: 0;
  font-size: 15px;
}

.solution-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 30px;
  color: #8be4dc;
  font-size: 13px;
  font-weight: 760;
}

.solution-card a:hover {
  color: #ffffff;
}

.faq-section {
  background: #f4f8f7;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 90px;
}

.faq-layout h2 {
  margin: 10px 0 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 760;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--teal);
  font-size: 26px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 42px 24px 0;
  color: var(--muted);
}

.seo-main {
  background: var(--paper);
}

.seo-hero {
  padding: 190px 0 105px;
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(4, 24, 34, 0.97) 0%, rgba(4, 31, 42, 0.9) 58%, rgba(4, 31, 42, 0.68) 100%),
    url("assets/images/molexio-discovery-hero.webp") center right / cover;
}

.breadcrumb {
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #a7c0c6;
  font-size: 12px;
}

.breadcrumb a {
  color: #8be4dc;
}

.seo-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.seo-lead {
  max-width: 780px;
  margin: 30px 0 0;
  color: #c5d5d9;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.5;
}

.keyword-chips {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-chips span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #d7e4e7;
  font-size: 11px;
  font-weight: 700;
}

.seo-section {
  padding: 100px 0;
}

.seo-section.alt {
  background: #f3f8f7;
}

.seo-narrow {
  max-width: 900px;
}

.seo-section h2 {
  max-width: 900px;
  margin: 0 0 28px;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.02;
}

.seo-section .section-intro {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.seo-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-card {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.seo-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.15;
}

.seo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.seo-steps {
  margin: 42px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  list-style: none;
  background: var(--line-strong);
}

.seo-steps li {
  min-height: 230px;
  padding: 30px;
  background: var(--paper);
}

.seo-steps span {
  display: block;
  margin-bottom: 45px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.seo-steps h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.seo-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.seo-callout {
  padding: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  color: var(--paper);
  background: #092630;
}

.seo-callout h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 56px);
}

.seo-callout p {
  max-width: 760px;
  margin: 0;
  color: #b5c8cd;
}

.related-solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.related-solutions a {
  color: var(--cyan-deep);
  font-weight: 760;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: 180px 1fr auto;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-background {
    opacity: 0.72;
    background-position: 58% center;
  }

  .workspace-body {
    grid-template-columns: 165px minmax(0, 1fr);
  }

  .decision-panel {
    display: none;
  }

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

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

  .solution-card:last-child,
  .seo-card:last-child {
    grid-column: 1 / -1;
  }

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

  .contact-layout,
  .evidence-layout {
    gap: 60px;
  }

  .auth-main {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  }

  .auth-context {
    padding: 54px;
  }

  .auth-form-wrap {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 860px) {
  .announcement {
    justify-content: space-between;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 6;
    display: block;
  }

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

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

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

  .main-nav {
    position: absolute;
    z-index: 5;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: calc(100vh - 110px);
    height: calc(100dvh - 110px);
    padding: 34px max(24px, env(safe-area-inset-right)) calc(34px + env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(7, 21, 33, 0.08);
  }

  .site-header.scrolled .main-nav {
    top: 100%;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
  }

  body.menu-open .site-header.scrolled {
    background: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 17px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .nav-actions {
    display: none;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero {
    min-height: calc(100svh - 150px);
    padding-top: 140px;
    align-items: flex-start;
  }

  .hero-background {
    background-position: 62% center;
    opacity: 0.46;
  }

  .hero-content::before {
    inset: -80px -80px auto -120px;
    width: auto;
    height: 700px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.98) 0, rgba(255,255,255,0.92) 58%, rgba(255,255,255,0) 100%);
  }

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

  .workflow-panel {
    grid-template-columns: 1fr;
  }

  .workflow-copy {
    padding: 55px 0 45px;
  }

  .workflow-visual {
    min-height: 460px;
  }

  .evidence-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .seo-callout {
    padding: 50px;
    grid-template-columns: 1fr;
  }

  .deployment-options {
    grid-template-columns: 1fr;
  }

  .deployment-options article,
  .deployment-options article + article {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .deployment-options article:last-child {
    border-bottom: 0;
  }

  .deployment-options h3 {
    margin-top: 20px;
  }

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

  .role-strip > div:nth-child(2) {
    border-right: 0;
  }

  .role-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .auth-main {
    display: block;
  }

  .auth-context {
    position: relative;
    top: auto;
    height: auto;
    min-height: 520px;
    padding: 70px 48px;
  }

  .auth-form-wrap {
    min-height: 0;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .signup-context {
    min-height: 620px;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .hero-content {
    width: min(100% - 30px, var(--max));
  }

  .announcement {
    justify-content: center;
    min-height: 38px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 10px;
  }

  .announcement > span {
    display: none;
  }

  .site-header {
    top: 38px;
  }

  .nav-shell {
    width: calc(100% - 30px);
    min-height: 68px;
  }

  .brand-link img {
    width: 138px;
  }

  .main-nav {
    top: 100%;
    height: calc(100vh - 106px);
    height: calc(100dvh - 106px);
  }

  .site-header.scrolled .main-nav {
    top: 100%;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
  }

  .hero {
    min-height: calc(100svh - 150px);
    padding-top: 124px;
  }

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

  .hero-claim {
    font-size: 31px;
  }

  .hero-copy {
    font-size: 16px;
  }

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

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

  .hero-facts {
    display: none;
  }

  .product-band,
  .platform-section,
  .workflow-section,
  .deployment-section,
  .roles-section,
  .contact-section,
  .evidence-section,
  .solutions-section,
  .faq-section,
  .seo-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .solution-grid,
  .seo-grid,
  .seo-steps {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .seo-card,
  .seo-card:last-child {
    grid-column: auto;
  }

  .solution-card {
    min-height: 330px;
    padding: 34px 26px;
  }

  .seo-hero {
    padding: 135px 0 78px;
  }

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

  .seo-lead {
    font-size: 18px;
  }

  .seo-steps li {
    min-height: 0;
  }

  .seo-steps span {
    margin-bottom: 28px;
  }

  .seo-callout {
    padding: 38px 24px;
  }

  .product-band {
    padding-top: 46px;
  }

  .section-heading h2,
  .evidence-copy h2,
  .deployment-layout h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .workspace-preview {
    min-height: 520px;
  }

  .workspace-topbar {
    grid-template-columns: 1fr auto;
  }

  .workspace-context {
    display: none;
  }

  .workspace-body {
    min-height: 458px;
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    display: none;
  }

  .workspace-main {
    padding: 24px 14px;
  }

  .workspace-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .candidate-row {
    min-height: 72px;
    grid-template-columns: 1.2fr 0.8fr 0.7fr;
  }

  .candidate-row span:nth-child(2),
  .candidate-row span:nth-child(4) {
    display: none;
  }

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

  .capability-card {
    min-height: 245px;
  }

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

  .workflow-panel,
  .workflow-stage {
    min-height: 0;
  }

  .workflow-visual {
    min-height: 390px;
  }

  .graph-node {
    width: 122px;
    min-height: 64px;
  }

  .plant-node { top: 42px; left: 18px; }
  .compound-node { top: 152px; left: 110px; }
  .target-node { top: 48px; right: 16px; }
  .disease-node { right: 20px; bottom: 42px; }
  .graph-line { display: none; }

  .ring-three {
    width: 290px;
    height: 290px;
  }

  .design-node { top: 42px; }
  .make-node { right: 16px; }
  .test-node { bottom: 42px; }
  .analyze-node { left: 16px; }
  .cycle-arrow { display: none; }

  .evidence-row {
    grid-template-columns: 30px 1fr;
  }

  .evidence-row em {
    grid-column: 2;
  }

  .role-strip,
  .contact-points {
    grid-template-columns: 1fr;
  }

  .role-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .role-strip > div:last-child {
    border-bottom: 0;
  }

  .demo-form {
    padding: 24px 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 48px;
  }

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

  .footer-base {
    flex-direction: column;
  }

  .auth-header {
    min-height: 68px;
    padding: 0 15px;
  }

  .auth-header > div span {
    display: none;
  }

  .auth-main {
    padding-top: 68px;
  }

  .auth-context {
    min-height: 470px;
    padding: 52px 22px;
  }

  .auth-context-copy h1 {
    font-size: 38px;
  }

  .auth-proof {
    display: grid;
  }

  .auth-form-wrap {
    padding: 58px 22px;
  }

  .auth-form-content h2 {
    font-size: 31px;
  }

  .signup-steps {
    grid-template-columns: 1fr;
  }

  .signup-steps li {
    min-height: 74px;
    flex-direction: row;
  }
}

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

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