:root {
  --bg: #08100f;
  --bg-2: #0d1513;
  --panel: #101b18;
  --panel-2: #14221e;
  --panel-3: #182824;
  --text: #f1efe6;
  --muted: #b7b0a3;
  --faint: #7d877d;
  --line: #294038;
  --line-strong: #3a5e52;
  --teal: #66d1b2;
  --teal-2: #2ea384;
  --amber: #efbf6a;
  --rose: #e28086;
  --blue: #8fb7ff;
  --ink: #06100e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --maxw: 1180px;
  --gutter: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(8, 16, 15, 0.88) 0%, rgba(13, 21, 19, 0.98) 52%, #08100f 100%),
    repeating-linear-gradient(90deg, rgba(102, 209, 178, 0.03) 0, rgba(102, 209, 178, 0.03) 1px, transparent 1px, transparent 92px);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
  body {
    overflow-x: clip;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(102, 209, 178, 0.08), transparent 34%),
    linear-gradient(300deg, rgba(239, 191, 106, 0.06), transparent 42%),
    linear-gradient(180deg, transparent, rgba(6, 12, 11, 0.86));
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

::selection {
  background: var(--teal);
  color: var(--ink);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px var(--gutter);
  background: rgba(8, 16, 15, 0.78);
  border-bottom: 1px solid rgba(58, 94, 82, 0.48);
  backdrop-filter: blur(18px) saturate(130%);
}

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

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(102, 209, 178, 0.28);
}

.brand-name,
.footer-brand span {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 560;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links a,
.footer nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  gap: 9px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.button svg {
  width: 15px;
  height: 15px;
}

.button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 34px;
  padding: 8px 12px;
  font-size: 13px;
}

.button-large {
  min-height: 48px;
  padding: 14px 18px;
  font-size: 15px;
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(180deg, #baf6df 0%, var(--teal) 54%, var(--teal-2) 100%);
  border-color: rgba(186, 246, 223, 0.6);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 14px 34px rgba(46, 163, 132, 0.22);
}

.button-primary:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.button-ghost {
  color: var(--text);
  background: rgba(20, 34, 30, 0.74);
  border-color: var(--line);
}

.button-ghost:hover,
.button-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(24, 40, 36, 0.9);
}

.button-secondary {
  color: var(--text);
  background: var(--panel-2);
  border-color: var(--line);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(56px, 5.5vw, 76px);
  min-height: min(760px, calc(100svh - 72px));
  overflow: hidden;
  padding: 72px var(--gutter) 52px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 62%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 16, 15, 0.98), rgba(8, 16, 15, 0.76) 62%, transparent);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.hero-copy {
  position: relative;
  flex: 0 1 480px;
  z-index: 2;
  width: min(480px, 100%);
}

.hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin-bottom: 28px;
  box-shadow: 0 0 0 1px rgba(102, 209, 178, 0.34), 0 20px 48px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 92px;
  line-height: 0.94;
  font-weight: 420;
  font-variation-settings: "SOFT" 55;
}

.hero-lede {
  max-width: 480px;
  margin: 0;
  color: #ded8ca;
  font-size: 21px;
  line-height: 1.48;
}

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

.hero-note {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 12px;
}

.hero-stage {
  position: relative;
  flex: 0 1 620px;
  width: min(620px, 100%);
  z-index: 1;
  opacity: 0.92;
}

