:root {
  color-scheme: light;
  --ink: #14221d;
  --muted: #66736d;
  --line: #d9e4de;
  --paper: #f7faf8;
  --white: #ffffff;
  --green: #0f8a5f;
  --green-dark: #075238;
  --teal: #0e7490;
  --blue: #315d8d;
  --gold: #b7791f;
  --night: #0b1713;
  --night-2: #10231d;
  --radius: 8px;
  --shadow: 0 18px 60px rgba(14, 42, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 250, 248, 0.92);
  border-bottom: 1px solid rgba(217, 228, 222, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(145deg, var(--green), var(--blue));
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark.logo-mark {
  background: #fff;
  border: 1px solid rgba(217, 228, 222, 0.9);
  box-shadow: 0 6px 18px rgba(14, 42, 32, 0.08);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #314139;
}

.site-nav a {
  text-decoration: none;
}

.nav-link,
.nav-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  color: #314139;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.nav-link:hover,
.nav-button:hover,
.nav-item:focus-within .nav-button {
  background: #edf5f1;
}

.nav-button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-item {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: none;
  min-width: 280px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
  display: grid;
  gap: 4px;
}

.nav-menu.wide {
  min-width: 430px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-menu a {
  display: block;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
}

.nav-menu a:hover {
  background: #f2f7f4;
}

.nav-menu strong,
.nav-menu span {
  display: block;
}

.nav-menu strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.nav-menu span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  min-height: min(760px, calc(100vh - 96px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(26px, 4vw, 48px) clamp(18px, 6vw, 84px) 26px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 243, 0.82)),
    url("assets/platform-preview.svg");
  background-size: cover;
  background-position: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 5.6vw, 5.45rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  color: #40534a;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.58;
}

.hero-actions,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.proof-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: #42544b;
  font-size: 0.84rem;
}

.page-hero {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 84px);
  background: linear-gradient(130deg, #ffffff, #edf7f2);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.65;
}

.home-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.home-links a {
  min-height: 170px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  text-align: left;
}

.home-links small {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 8px;
  color: var(--green-dark);
  background: #e7f3ed;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-links strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.25;
}

.home-links span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.home-links em {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--green-dark);
  font-style: normal;
  font-weight: 800;
}

.home-links em::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-visual {
  min-width: 0;
}

.product-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: #0d1815;
  box-shadow: var(--shadow);
}

.window-bar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #aab8b1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6d7b75;
}

.window-bar span:first-child {
  background: #d66b62;
}

.window-bar span:nth-child(2) {
  background: #d1a44b;
}

.window-bar span:nth-child(3) {
  background: #4aab70;
}

.window-bar p {
  margin: 0 0 0 auto;
  font-size: 0.76rem;
}

.console-grid {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 430px;
}

.rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 12px;
  color: #c5d6ce;
  background: #09110f;
}

.rail b {
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 0.1em;
}

.rail a {
  padding: 9px 10px;
  border-radius: 8px;
  color: #8da59a;
  font-size: 0.78rem;
}

.rail .active {
  color: #fff;
  background: rgba(16, 138, 95, 0.28);
}

.workbench {
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(17, 48, 38, 0.9), rgba(10, 24, 20, 0.95));
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-strip div,
.answer-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-strip div {
  padding: 9px;
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: #fff;
  font-size: 1.12rem;
}

