:root {
  color-scheme: dark;
  --bg: #10100e;
  --bg-2: #171612;
  --surface: #1e1c17;
  --surface-2: #28241d;
  --paper: #f4efe4;
  --paper-muted: #cfc5b4;
  --text: #f7f0e5;
  --muted: #b9ad9b;
  --line: #403a30;
  --line-soft: rgb(244 239 228 / 0.14);
  --accent: #65d8c2;
  --accent-strong: #9df3df;
  --accent-warm: #f1ae63;
  --shadow: 0 28px 90px rgb(0 0 0 / 0.38);
  font-family:
    "Geist",
    "Aptos",
    "Segoe UI Variable",
    "Segoe UI",
    system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100dvh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, #11100e 0%, #16130f 56%, #0f0f0d 100%),
    var(--bg);
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.035) 1px, transparent 1px),
    repeating-linear-gradient(135deg, rgb(255 255 255 / 0.035) 0 1px, transparent 1px 7px);
  background-size:
    64px 64px,
    64px 64px,
    18px 18px;
  opacity: 0.42;
}

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

button {
  font: inherit;
}

canvas {
  display: block;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 40;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--paper);
  color: var(--bg);
  font-weight: 750;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 12px 0 0;
  background: linear-gradient(180deg, rgb(16 16 14 / 0.94), rgb(16 16 14 / 0));
}

.site-nav,
.section-inner,
.content-inner,
.footer-inner {
  width: min(1480px, calc(100% - 48px));
  margin-inline: auto;
}

.site-nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0 14px;
  background: rgb(30 28 23 / 0.74);
  box-shadow: 0 18px 60px rgb(0 0 0 / 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  font-weight: 780;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgb(101 216 194 / 0.54);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(101 216 194 / 0.22), rgb(241 174 99 / 0.12)),
    var(--surface);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid var(--accent);
  transform: skewY(-18deg) rotate(45deg);
}

.brand-mark::after {
  inset: 12px;
  border-color: var(--paper);
  opacity: 0.8;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--text);
  background: rgb(255 255 255 / 0.04);
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-button span {
  position: relative;
  margin: auto;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button span::before {
  top: -6px;
}

.menu-button span::after {
  top: 6px;
}

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

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 680;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgb(255 255 255 / 0.07);
  outline: none;
}

.nav-links a:active {
  transform: translateY(1px);
}

.nav-links .nav-cta {
  margin-left: 4px;
  border: 1px solid rgb(101 216 194 / 0.42);
  color: var(--accent-strong);
}

.hero {
  position: relative;
  min-height: clamp(560px, 76dvh, 720px);
  margin-top: -80px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 136px 0 clamp(42px, 6vw, 74px);
  isolation: isolate;
}

.hero-scene,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-scene {
  z-index: -3;
  background:
    linear-gradient(180deg, #181611 0%, #10100e 100%),
    var(--bg);
}

.hero-scene canvas {
  width: 100%;
  height: 100%;
  opacity: 0.94;
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(16 16 14 / 0.9) 0%, rgb(16 16 14 / 0.54) 38%, rgb(16 16 14 / 0.14) 100%),
    linear-gradient(180deg, rgb(16 16 14 / 0.92) 0%, rgb(16 16 14 / 0.2) 34%, rgb(16 16 14 / 0.78) 100%);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(115deg, rgb(101 216 194 / 0.12) 0%, transparent 28%),
    linear-gradient(245deg, rgb(241 174 99 / 0.14) 0%, transparent 24%);
}

.scene-fallback {
  position: absolute;
  right: clamp(22px, 5vw, 82px);
  bottom: clamp(22px, 6vw, 88px);
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--muted);
  background: rgb(16 16 14 / 0.64);
  transition: opacity 220ms ease;
}

.hero-scene[data-scene-ready="true"] .scene-fallback {
  opacity: 0;
}

