:root {
  color-scheme: dark;
  --bg: #07090d;
  --ink: #0d1117;
  --surface: #121821;
  --surface-2: #18212c;
  --surface-3: #202b37;
  --line: rgba(185, 201, 218, 0.18);
  --line-strong: rgba(185, 201, 218, 0.32);
  --text: #f7fbff;
  --muted: #b7c2cf;
  --soft: #8593a3;
  --cyan: #5eead4;
  --cyan-strong: #22d3ee;
  --mint: #86efac;
  --amber: #fbbf24;
  --rose: #fb7185;
  --blue: #93c5fd;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--cyan);
  color: #031016;
}

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

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

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

h1,
h2,
h3,
p,
pre {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  --logo-shift-x: -4px;

  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0f1720;
}

.brand-mark.small {
  width: 36px;
  height: 36px;
  --logo-shift-x: -3px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: translateX(var(--logo-shift-x));
}

.brand-fallback::before {
  content: "s";
  color: #031016;
  font-weight: 900;
  font-size: 22px;
}

.brand-fallback {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.brand-name,
.brand-domain {
  display: block;
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
}

.brand-domain {
  color: var(--soft);
  font-size: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.ghost-link,
.footer-links a {
  transition: color 0.18s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.mobile-menu-button span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 800;
  font-size: 14px;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

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

.button-primary {
  background: var(--cyan);
  color: #031016;
  box-shadow: 0 14px 42px rgba(94, 234, 212, 0.18);
}

.button-primary:hover {
  background: #99f6e4;
}

.button-light {
  background: #ffffff;
  color: #071018;
}

.button-light:hover {
  background: #e0f2fe;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  color: white;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ghost-link {
  color: var(--muted);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 70px 58px;
}

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

.badges,
.hero-actions,
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.badges {
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  color: #dce7f2;
  font-size: 12px;
  font-weight: 800;
}

h1 {
  max-width: 900px;
  font-size: 76px;
  line-height: 0.98;
}

h2 {
  max-width: 870px;
  font-size: 50px;
  line-height: 1.05;
}

h3 {
  font-size: 19px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 820px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 30px;
}

.proof-strip {
  margin-top: 28px;
  color: #dbe6f1;
  font-size: 13px;
  font-weight: 700;
}

.proof-strip span {
  border-left: 2px solid var(--cyan);
  padding-left: 10px;
}

.hero-console {
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(13, 17, 23, 0.92);
  box-shadow: var(--shadow);
}

.console-topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
}

.console-title {
  color: #e9f2fb;
  font-size: 13px;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
}

.status-live {
  border-color: rgba(134, 239, 172, 0.28);
  background: rgba(134, 239, 172, 0.1);
  color: var(--mint);
}

.console-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(340px, 1.25fr) minmax(240px, 0.78fr);
  min-height: 332px;
}

.console-pane {
  padding: 18px;
}

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

.pane-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pane-heading strong {
  color: var(--text);
  text-transform: none;
}

.object-row,
.worker-card,
.metric-row,
.security-list div,
.team-grid article,
.feature-card,
.flow-node,
.code-panel,
.distributed-visual,
.diagram-column,
.server-core,
.worker-run {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.object-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
}

.object-row + .object-row {
  margin-top: 10px;
}

.object-row strong,
.object-row span {
  display: block;
}

.object-row strong {
  color: #f7fbff;
  font-size: 14px;
}

.object-row span,
.object-row em {
  color: var(--soft);
  font-size: 12px;
  font-style: normal;
}

.object-row.is-active {
  border-color: rgba(94, 234, 212, 0.34);
  background: rgba(94, 234, 212, 0.07);
}

.object-row.is-active em {
  color: var(--cyan);
}

.signature-box {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--soft);
  font-size: 12px;
}

.signature-box code {
  display: block;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080b10;
  padding: 8px;
  color: #dffcf6;
}

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

.timeline-step {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
}

.timeline-step span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(94, 234, 212, 0.1);
}

.timeline-step p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.worker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.worker-card {
  padding: 12px;
}

.worker-card span,
.worker-card strong {
  display: block;
}

.worker-card span {
  color: var(--muted);
  font-size: 13px;
}

.worker-card strong {
  margin-top: 4px;
  color: var(--mint);
  font-size: 14px;
}

.worker-card.active {
  border-color: rgba(134, 239, 172, 0.32);
  background: rgba(134, 239, 172, 0.08);
}

.flow-pane pre,
.code-panel pre {
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080b10;
  padding: 14px;
}