.metric-strip span {
  color: #91aaa0;
  font-size: 0.68rem;
  margin-top: 3px;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.pipeline div {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #d9f5e8;
  font-weight: 800;
  background: linear-gradient(145deg, rgba(15, 138, 95, 0.34), rgba(49, 93, 141, 0.26));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.answer-card {
  padding: 14px;
  color: #dce9e3;
}

.answer-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.answer-head strong {
  color: #7ee0ad;
}

.answer-card p {
  color: #b7cac1;
  font-size: 0.92rem;
  line-height: 1.48;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-list span {
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #d5e9df;
  font-size: 0.7rem;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 84px);
}

.intro-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.compact {
  max-width: 760px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.section-heading.compact p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.vision-section {
  background: linear-gradient(145deg, #081613, #0f2a23);
  color: #eff8f3;
}

.vision-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.vision-label h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1;
}

.vision-copy {
  display: grid;
  gap: 18px;
}

.vision-copy p {
  margin-bottom: 0;
  color: #c9dcd4;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.78;
}

.adar-grid,
.feature-matrix,
.vertical-grid,
.sports-grid,
.demo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.adar-grid article,
.feature-matrix article,
.vertical-grid article,
.sports-grid article,
.demo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.adar-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.adar-grid h3,
.feature-matrix h3,
.vertical-grid h3,
.sports-grid h3,
.demo-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.adar-grid p,
.feature-matrix p,
.vertical-grid p,
.sports-grid p,
.demo-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
  text-align: left;
}

.dark-section {
  color: #eff8f3;
  background: linear-gradient(160deg, var(--night), var(--night-2));
}

.dark-section .section-heading p:not(.eyebrow),
.dark-section .feature-matrix p,
.dark-section .demo-card p {
  color: #a9b9b1;
}

.dark-section .feature-matrix article,
.dark-section .demo-card {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-matrix,
.vertical-grid,
.sports-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.patterns-section {
  background: #edf5f1;
}

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

.pattern-grid article,
.mini-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.pattern-grid h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.pattern-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.sports-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sports-grid article {
  background: #f8fbf9;
}

.sports-grid article:first-child {
  color: #eff8f3;
  background: linear-gradient(145deg, var(--green-dark), var(--blue));
  border-color: transparent;
}

.sports-grid article:first-child p {
  color: #d8ebe2;
}

.sports-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.sports-flow span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  color: var(--green-dark);
  background: #e9f4ef;
  border: 1px solid var(--line);
  font-weight: 800;
  line-height: 1.35;
}

.healthcare-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

.healthcare-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.healthcare-flow article {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f8fbf9;
}

.healthcare-flow article:first-child {
  color: #eff8f3;
  background: linear-gradient(145deg, var(--green-dark), var(--teal));
  border-color: transparent;
}

.healthcare-flow article:first-child p,
.healthcare-flow article:first-child span {
  color: #d8ebe2;
}

.healthcare-flow span {
  display: block;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.healthcare-flow h3 {
  margin-bottom: 10px;
}

.healthcare-flow p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.healthcare-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
}

.healthcare-panel,
.healthcare-personas article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.healthcare-panel {
  padding: 24px;
}

.healthcare-panel h3 {
  margin-bottom: 14px;
}

.healthcare-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.healthcare-panel li + li {
  margin-top: 8px;
}

.healthcare-personas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.healthcare-personas article {
  padding: 18px;
}

.healthcare-personas strong,
.healthcare-personas span {
  display: block;
}

.healthcare-personas strong {
  margin-bottom: 8px;
  color: var(--green-dark);
}

.healthcare-personas span {
  color: var(--muted);
  line-height: 1.55;
}

.healthcare-note {
  margin: 16px 0 0;
  padding: 16px;
  border: 1px solid #c7ded3;
  border-radius: 8px;
  color: #315145;
  background: #eef7f2;
  line-height: 1.6;
}

.restaurant-section {
  background: #f8fbf9;
}

.ops-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
  gap: 16px;
  margin-bottom: 16px;
}

.ops-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  padding: 28px;
  border-radius: 8px;
  color: #eff8f3;
  background: linear-gradient(145deg, var(--green-dark), var(--blue));
}

.ops-card h3 {
  margin-bottom: 16px;
}

.ops-card p {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.45;
}

.ops-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ops-steps span {
  display: flex;
  align-items: center;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  background: #fff;
  font-weight: 800;
  line-height: 1.42;
}

.mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid strong {
  color: var(--green-dark);
  margin-bottom: 8px;
}

.mini-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.architecture {
  background: #fff;
}

.architecture-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.arch-node,
.arch-arrow {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
}

.arch-node {
  color: #fff;
  background: var(--green-dark);
  font-weight: 800;
}