.screenshot-frame {
  margin: 0;
  border: 1px solid rgba(58, 94, 82, 0.72);
  border-radius: 8px;
  background: rgba(12, 22, 19, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  border-radius: 7px;
}

.stage-shell {
  max-width: 100%;
  border: 1px solid rgba(58, 94, 82, 0.72);
  border-radius: 8px;
  background: rgba(12, 22, 19, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stage-topbar {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 27, 24, 0.95);
}

.traffic {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.traffic::before,
.traffic::after,
.traffic {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.traffic {
  background: var(--rose);
  box-shadow: 14px 0 0 var(--amber), 28px 0 0 var(--teal);
}

.stage-title,
.stage-status,
.panel-label,
.sidebar-heading,
.audit-row span,
.stat span,
.section-kicker,
.step-number,
.feature-num,
.template-strip,
.terminal-head {
  font-family: var(--mono);
}

.stage-title {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-status {
  min-width: 0;
  overflow: hidden;
  justify-self: end;
  color: var(--teal);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-width: 0;
  min-height: 485px;
}

.stage-sidebar {
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  background: rgba(8, 16, 15, 0.42);
}

.sidebar-heading {
  margin: 0 0 12px;
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
}

.provider {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 9px;
  width: 100%;
  margin: 0 0 7px;
  padding: 10px 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  text-align: left;
  background: transparent;
}

.provider:hover,
.provider.is-active {
  color: var(--text);
  background: rgba(24, 40, 36, 0.95);
  border-color: var(--line);
}

.provider-dot {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(102, 209, 178, 0.13);
}

.provider strong {
  grid-column: 2;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}

.request-panel {
  min-width: 0;
  overflow: hidden;
  padding: 22px;
}

.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-label {
  display: block;
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.panel-head h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.decision {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--teal);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 760;
}

.code-card,
.command-panel,
.terminal-art {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07100e;
}

.code-card {
  padding: 16px;
  overflow: hidden;
}

pre {
  margin: 0;
  white-space: pre-wrap;
}

code {
  font-family: var(--mono);
}

.code-card code,
.command-panel code,
.terminal-art code {
  color: #d8efe6;
  font-size: 13px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.code-card span {
  color: var(--amber);
}

.result-flow {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.result-flow div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 2px 12px;
  padding: 11px 12px;
  border: 1px solid rgba(58, 94, 82, 0.62);
  border-radius: 8px;
  background: rgba(20, 34, 30, 0.72);
}

.result-flow span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--amber);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.result-flow strong {
  line-height: 1.1;
}

.result-flow small {
  color: var(--muted);
  line-height: 1.35;
}

.audit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.audit-row div {
  min-width: 0;
}

.audit-row span {
  display: block;
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
}

.audit-row strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 82px;
}

.stat {
  min-height: 124px;
  padding: 22px 24px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 430;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 86px var(--gutter);
}

.section-head {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: 44px;
  margin-bottom: 46px;
}

.section-kicker {
  margin: 10px 0 0;
  color: var(--amber);
  font-size: 12px;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 390;
  font-variation-settings: "SOFT" 60;
}

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

.process-step {
  min-height: 258px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 27, 24, 0.72);
}

.step-number,
.feature-num {
  display: block;
  color: var(--teal);
  font-size: 12px;
  margin-bottom: 34px;
}

.process-step h3,
.feature-body h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.16;
}

.process-step p,
.feature-body p,
.security-copy p,
.final-cta p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(260px, 0.82fr);
  gap: 28px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-row-flip .feature-art {
  order: 2;
}

.feature-row-flip .feature-body {
  order: 3;
}

.feature-row-flip .feature-num {
  order: 1;
}

.feature-num {
  margin-bottom: 0;
}

.feature-body h3 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 420;
}

.feature-body code {
  color: var(--amber);
}

.feature-art {
  display: grid;
  gap: 9px;
  min-height: 166px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(102, 209, 178, 0.09), transparent 48%),
    rgba(16, 27, 24, 0.78);
}

.feature-art code,
.feature-art span {
  display: block;
  overflow-wrap: anywhere;
  border: 1px solid rgba(58, 94, 82, 0.82);
  border-radius: 6px;
  padding: 9px 10px;
  color: #d8efe6;
  background: rgba(7, 16, 14, 0.82);
  font-family: var(--mono);
  font-size: 12px;
}

.credential-stack span:nth-child(2),
.env-diff span:nth-child(2) {
  border-color: rgba(239, 191, 106, 0.54);
}

.env-diff span:nth-child(n + 3) {
  color: var(--muted);
}