.flow-pane code,
.code-panel code {
  color: #dce7f2;
  font-size: 12px;
  line-height: 1.65;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  padding: 13px;
}

.metric-row + .metric-row {
  margin-top: 10px;
}

.metric-row span {
  color: var(--muted);
}

.metric-row strong {
  color: var(--cyan);
}

.artifact-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.artifact-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 10px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.028);
  background: rgba(4, 7, 11, 0.14);
  padding-block: 86px;
}

.section-muted {
  border-block: 1px solid rgba(255, 255, 255, 0.085);
  background:
    linear-gradient(180deg, rgba(16, 24, 34, 0.72), rgba(10, 16, 24, 0.58)),
    rgba(255, 255, 255, 0.035);
}

.section-head {
  max-width: 880px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(94, 234, 212, 0.26);
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.08);
  padding: 6px 11px;
  color: #b9fff4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.74;
}

.feature-grid,
.team-grid {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

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

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

.quickstart-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 22px;
}

.quickstart-card span {
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 12px;
  font-weight: 900;
}

.quickstart-card strong {
  color: var(--text);
  font-size: 20px;
}

.quickstart-card pre {
  min-width: 0;
  margin: 0;
  overflow: auto;
  border: 1px solid rgba(94, 234, 212, 0.24);
  border-radius: var(--radius);
  background: rgba(4, 8, 13, 0.72);
  padding: 14px;
}

.quickstart-card code {
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 13px;
  line-height: 1.58;
}

.quickstart-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  border: 1px solid rgba(134, 239, 172, 0.3);
  border-radius: var(--radius);
  background: rgba(34, 197, 94, 0.08);
  padding: 18px 20px;
}

.quickstart-result strong {
  color: var(--mint);
}

.quickstart-result span {
  color: var(--muted);
}

.feature-card,
.team-grid article {
  padding: 24px;
}

.feature-card {
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.feature-card:hover,
.team-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.feature-index {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 12px;
  font-weight: 900;
}

.feature-card p,
.team-grid p,
.flow-node p,
.security-list span,
.distributed-points span,
.final-cta p {
  margin-top: 12px;
  color: var(--soft);
  line-height: 1.68;
}

.split-section,
.distributed-section,
.code-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: start;
}

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

.distributed-section {
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: 46px;
}

.distributed-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.distributed-points div {
  border-left: 2px solid rgba(94, 234, 212, 0.58);
  padding-left: 16px;
}

.distributed-points strong,
.distributed-points span {
  display: block;
}

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

.distributed-visual {
  position: relative;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    rgba(13, 17, 23, 0.82);
  background-size: 28px 28px;
  box-shadow: var(--shadow);
  scrollbar-color: rgba(94, 234, 212, 0.42) rgba(255, 255, 255, 0.04);
}

.execution-map {
  width: 100%;
  min-width: 760px;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 2px);
}

.diagram-column {
  min-width: 0;
  padding: 16px;
  background: rgba(7, 9, 13, 0.72);
}

.diagram-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-bottom: 16px;
}

.diagram-header strong,
.diagram-header span {
  display: block;
}

.diagram-header strong {
  color: var(--text);
  font-size: 14px;
}

.diagram-header span:not(.machine-dot) {
  color: var(--soft);
  font-size: 12px;
}

.machine-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.05);
}

.origin-dot {
  background: var(--blue);
}

.worker-dot {
  background: var(--mint);
}

.pipeline-rail {
  position: relative;
  display: grid;
  gap: 12px;
}

.pipeline-rail::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 17px;
  width: 2px;
  background: rgba(185, 201, 218, 0.2);
}

.pipe-step {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
}

.pipe-step > span {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0b1017;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 900;
}

.pipe-step strong,
.pipe-step em {
  display: block;
  min-width: 0;
}

.pipe-step strong {
  color: var(--text);
  font-size: 13px;
}

.pipe-step em {
  overflow-wrap: anywhere;
  margin-top: 4px;
  color: var(--soft);
  font-size: 12px;
  font-style: normal;
}

.pipe-step.remote {
  border-color: rgba(94, 234, 212, 0.48);
  background: rgba(94, 234, 212, 0.1);
  box-shadow: inset 0 0 0 1px rgba(94, 234, 212, 0.08);
}

.pipe-step.remote > span {
  background: var(--cyan);
  color: #031016;
}

.pipe-step.return {
  border-color: rgba(147, 197, 253, 0.34);
  background: rgba(147, 197, 253, 0.07);
}

.server-diagram {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  gap: 12px;
  border-color: rgba(94, 234, 212, 0.2);
  background: rgba(94, 234, 212, 0.04);
}

