:root {
  color-scheme: dark;
  --bg: #070b0b;
  --bg-soft: #0a1110;
  --surface: #0d1514;
  --surface-raised: #111d1b;
  --surface-bright: #172623;
  --line: rgba(164, 205, 193, 0.14);
  --line-strong: rgba(100, 232, 206, 0.28);
  --text: #edf3f1;
  --text-soft: #b1c1bc;
  --muted: #82938e;
  --teal: #58dfc6;
  --teal-bright: #7af0da;
  --teal-deep: #1d8e7d;
  --gold: #e8b74e;
  --gold-bright: #ffe08a;
  --gold-deep: #9d6a1d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --content: 1220px;
  --radius: 26px;
  --radius-small: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% -5%, rgba(38, 121, 104, 0.15), transparent 34rem),
    radial-gradient(circle at 18% 30%, rgba(57, 119, 108, 0.06), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
}

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

.site-header {
  position: relative;
  z-index: 20;
  width: min(calc(100% - 48px), var(--content));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal);
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  width: min(calc(100% - 48px), var(--content));
  min-height: 730px;
  margin: 0 auto;
  padding: 106px 0 100px;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(540px, 1.13fr);
  align-items: center;
  gap: 62px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 52%;
  left: 42%;
  width: 620px;
  height: 620px;
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 120, 103, 0.09), transparent 67%);
  filter: blur(8px);
}

.status-pill {
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(91, 222, 196, 0.24);
  border-radius: 999px;
  background: rgba(24, 62, 56, 0.36);
  color: #cde9e2;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(232, 183, 78, 0.58);
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 26px;
  font-size: clamp(3.7rem, 5.9vw, 6.2rem);
  font-weight: 730;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.55vw, 1.27rem);
  line-height: 1.65;
}

.hero-actions {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.9rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: #06100e;
  box-shadow: 0 12px 34px rgba(60, 190, 165, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-bright);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(16, 31, 29, 0.72);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(100, 232, 206, 0.48);
  background: var(--surface-bright);
}