.arch-node span {
  display: block;
  margin-top: 6px;
  color: #bdd9cd;
  font-size: 0.78rem;
  font-weight: 500;
}

.arch-node.muted {
  color: var(--ink);
  background: #eef5f1;
  border: 1px solid var(--line);
}

.arch-node.muted span {
  color: var(--muted);
}

.arch-arrow {
  color: var(--green-dark);
  background: #dcebe4;
  font-weight: 800;
}

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

.scale-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf9;
}

.scale-grid h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.scale-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.outcomes {
  background: #edf5f1;
}

.content-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.content-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.content-list strong {
  color: var(--green-dark);
}

.content-list span {
  color: var(--muted);
}

.demo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.demo-lab-section {
  padding-top: clamp(34px, 5vw, 64px);
}

.demo-lab {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
}

.demo-picker {
  display: grid;
  gap: 10px;
  align-content: start;
}

.demo-select {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #eff8f3;
  background: rgba(255, 255, 255, 0.055);
  text-align: left;
  cursor: pointer;
}

.demo-select:hover,
.demo-select.active {
  border-color: rgba(126, 224, 173, 0.55);
  background: rgba(126, 224, 173, 0.12);
}

.demo-select span {
  color: #7ee0ad;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-select strong {
  font-size: 1.04rem;
}

.demo-select small {
  color: #a9b9b1;
  font-size: 0.86rem;
  line-height: 1.48;
}

.demo-stage {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #07110f;
  box-shadow: var(--shadow);
}

.demo-stage-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-stage-bar strong,
.demo-stage-bar span {
  display: block;
}

.demo-stage-bar strong {
  color: #fff;
  margin-top: 4px;
}

.demo-status {
  color: #7ee0ad;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-stage .button.secondary {
  min-height: 38px;
  color: #eff8f3;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.demo-stage iframe {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  min-height: 560px;
  border: 0;
  background: #fff;
}

.demo-frame-note {
  margin: 0;
  padding: 12px 14px;
  color: #a9b9b1;
  font-size: 0.85rem;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-card {
  display: block;
  min-height: 220px;
  text-decoration: none;
}

.demo-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: #7ee0ad;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: clamp(48px, 8vw, 88px) clamp(18px, 6vw, 84px);
  background: #fff;
}

.cta-section h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 6vw, 84px);
  color: #aebdb6;
  background: var(--night);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  text-decoration: none;
}

@media (min-width: 761px) {
  .split-copy p,
  .vision-copy p,
  .healthcare-note {
    text-align: justify;
    text-justify: inter-word;
  }

  .hero-lead,
  .page-hero p:not(.eyebrow),
  .section-heading.compact p:not(.eyebrow) {
    text-align: center;
  }
}

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

  .hero-visual {
    max-width: 820px;
  }

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

  .demo-lab {
    grid-template-columns: 1fr;
  }

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

  .feature-matrix,
  .vertical-grid,
  .sports-grid,
  .pattern-grid,
  .healthcare-flow,
  .healthcare-personas,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-link,
  .nav-button {
    justify-content: space-between;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-menu,
  .nav-menu.wide {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    margin-top: 6px;
    box-shadow: none;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .console-grid,
  .split-copy,
  .vision-card,
  .content-list div {
    grid-template-columns: 1fr;
  }

  .rail {
    display: none;
  }

  .metric-strip,
  .pipeline,
  .home-links,
  .adar-grid,
  .feature-matrix,
  .vertical-grid,
  .sports-grid,
  .pattern-grid,
  .sports-flow,
  .healthcare-flow,
  .healthcare-layout,
  .healthcare-personas,
  .ops-layout,
  .ops-steps,
  .mini-grid,
  .demo-grid,
  .demo-picker,
  .architecture-map,
  .scale-grid {
    grid-template-columns: 1fr;
  }

  .demo-stage-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .demo-stage .button.secondary {
    width: 100%;
  }

  .demo-stage iframe {
    height: 68vh;
    min-height: 480px;
  }

  .cta-section,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