.hero-content {
  width: min(1480px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 12vw, 9.2rem);
  font-weight: 840;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5.6vw, 5.4rem);
  font-weight: 820;
}

.hero-text {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--paper-muted);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

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

.hero-router {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(900px, 100%);
  margin-top: 22px;
}

.problem-route {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 14px;
  background: rgb(16 16 14 / 0.58);
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.problem-route:hover,
.problem-route:focus-visible {
  transform: translateY(-2px);
  border-color: rgb(101 216 194 / 0.5);
  background: rgb(30 28 23 / 0.78);
  outline: none;
}

.problem-route span {
  color: var(--accent-warm);
  font-size: 0.76rem;
  font-weight: 760;
}

.problem-route strong {
  color: var(--paper);
  line-height: 1.16;
}

.problem-route small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.section-actions {
  display: flex;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 760;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--text);
  border-color: rgb(101 216 194 / 0.55);
  background: rgb(255 255 255 / 0.08);
  outline: none;
}

.button:active {
  transform: translateY(1px);
}

.button.primary {
  border-color: var(--accent);
  color: #08110e;
  background: var(--accent);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: #07100d;
  background: var(--accent-strong);
}

.button.secondary {
  color: var(--paper);
  background: rgb(255 255 255 / 0.04);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  width: min(620px, 100%);
  margin: 34px 0 0;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line-soft);
}

.hero-metrics div {
  flex: 1 1 150px;
  min-width: 0;
  padding: 14px 16px;
  background: rgb(16 16 14 / 0.64);
}

.hero-metrics dt,
.hero-metrics dd {
  margin: 0;
}

.hero-metrics dt {
  color: var(--paper);
  font-size: 1.55rem;
  font-weight: 830;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-metrics dd {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

.lab-tools {
  padding-top: 24px;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.launch-card,
.guide-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 260ms cubic-bezier(0.32, 0.72, 0, 1),
    border-color 260ms ease,
    background 260ms ease;
}

.launch-card:hover,
.launch-card:focus-visible,
.guide-card:hover,
.guide-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgb(101 216 194 / 0.58);
  background:
    linear-gradient(180deg, rgb(101 216 194 / 0.12), rgb(255 255 255 / 0.03)),
    var(--surface);
  outline: none;
}

.launch-card {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 22px;
}

.launch-card-1 {
  grid-column: span 3;
}

.launch-card-2 {
  grid-column: span 3;
}

.launch-card-3,
.launch-card-4,
.launch-card-5 {
  grid-column: span 2;
}

.launch-card span {
  color: var(--accent-warm);
  font-size: 0.82rem;
  font-weight: 760;
}

.launch-card strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.launch-card small {
  display: block;
  max-width: 46ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.process-band {
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgb(244 239 228 / 0.04), transparent),
    rgb(255 255 255 / 0.02);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
}

.principles p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 1.12rem;
}

.principles ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.principles li {
  border-left: 2px solid var(--accent);
  padding: 9px 0 9px 14px;
  color: var(--muted);
}

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

.guide-card {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 20px;
}

.guide-card small {
  color: var(--accent-warm);
  font-size: 0.76rem;
  font-weight: 760;
}

.guide-card strong {
  display: block;
  margin-top: 12px;
  color: var(--paper);
  font-size: 1.22rem;
  line-height: 1.18;
}

.guide-card span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

.guide-index {
  padding: clamp(104px, 12vw, 160px) 0 clamp(76px, 9vw, 124px);
}

.guide-index h1,
.article-header h1 {
  max-width: 980px;
  font-size: clamp(3.1rem, 8vw, 6.3rem);
}

.guide-grid-index {
  margin-top: 42px;
}

.tool-index-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.tool-explainer-stack {
  display: grid;
  gap: 14px;
  margin-top: 44px;
}