.hero-note {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.lab-preview {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(114, 183, 167, 0.22);
  border-radius: 24px;
  background: rgba(8, 15, 14, 0.94);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lab-preview::before {
  position: absolute;
  z-index: 0;
  top: -120px;
  right: -90px;
  width: 420px;
  height: 420px;
  content: "";
  border-radius: 50%;
  background: rgba(46, 184, 157, 0.07);
  filter: blur(55px);
  pointer-events: none;
}

.window-bar {
  position: relative;
  z-index: 1;
  height: 48px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: #9fb0ab;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #38504b;
}

.window-dots i:nth-child(1) {
  background: #8a5c38;
}

.window-dots i:nth-child(2) {
  background: #8d772f;
}

.window-dots i:nth-child(3) {
  background: #34705f;
}

.window-mode {
  justify-self: end;
  color: #6e847e;
}

.preview-body {
  position: relative;
  z-index: 1;
  min-height: 516px;
  display: grid;
  grid-template-columns: 80px 1fr;
}

.preview-sidebar {
  padding: 18px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
  background: rgba(6, 12, 11, 0.72);
}

.preview-sidebar img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  object-fit: contain;
}

.side-line {
  width: 42px;
  height: 7px;
  display: block;
  border-radius: 999px;
  background: #25322f;
}

.side-line.short {
  width: 30px;
}

.side-line.active {
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
  box-shadow: 0 0 14px rgba(65, 218, 190, 0.14);
}

.side-space {
  flex: 1;
}

.preview-workspace {
  min-width: 0;
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
}

.preview-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.preview-heading > div {
  min-width: 0;
  display: grid;
}

.preview-kicker {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preview-heading strong {
  overflow: hidden;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-duration {
  color: #c9d5d1;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.signal-stage {
  margin: 12px -6px 0;
  border-bottom: 1px solid rgba(105, 155, 144, 0.11);
}

.signal-stage svg {
  width: 100%;
  height: 155px;
}

.timeline {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1.15fr 3fr 1.1fr;
  gap: 4px;
}

.timeline-label {
  color: #79908a;
  font-size: 0.58rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.timeline-track {
  position: relative;
  height: 36px;
  margin-top: 7px;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1.15fr 3fr 1.1fr;
  gap: 4px;
}

.segment {
  border-radius: 7px;
}

.segment.settle {
  background: rgba(72, 142, 128, 0.36);
}

.segment.descend {
  background: rgba(55, 178, 155, 0.45);
}

.segment.hold {
  background:
    linear-gradient(90deg, rgba(50, 130, 116, 0.52), rgba(38, 103, 94, 0.35)),
    #132421;
}

.segment.return {
  background: rgba(87, 174, 155, 0.38);
}

.lantern {
  position: absolute;
  top: 9px;
  width: 3px;
  height: 18px;
  border-radius: 3px;
  background: var(--gold-bright);
  box-shadow:
    0 0 0 3px rgba(235, 185, 76, 0.09),
    0 0 18px rgba(235, 185, 76, 0.72);
}

.lantern.l1 {
  left: 42%;
}

.lantern.l2 {
  left: 55%;
}

.lantern.l3 {
  left: 68%;
}

.lantern.l4 {
  left: 78%;
}

.preview-footer {
  margin-top: auto;
  padding-top: 23px;
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(105, 155, 144, 0.11);
}

.artifact-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.artifact-path span {
  color: #91a59f;
  font-size: 0.58rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.artifact-path i {
  min-width: 14px;
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(84, 223, 197, 0.16), rgba(84, 223, 197, 0.48));
}

.mix-readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mix-readout > span {
  display: grid;
  gap: 7px;
}

.mix-readout b {
  color: #6f827d;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mix-readout i {
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #24312f;
}

.mix-readout i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  content: "";
  background: linear-gradient(90deg, #258d7c, var(--teal));
}

.lab-preview figcaption {
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  background: rgba(8, 16, 15, 0.94);
  color: #60736e;
  font-size: 0.65rem;
  text-align: center;
}

.proof-strip {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 0 0 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.proof-strip > div {
  min-height: 82px;
  padding: 13px 28px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
}

.proof-strip > div:first-child {
  padding-left: 0;
}

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

.proof-strip strong {
  margin-bottom: 2px;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 124px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 60px;
}

.section-heading.compact {
  max-width: 790px;
}

.section-kicker,
.card-label {
  margin-bottom: 17px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2,
.closing-section h2 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 690;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-heading > p:last-child,
.bundle-copy > p,
.boundary-copy > p,
.records-copy p,
.safety-section > div:last-child p,
.closing-section > p:not(.section-kicker) {
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.72;
}

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

.process-grid article {
  min-height: 314px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background:
    linear-gradient(160deg, rgba(24, 46, 42, 0.38), rgba(10, 17, 16, 0.78)),
    var(--surface);
}

.step-number,
.card-index {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-grid h3 {
  margin-top: auto;
  margin-bottom: 13px;
  font-size: 1.23rem;
  letter-spacing: -0.025em;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.workspace-section {
  position: relative;
}

.workspace-section::before {
  position: absolute;
  z-index: -1;
  top: 40%;
  right: 10%;
  width: 520px;
  height: 520px;
  content: "";
  border-radius: 50%;
  background: rgba(44, 146, 126, 0.045);
  filter: blur(50px);
}

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

.workspace-card {
  position: relative;
  min-height: 460px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.workspace-card::before {
  position: absolute;
  top: -90px;
  right: -85px;
  width: 240px;
  height: 240px;
  content: "";
  border-radius: 50%;
  background: rgba(77, 218, 192, 0.06);
  filter: blur(24px);
}

.workspace-card.ai-card::before {
  background: rgba(230, 178, 74, 0.07);
}

.workspace-card .card-index {
  position: absolute;
  top: 31px;
  right: 31px;
}

.workspace-card .card-label {
  margin-top: 70px;
  margin-bottom: 13px;
}

.workspace-card h3 {
  max-width: 320px;
  margin-bottom: 18px;
  font-size: 1.62rem;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.workspace-card > p:not(.card-label) {
  color: var(--text-soft);
  font-size: 0.91rem;
}

.workspace-card ul {
  margin: 28px 0 0;
  padding: 22px 0 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  list-style: none;
}

.workspace-card li {
  position: relative;
  padding-left: 17px;
}

.workspace-card li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(88, 223, 198, 0.26);
}

.bundle-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 90px;
}

.bundle-copy h2 {
  font-size: clamp(2.45rem, 4.3vw, 4.2rem);
}

.bundle-copy > p {
  max-width: 580px;
}

.bundle-copy > p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.bundle-diagram {
  margin: 0;
  padding: 22px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 100%, rgba(49, 160, 139, 0.08), transparent 44%),
    rgba(11, 19, 18, 0.75);
  list-style: none;
}

.bundle-diagram li {
  min-height: 94px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(139, 185, 173, 0.1);
  border-radius: 13px;
  background: rgba(19, 31, 29, 0.68);
}

.bundle-diagram li.bundle-final {
  border-color: rgba(98, 228, 203, 0.28);
  background:
    linear-gradient(90deg, rgba(26, 91, 80, 0.24), rgba(20, 34, 31, 0.78)),
    var(--surface-raised);
}

.bundle-diagram li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(109, 223, 201, 0.2);
  border-radius: 50%;
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
}

.bundle-diagram li.bundle-final > span {
  border-color: rgba(235, 186, 78, 0.36);
  color: var(--gold-bright);
}

.bundle-diagram p,
.bundle-diagram small {
  margin: 0;
}

.bundle-diagram p {
  font-size: 1rem;
  font-weight: 720;
}

.bundle-diagram small {
  color: var(--muted);
  font-size: 0.77rem;
}

.library-section {
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.library-section .section-heading {
  margin-bottom: 0;
}

.family-cloud {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 11px;
  list-style: none;
}

.family-cloud li {
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 27, 25, 0.72);
  color: #a9bbb5;
  font-size: 0.84rem;
  font-weight: 660;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.family-cloud li:nth-child(3),
.family-cloud li:nth-child(6) {
  border-color: rgba(92, 223, 198, 0.28);
  color: #d4eae5;
}

.family-cloud li:nth-child(5) {
  border-color: rgba(232, 183, 78, 0.3);
  color: #e9d7ae;
}

.boundary-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.boundary-visual {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.boundary-ring {
  position: absolute;
  border: 1px solid rgba(105, 220, 198, 0.14);
  border-radius: 50%;
}

.ring-one {
  inset: 8%;
}

.ring-two {
  inset: 22%;
  border-color: rgba(105, 220, 198, 0.22);
}

.ring-three {
  inset: 36%;
  border-color: rgba(235, 186, 78, 0.28);
}

.boundary-core {
  z-index: 2;
  width: 124px;
  height: 124px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(99, 232, 206, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 35%, rgba(89, 226, 200, 0.18), transparent 62%),
    #0d1c19;
  box-shadow:
    0 0 0 20px rgba(55, 143, 126, 0.035),
    0 0 50px rgba(52, 173, 149, 0.12);
  text-align: center;
}

.boundary-core span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boundary-core strong {
  font-size: 1.27rem;
  letter-spacing: -0.03em;
}

.boundary-label {
  position: absolute;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 16, 15, 0.92);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.boundary-label.provider {
  top: 8%;
  left: 14%;
}

.boundary-label.files {
  right: 4%;
  bottom: 21%;
}

.boundary-label.voice {
  bottom: 6%;
  left: 15%;
}

.boundary-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.9rem);
}

.text-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.records-section,
.safety-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.records-section h2,
.safety-section h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
}

.records-copy p:first-child,
.safety-section > div:last-child p:first-child {
  margin-top: 3px;
}

.records-copy p:last-child {
  color: #8fa39d;
}

.release-section {
  position: relative;
  padding-top: 136px;
}

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

.platform-card {
  min-height: 380px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.platform-primary {
  border-color: rgba(94, 225, 200, 0.27);
  background:
    radial-gradient(circle at 100% 0, rgba(52, 170, 146, 0.1), transparent 45%),
    var(--surface);
}

.platform-topline {
  margin-bottom: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.platform-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #182320;
  color: #eef5f2;
  font-size: 1.45rem;
  font-weight: 400;
}

.windows-icon {
  position: relative;
}

.windows-icon::before {
  width: 19px;
  height: 19px;
  content: "";
  background:
    linear-gradient(90deg, transparent 46%, #d5e0dc 46%, #d5e0dc 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, #d5e0dc 46%, #d5e0dc 54%, transparent 54%);
}

.platform-status {
  padding: 6px 10px;
  border: 1px solid rgba(91, 222, 196, 0.23);
  border-radius: 999px;
  background: rgba(30, 86, 75, 0.26);
  color: #b9dfd6;
  font-size: 0.68rem;
  font-weight: 750;
}

.platform-status.future {
  border-color: var(--line);
  background: rgba(32, 45, 42, 0.5);
  color: var(--muted);
}

.platform-card .card-label {
  margin-bottom: 9px;
}

.platform-card h3 {
  margin-bottom: 16px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.platform-card > p:not(.card-label) {
  max-width: 530px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.platform-action {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.release-boundary {
  margin: 24px 0 0;
  color: #798c86;
  font-size: 0.78rem;
  text-align: center;
}

.safety-section {
  border-bottom: 0;
}

.safety-section > div:last-child {
  padding: 30px;
  border: 1px solid rgba(226, 183, 90, 0.17);
  border-radius: var(--radius-small);
  background: rgba(32, 27, 18, 0.25);
}

.closing-section {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto 48px;
  padding: 110px 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% -20%, rgba(65, 197, 172, 0.17), transparent 46%),
    linear-gradient(160deg, rgba(22, 45, 41, 0.58), rgba(8, 14, 13, 0.96));
  text-align: center;
}

.closing-section img {
  width: 114px;
  height: 114px;
  margin-bottom: 28px;
  object-fit: contain;
}

.closing-section h2 {
  max-width: 700px;
}

.closing-section > p:not(.section-kicker) {
  max-width: 680px;
  margin-bottom: 30px;
}

.site-footer {
  width: min(calc(100% - 48px), var(--content));
  min-height: 210px;
  margin: 0 auto;
  padding: 45px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.footer-brand > span {
  display: grid;
  line-height: 1.15;
}

.footer-brand strong {
  font-size: 0.94rem;
}

.footer-brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--teal);
}

.site-footer > p {
  margin: 0;
  grid-column: 1 / -1;
  color: #62746f;
  font-size: 0.7rem;
}

/* Interior pages */

.interior-body {
  background:
    radial-gradient(circle at 60% -10%, rgba(38, 121, 104, 0.14), transparent 36rem),
    var(--bg);
}

.interior-main {
  width: min(calc(100% - 48px), 940px);
  margin: 0 auto;
  padding: 104px 0 132px;
}

.interior-hero {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

.interior-hero .status-pill {
  margin-bottom: 24px;
}

.interior-hero h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.interior-hero > p:not(.status-pill) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 1.12rem;
}

.interior-content {
  padding-top: 68px;
}

.content-section {
  padding: 0 0 58px;
}

.content-section + .content-section {
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.content-section h2 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.content-section h3 {
  margin: 31px 0 10px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.content-section p,
.content-section li {
  color: var(--text-soft);
}

.content-section ul {
  margin: 17px 0 0;
  padding-left: 1.25rem;
}

.content-section li + li {
  margin-top: 9px;
}

.callout {
  margin: 12px 0 58px;
  padding: 24px 26px;
  border: 1px solid rgba(95, 222, 197, 0.2);
  border-radius: var(--radius-small);
  background: rgba(24, 62, 55, 0.25);
  color: #c8ddd7;
}

.callout strong {
  color: var(--text);
}

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

.support-card {
  min-height: 230px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.support-card h2 {
  margin-bottom: 13px;
  font-size: 1.36rem;
  letter-spacing: -0.03em;
}

.support-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.support-contact {
  margin-top: 56px;
  padding: 38px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(65, 188, 164, 0.1), transparent 50%),
    var(--surface);
}

.support-contact h2 {
  margin-bottom: 13px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.support-contact p {
  max-width: 650px;
  color: var(--text-soft);
}

.support-contact a {
  color: var(--teal);
  font-weight: 750;
}

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

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

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

  .lab-preview {
    width: min(100%, 800px);
    justify-self: center;
  }

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

  .process-grid article {
    min-height: 270px;
  }

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

  .workspace-card {
    min-height: 390px;
  }

  .workspace-card h3 {
    max-width: 560px;
  }

  .bundle-section,
  .library-section,
  .boundary-section,
  .records-section,
  .safety-section {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .library-section {
    min-height: auto;
  }

  .family-cloud {
    justify-content: flex-start;
  }

  .boundary-visual {
    width: min(80vw, 480px);
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
  }

  .nav-links {
    max-width: 430px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 20px;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 82px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 12vw, 5.3rem);
  }

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

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

  .proof-strip > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .proof-strip > div:nth-child(3) {
    padding-left: 0;
  }

  .release-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .proof-strip,
  .section,
  .closing-section,
  .site-footer,
  .interior-main {
    width: min(calc(100% - 32px), var(--content));
  }

  .site-header {
    align-items: center;
  }

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

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy span {
    font-size: 0.57rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 82px;
    gap: 54px;
  }

  .status-pill {
    max-width: 100%;
    font-size: 0.67rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
    line-height: 0.96;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .preview-body {
    grid-template-columns: 48px 1fr;
    min-height: 420px;
  }

  .preview-sidebar {
    padding: 13px 8px;
  }

  .preview-sidebar img {
    width: 32px;
    height: 32px;
  }

  .side-line {
    width: 27px;
    height: 5px;
  }

  .side-line.short {
    width: 20px;
  }

  .preview-workspace {
    padding: 20px 15px 16px;
  }

  .preview-heading strong {
    max-width: 188px;
    font-size: 0.77rem;
  }

  .signal-stage svg {
    height: 120px;
  }

  .timeline-label {
    font-size: 0.48rem;
  }

  .artifact-path {
    display: grid;
    grid-template-columns: 1fr 12px 1fr 12px 1fr 12px 0.7fr;
  }

  .artifact-path span {
    font-size: 0.44rem;
    text-align: center;
  }

  .mix-readout {
    gap: 9px;
  }

  .proof-strip {
    padding-bottom: 24px;
  }

  .proof-strip > div {
    min-height: 74px;
    padding: 12px 17px;
  }

  .proof-strip strong {
    font-size: 0.84rem;
  }

  .proof-strip span {
    font-size: 0.68rem;
  }

  .section {
    padding: 90px 0;
  }

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

  .section h2,
  .closing-section h2 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

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

  .process-grid article {
    min-height: 235px;
  }

  .workspace-card {
    min-height: auto;
    padding: 25px;
  }

  .workspace-card .card-index {
    top: 25px;
    right: 25px;
  }

  .workspace-card .card-label {
    margin-top: 54px;
  }

  .bundle-diagram {
    padding: 10px;
  }

  .bundle-diagram article {
    padding: 16px;
  }

  .family-cloud {
    gap: 8px;
  }

  .family-cloud li {
    padding: 10px 13px;
    font-size: 0.72rem;
  }

  .boundary-visual {
    width: 100%;
  }

  .boundary-label {
    font-size: 0.58rem;
  }

  .records-section,
  .safety-section {
    gap: 28px;
  }

  .platform-card {
    min-height: 355px;
    padding: 27px;
  }

  .closing-section {
    margin-bottom: 32px;
    padding: 78px 22px;
  }

  .site-footer {
    min-height: 250px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .interior-main {
    padding: 74px 0 100px;
  }

  .interior-hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .support-contact {
    padding: 28px;
  }
}

@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;
  }
}