.flow-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.flow-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -22px;
  right: -22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.88), transparent);
}

.flow-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.flow-arrow.outbound::after {
  right: -21px;
  transform: rotate(45deg);
}

.flow-arrow.inbound::after {
  left: -21px;
  transform: rotate(-135deg);
}

.flow-arrow span {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0a0f15;
  padding: 6px 9px;
}

.server-core {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 20px 14px;
  background: rgba(7, 9, 13, 0.86);
  text-align: center;
}

.server-pulse {
  width: 42px;
  height: 42px;
  display: block;
  border: 1px solid rgba(94, 234, 212, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(94, 234, 212, 0.62) 47% 53%, transparent 53%),
    linear-gradient(transparent 47%, rgba(94, 234, 212, 0.62) 47% 53%, transparent 53%),
    rgba(94, 234, 212, 0.1);
  box-shadow: 0 0 32px rgba(94, 234, 212, 0.14);
}

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

.server-core p {
  max-width: 150px;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.5;
}

.server-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.server-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.worker-run {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.worker-run + .worker-run {
  margin-top: 10px;
}

.worker-run.active {
  border-color: rgba(134, 239, 172, 0.4);
  background: rgba(134, 239, 172, 0.08);
}

.worker-run.muted {
  opacity: 0.72;
}

.worker-run-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.worker-run-head strong {
  color: var(--text);
  font-size: 13px;
}

.worker-run-head span {
  border: 1px solid rgba(134, 239, 172, 0.24);
  border-radius: 999px;
  padding: 4px 7px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
}

.worker-run-body {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.worker-run-body div {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.worker-run-body span {
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 900;
}

.worker-run-body strong {
  color: var(--muted);
  font-size: 12px;
}

.architecture-flow {
  display: grid;
  gap: 12px;
}

.flow-node {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  padding: 18px;
}

.flow-node span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(147, 197, 253, 0.12);
  color: var(--blue);
  font-weight: 900;
}

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

.flow-node p {
  margin-top: 4px;
}

.flow-node.accent {
  border-color: rgba(94, 234, 212, 0.32);
  background: rgba(94, 234, 212, 0.07);
}

.flow-node.accent span {
  background: rgba(94, 234, 212, 0.14);
  color: var(--cyan);
}

.code-panel {
  overflow: hidden;
  background: rgba(13, 17, 23, 0.9);
  box-shadow: var(--shadow);
}

.window-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
}

.window-bar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 13px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.red {
  background: var(--rose);
}

.yellow {
  background: var(--amber);
}

.green {
  background: var(--mint);
}

.code-panel pre {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  padding: 22px;
}

.code-panel code {
  font-size: 13px;
}

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

.security-list {
  display: grid;
  gap: 12px;
}

.security-list div {
  padding: 18px;
}

.security-list strong,
.security-list span {
  display: block;
}

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

.final-cta {
  max-width: 980px;
}

.final-cta p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 34px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: var(--soft);
  font-size: 14px;
}

.reveal {
  animation: reveal 0.45s ease both;
}

.reveal-delay {
  animation-delay: 0.12s;
}

@keyframes reveal {
  from {
    opacity: 0.72;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1020px) {
  .nav-links,
  .nav-actions .ghost-link {
    display: none;
  }

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

  .nav-links.is-open {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 9, 13, 0.97);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    padding: 12px 14px;
    border-radius: var(--radius);
  }

  .nav-links.is-open a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .console-layout,
  .split-section,
  .distributed-section,
  .code-section {
    grid-template-columns: 1fr;
  }

  .console-pane + .console-pane {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 42px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-domain {
    display: none;
  }

  .nav-actions .button {
    display: none;
  }

  .hero-inner {
    padding-block: 54px 44px;
  }

  h1 {
    font-size: 43px;
    line-height: 1.02;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lead,
  .section-lead,
  .final-cta p:not(.section-kicker) {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .proof-strip {
    display: grid;
  }

  .console-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 12px;
  }

  .run-timeline,
  .worker-grid,
  .distributed-visual,
  .feature-grid,
  .team-grid,
  .quickstart-grid {
    grid-template-columns: 1fr;
  }

  .quickstart-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .distributed-visual {
    padding: 12px;
  }

  .diagram-column {
    padding: 14px;
  }

  .server-diagram {
    grid-template-rows: auto;
  }

  .flow-arrow {
    min-height: auto;
    padding-block: 4px;
  }

  .flow-arrow::before,
  .flow-arrow::after {
    display: none;
  }

  .section {
    padding-block: 64px;
  }

  .feature-card,
  .team-grid article {
    padding: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