.tool-explainer {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(120deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.tool-explainer h2 {
  font-size: clamp(2rem, 5vw, 4.6rem);
}

.tool-explainer p {
  max-width: 64ch;
  color: var(--paper-muted);
  font-size: 1.05rem;
}

.tool-workflow {
  border-left: 1px solid var(--line-soft);
  padding-left: clamp(18px, 4vw, 34px);
}

.tool-workflow strong {
  color: var(--paper);
}

.tool-workflow ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.tool-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--accent-strong);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.health-page {
  padding: clamp(104px, 12vw, 160px) 0 clamp(76px, 9vw, 126px);
}

.health-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.health-header {
  min-width: 0;
}

.health-header h1 {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 6.4rem);
}

.health-result {
  position: sticky;
  top: 96px;
  border: 1px solid rgb(101 216 194 / 0.34);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgb(101 216 194 / 0.13), rgb(255 255 255 / 0.03)),
    var(--surface);
  box-shadow: var(--shadow);
}

.health-result span {
  color: var(--muted);
  font-weight: 740;
}

.health-result strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-size: clamp(4rem, 10vw, 6.5rem);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.health-result p {
  color: var(--paper-muted);
}

.health-meter {
  height: 10px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 99px;
  margin: 18px 0;
  background: rgb(0 0 0 / 0.24);
}

.health-meter i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent));
  transition: width 220ms ease;
}

.health-form {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.health-group {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 18px;
  background: rgb(255 255 255 / 0.035);
}

.health-group legend {
  padding: 0 8px;
  color: var(--paper);
  font-weight: 780;
}

.health-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  min-height: 44px;
  padding: 10px 0;
  color: var(--paper-muted);
}

.health-option + .health-option {
  border-top: 1px solid var(--line-soft);
}

.health-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  margin-top: 3px;
}

.health-option strong {
  color: var(--accent-warm);
  font-variant-numeric: tabular-nums;
}

.health-notes {
  grid-column: 1 / -1;
  margin-top: 38px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.resource-card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.025)),
    var(--surface);
  box-shadow: var(--shadow);
}

.resource-card h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.7rem);
}

.resource-card p {
  color: var(--paper-muted);
}

.resource-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.resource-card a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.status {
  min-height: 1.4rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.guide-page {
  padding: clamp(98px, 12vw, 152px) 0 clamp(76px, 9vw, 126px);
}

.article-shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.article-header,
.article-body {
  min-width: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--muted);
  font-weight: 720;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--accent-strong);
  border-color: rgb(101 216 194 / 0.48);
  outline: none;
}

.article-summary {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--paper-muted);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.guide-meta span {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 7px 10px;
  background: rgb(255 255 255 / 0.03);
}

.takeaway-panel {
  position: sticky;
  top: 96px;
  grid-column: 2;
  grid-row: 1 / span 2;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgb(101 216 194 / 0.1), rgb(255 255 255 / 0.03)),
    var(--surface);
  box-shadow: var(--shadow);
}

.takeaway-panel strong {
  color: var(--paper);
  font-size: 1.05rem;
}

.takeaway-panel ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.takeaway-panel li {
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.article-toc {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}

.article-toc span {
  color: var(--paper);
  font-weight: 780;
}

.article-toc a {
  color: var(--muted);
  font-size: 0.9rem;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--accent-strong);
  outline: none;
}

.article-body {
  grid-column: 1;
  margin-top: 48px;
}

.article-next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  border: 1px solid rgb(101 216 194 / 0.32);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  margin-bottom: 34px;
  background:
    linear-gradient(120deg, rgb(101 216 194 / 0.12), rgb(241 174 99 / 0.06)),
    var(--surface);
  box-shadow: var(--shadow);
}

.article-next-step h2 {
  max-width: 720px;
  font-size: clamp(1.5rem, 3.4vw, 2.55rem);
}

.article-next-step p:not(.eyebrow) {
  max-width: 68ch;
  margin: 14px 0 0;
  color: var(--paper-muted);
}

.article-next-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.article-section {
  border-top: 1px solid var(--line-soft);
  padding-top: 34px;
  margin-top: 34px;
}