.terminal-art {
  min-height: auto;
}

.terminal-art pre {
  padding: 18px;
}

.security {
  max-width: none;
  background: rgba(7, 16, 14, 0.52);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.security > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: 44px;
}

.security-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  font-size: 18px;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.spec-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 17px;
  background: rgba(16, 27, 24, 0.76);
}

.spec-list div + div {
  border-top: 1px solid var(--line);
}

.spec-list dt {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  min-width: 0;
  color: var(--text);
}

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

.command-panel {
  overflow: hidden;
}

.terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: rgba(20, 34, 30, 0.74);
  font-size: 12px;
}

.copy-command {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: #07100e;
  padding: 5px 8px;
  font-size: 12px;
}

.copy-command.is-copied {
  color: var(--ink);
  background: var(--teal);
}

.command-panel pre {
  padding: 18px;
}

.template-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(16, 27, 24, 0.72);
  font-size: 12px;
}

.template-strip code {
  color: var(--text);
  border: 1px solid rgba(58, 94, 82, 0.82);
  border-radius: 999px;
  padding: 5px 8px;
  background: #07100e;
}

.final-cta {
  max-width: 980px;
  margin: 0 auto;
  padding: 84px var(--gutter) 102px;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1.02;
  font-weight: 410;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 18px;
}

.legal-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 74px var(--gutter) 96px;
}

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

.legal-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  font-weight: 420;
}

.legal-updated {
  margin: 0;
  color: var(--muted);
}

.legal-content {
  padding-top: 34px;
}

.legal-content section {
  padding: 0;
}

.legal-content section + section {
  margin-top: 34px;
}

.legal-content h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 470;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  margin: 0;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--teal);
  text-underline-offset: 3px;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 16, 14, 0.8);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--gutter);
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

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

.footer nav {
  display: flex;
  gap: 18px;
  justify-self: end;
}

.footer small {
  grid-column: 1 / -1;
  color: var(--faint);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .hero {
    display: block;
    min-height: auto;
    padding-top: 54px;
  }

  .hero-stage {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 760px);
    max-width: 100%;
    margin: 42px auto 0;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
  }

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

  .stat:nth-child(3) {
    border-left: 0;
  }

  .section-head,
  .security-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-kicker {
    margin-top: 0;
  }

  .feature-row,
  .feature-row-flip {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .feature-art,
  .feature-row-flip .feature-art {
    order: 3;
    grid-column: 2;
  }

  .feature-row-flip .feature-body {
    order: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 18px;
  }

  .nav {
    justify-content: space-between;
    gap: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-links {
    display: none;
  }

  .brand-name {
    font-size: 19px;
  }

  .nav .button {
    flex: 0 0 44px;
    width: 44px;
    min-width: 44px;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .nav .button span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 34px;
  }

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

  .hero-lede {
    font-size: 18px;
  }

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

  .stage-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .stage-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sidebar-heading {
    grid-column: 1 / -1;
  }

  .provider {
    margin: 0;
  }

  .panel-head,
  .audit-row {
    grid-template-columns: 1fr;
  }

  .panel-head {
    display: grid;
  }

  .decision {
    justify-self: start;
  }

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

  .stat,
  .stat + .stat,
  .stat:nth-child(3) {
    border-left: 0;
  }

  .stat + .stat {
    border-top: 0;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .section h2,
  .final-cta h2,
  .legal-hero h1 {
    font-size: 40px;
  }

  .feature-row,
  .feature-row-flip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-art,
  .feature-row-flip .feature-art {
    grid-column: auto;
  }

  .feature-body h3 {
    font-size: 29px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .footer nav {
    justify-self: start;
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 50px;
  }

  .stage-topbar {
    grid-template-columns: 44px 1fr;
  }

  .stage-status {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .request-panel {
    padding: 16px;
  }

  .stage-sidebar {
    grid-template-columns: 1fr;
  }

  .panel-head h2 {
    font-size: 21px;
    overflow-wrap: anywhere;
  }
}

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