.article-section:first-child {
  margin-top: 0;
}

.article-section h2 {
  max-width: 820px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.article-section p,
.source-list {
  max-width: 76ch;
  color: var(--paper-muted);
  font-size: 1.04rem;
}

.article-section p {
  margin: 18px 0 0;
}

.article-code {
  overflow: auto;
  max-width: 100%;
  margin: 20px 0 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 20px;
  color: #f4efe4;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.05), rgb(0 0 0 / 0.12)),
    #0b0d0c;
  font: 0.92rem/1.62 "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  white-space: pre;
}

.source-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.source-list a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 76ch;
  margin-top: 18px;
}

.faq-list details {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgb(255 255 255 / 0.035);
}

.faq-list summary {
  cursor: pointer;
  color: var(--paper);
  font-weight: 760;
}

.faq-list p {
  margin: 12px 0 0;
}

.article-neighbors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.article-neighbors a {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 18px;
  background: rgb(255 255 255 / 0.035);
}

.article-neighbors a:hover,
.article-neighbors a:focus-visible {
  border-color: rgb(101 216 194 / 0.58);
  outline: none;
}

.article-neighbors span {
  color: var(--accent-warm);
  font-size: 0.82rem;
  font-weight: 760;
}

.article-neighbors strong {
  color: var(--paper);
  line-height: 1.18;
}

.related-guides .guide-grid {
  margin-top: 20px;
}

.content-page {
  min-height: calc(100dvh - 220px);
  padding: clamp(92px, 12vw, 160px) 0 clamp(76px, 9vw, 120px);
}

.content-inner {
  max-width: 860px;
}

.content-inner h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.content-inner p {
  max-width: 70ch;
  margin: 22px 0 0;
  color: var(--paper-muted);
  font-size: 1.06rem;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 32px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.site-footer strong {
  color: var(--paper);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 13px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-strong);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 720ms cubic-bezier(0.32, 0.72, 0, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 920px) {
  .site-nav,
  .section-inner,
  .content-inner,
  .footer-inner,
  .hero-content {
    width: min(100% - 32px, 1480px);
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 4px;
  }

  .nav-links[data-open] {
    display: flex;
  }

  .nav-links a {
    min-height: 44px;
  }

  .site-nav {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .hero {
    min-height: clamp(620px, 72dvh, 680px);
    align-items: end;
    padding-top: 124px;
  }

  .hero-scene::after {
    background:
      linear-gradient(180deg, rgb(16 16 14 / 0.94) 0%, rgb(16 16 14 / 0.52) 42%, rgb(16 16 14 / 0.88) 100%);
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

  .launch-grid,
  .guide-grid,
  .article-neighbors,
  .hero-router,
  .article-next-step,
  .resource-grid,
  .process-grid,
  .article-shell,
  .tool-explainer,
  .health-layout,
  .health-form {
    grid-template-columns: 1fr;
  }

  .takeaway-panel,
  .article-body,
  .health-result {
    position: static;
    grid-column: auto;
    grid-row: auto;
  }

  .article-shell {
    width: min(100% - 32px, 1160px);
  }

  .article-body {
    margin-top: 10px;
  }

  .article-next-step-actions {
    justify-content: flex-start;
  }

  .launch-card,
  .launch-card-1,
  .launch-card-2,
  .launch-card-3,
  .launch-card-4,
  .launch-card-5 {
    grid-column: auto;
  }

  .launch-card {
    min-height: 220px;
  }

  .tool-workflow {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding-left: 0;
    padding-top: 22px;
  }

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

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

@media (max-width: 540px) {
  .site-header {
    padding-top: 8px;
  }

  .hero {
    min-height: clamp(610px, 70dvh, 660px);
    padding-bottom: 36px;
  }

  .hero-metrics div {
    flex-basis: 96px;
    padding: 12px;
  }

  .launch-card,
  .guide-card {
    min-height: auto;
  }
}

@media (max-width: 370px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
