:root {
  color-scheme: dark;
  --bg: #0f0e0e;
  --bg-deep: #090909;
  --surface: #181615;
  --surface-2: #201e1c;
  --line: #3f3b38;
  --line-soft: #292622;
  --text: #f0efee;
  --text-2: #c9c4b8;
  --muted: #a8a29e;
  --dim: #78716c;
  --accent: #d4a853;
  --accent-strong: #f0bc4f;
  --paper: #eeeae2;
  --paper-ink: #171512;
  --green: #84e8b0;
  --lime: #bffd00;
  --blue: #5ab4d6;
  --purple: #c084fc;
  --coral: #ff7f73;
  --amber: #f5c842;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", Georgia, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(212, 168, 83, 0.04);
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.shell {
  width: min(1216px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--accent-strong);
  color: var(--paper-ink);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(15, 14, 14, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
}

.brand small {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--text-2);
  font-size: 14px;
}

.header-nav a {
  position: relative;
  padding: 25px 0 23px;
  transition: color 180ms ease;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 220ms var(--ease);
}

.header-nav a:hover,
.header-nav a[aria-current="location"] {
  color: var(--text);
}

.header-nav a:hover::after,
.header-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.demo-actions,
.download-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 10px 17px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent-strong);
}

.button-solid {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper-ink);
}

.button-solid:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: var(--paper-ink);
}

.button-small {
  min-height: 38px;
  padding: 7px 14px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 132px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 58px;
  padding-bottom: 54px;
}

.hero-kicker,
.section-kicker,
.strip-label {
  margin: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.hero-kicker::before {
  width: 30px;
  height: 1px;
  content: "";
  background: var(--accent);
}

#hero-title {
  margin: 25px 0 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.hero-slogan {
  max-width: 1180px;
  margin: 13px 0 0;
  font-family: var(--serif);
  font-size: 122px;
  font-weight: 400;
  line-height: 0.86;
}

.hero-slogan .slogan-word {
  display: inline-block;
  margin-right: 12px;
}

.hero-slogan em {
  position: relative;
  margin-right: 0;
  color: var(--accent);
  font-weight: 400;
}

.hero-slogan em::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 5px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(212, 168, 83, 0.28);
}

.motion-ready .hero-slogan .slogan-word {
  opacity: 0;
  transform: translateY(38px);
  animation: slogan-rise 760ms var(--ease) forwards;
}

.motion-ready .hero-slogan .slogan-word:nth-child(2) {
  animation-delay: 90ms;
}

.motion-ready .hero-slogan .slogan-word:nth-child(3) {
  animation-delay: 180ms;
}

.motion-ready .hero-slogan em::after {
  animation: slogan-rule 800ms var(--ease) 720ms forwards;
}

.hero-promise {
  margin: 23px 0 0;
  color: var(--text-2);
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--text-2);
  font-size: 18px;
  font-weight: 350;
}

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

.hero-command {
  width: min(720px, 100%);
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 12px 16px;
  color: var(--text-2);
  font-size: 12px;
  transition: border-color 180ms ease;
}

.hero-command:hover {
  border-color: var(--accent);
}

.hero-command > span {
  color: var(--accent);
  font-family: var(--mono);
}

.hero-command code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-command strong {
  color: var(--text);
  font-size: 11px;
  text-transform: uppercase;
}

.release-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: #151511;
}

.release-strip-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1.2fr auto;
  align-items: stretch;
}

.release-strip-inner > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 18px 24px;
  border-left: 1px solid var(--line-soft);
}

.release-strip-inner > div:last-child {
  border-right: 1px solid var(--line-soft);
}

.release-strip strong {
  overflow-wrap: anywhere;
  font-size: 13px;
}

.release-state {
  min-width: 190px;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-start !important;
}

.release-state-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(245, 200, 66, 0.4);
}

.release-state[data-tone="ok"] .release-state-dot {
  background: var(--green);
  box-shadow: 0 0 12px rgba(132, 232, 176, 0.55);
}

.release-state[data-tone="warn"] .release-state-dot {
  background: var(--coral);
  box-shadow: 0 0 12px rgba(255, 127, 115, 0.5);
}

.band,
.terminal-band,
.closing-band {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-heading h2,
.system-intro h2,
.control-copy h2,
.trust-intro h2,
.install-copy h2,
.downloads-heading h2,
.closing-inner h2 {
  margin: 15px 0 0;
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 400;
  line-height: 1.02;
}

.section-heading > p:last-child,
.system-intro > p,
.control-copy > p,
.trust-intro > p,
.install-copy > p,
.closing-inner p {
  color: var(--text-2);
  font-size: 17px;
}

.terminal-band {
  border-bottom: 1px solid var(--line-soft);
  background: #11100f;
}

.terminal-heading {
  max-width: 900px;
}

.terminal-demo {
  position: relative;
  border: 1px solid #2a2a24;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.5);
}

.terminal-chrome {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #191919;
  background: #050505;
  padding: 8px 13px;
  color: #777;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.window-lights {
  display: inline-flex;
  gap: 6px;
}

.window-lights i {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
}

.window-lights i:nth-child(1) { background: var(--coral); }
.window-lights i:nth-child(2) { background: var(--amber); }
.window-lights i:nth-child(3) { background: var(--green); }

.terminal-location {
  color: #777;
  text-transform: none;
}

.terminal-location strong {
  color: var(--lime);
  font-weight: 500;
}

.demo-label {
  margin-left: auto;
  color: var(--green);
}

.demo-actions button,
.terminal-chrome button {
  min-height: 28px;
  border: 1px solid #242424;
  background: #0b0b0b;
  padding: 4px 9px;
  color: #aaa;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.demo-actions button:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.terminal-app {
  min-height: 660px;
  display: grid;
  grid-template-rows: 64px 50px minmax(480px, 1fr) 40px;
  color: #f2f0eb;
  font-family: var(--sans);
}

.terminal-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #181818;
  background: #070707;
  padding: 10px 16px;
}

.terminal-brand {
  display: flex;
  flex-direction: column;
}

.terminal-brand strong {
  font-size: 21px;
  line-height: 1;
}

.terminal-brand strong::after {
  width: 28px;
  height: 2px;
  display: block;
  margin-top: 6px;
  content: "";
  background: var(--lime);
}

.terminal-brand span,
.terminal-session span {
  color: #555;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.terminal-session {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terminal-session strong {
  min-width: 190px;
  border: 1px solid #1d1d1d;
  background: #090909;
  padding: 7px 10px;
  color: #ddd;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}

.terminal-state {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
}

.terminal-state span,
.terminal-statusbar i {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: var(--green);
  box-shadow: 0 0 10px rgba(132, 232, 176, 0.58);
  animation: terminal-pulse 1.8s ease-in-out infinite;
}

.terminal-commandbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #181818;
  background: #070707;
  padding: 8px 16px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.terminal-input {
  min-width: 0;
  height: 32px;
  display: flex;
  align-items: center;
  border: 1px solid #252519;
  background: #030303;
  padding: 0 11px;
  overflow: hidden;
  color: #f2f0eb;
  font-size: 11px;
  text-transform: none;
}

.terminal-input > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.terminal-input i {
  width: 7px;
  height: 14px;
  flex: 0 0 7px;
  display: block;
  margin-left: 3px;
  background: var(--lime);
  animation: terminal-caret 1s steps(2) infinite;
}

.terminal-model {
  color: #666;
}

.terminal-workbench {
  min-width: 0;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 250px;
  overflow: hidden;
}

.terminal-sessions,
.terminal-activity {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: #080808;
}

.terminal-sessions {
  border-right: 1px solid #181818;
}

.terminal-activity {
  grid-template-rows: auto auto minmax(0, 1fr);
  border-left: 1px solid #181818;
}

.panel-heading {
  position: relative;
  min-height: 67px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #181818;
  padding: 12px 14px;
}

.panel-heading span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.panel-heading strong {
  margin-top: 4px;
  color: #ddd;
  font-size: 15px;
  text-transform: uppercase;
}

.panel-heading b {
  position: absolute;
  top: 21px;
  right: 13px;
  min-width: 27px;
  border: 1px solid #2c3014;
  padding: 2px 6px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  text-align: center;
}

.session-list {
  padding: 10px;
}

.session-row {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  border: 1px solid #141414;
  margin-bottom: 8px;
  padding: 10px;
}

.session-row.is-active {
  border-color: #303417;
  background: #0c0c09;
}

.session-row i {
  width: 8px;
  height: 8px;
  background: #555;
}

.session-row.is-active i {
  background: var(--green);
  box-shadow: 0 0 9px rgba(132, 232, 176, 0.45);
}

.session-row strong,
.session-row span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--mono);
}

.session-row strong {
  color: #ddd;
  font-size: 10px;
}

.session-row span {
  margin-top: 4px;
  color: #4f4f4f;
  font-size: 8px;
}

.terminal-stage {
  min-width: 0;
  overflow: hidden;
  background: #030706;
}

.terminal-output {
  height: 100%;
  max-height: 480px;
  overflow: auto;
  padding: 20px 22px;
  color: #d8ffe8;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.65;
}

.terminal-output p {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.terminal-output p.is-new {
  animation: terminal-line 260ms ease both;
}

.terminal-output .line-space {
  min-height: 14px;
}

.tone-lime { color: var(--lime); }
.tone-green { color: var(--green); }
.tone-blue { color: var(--blue); }
.tone-purple { color: var(--purple); }
.tone-amber { color: var(--amber); }
.tone-muted { color: #8b8b8b; }
.tone-dim { color: #555; }
.tone-text { color: #f2f0eb; }

.terminal-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-bottom: 1px solid #181818;
}

.terminal-metrics div {
  padding: 10px 8px;
  border-right: 1px solid #181818;
}

.terminal-metrics div:last-child {
  border-right: 0;
}

.terminal-metrics dt {
  color: #555;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.terminal-metrics dd {
  margin: 2px 0 0;
  color: #ddd;
  font-family: var(--mono);
  font-size: 15px;
}

.activity-list {
  min-height: 0;
  overflow: auto;
  padding: 9px;
}

.activity-row {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 8px;
  margin-bottom: 7px;
  border: 1px solid #141414;
  background: #0a0a0a;
  padding: 8px;
}

.activity-row.is-new {
  animation: terminal-line 260ms ease both;
}

.activity-row > i {
  width: 7px;
  height: 7px;
  margin-top: 4px;
  background: var(--blue);
}

.activity-row[data-tone="run"] > i { background: var(--purple); }
.activity-row[data-tone="success"] > i { background: var(--green); }
.activity-row[data-tone="wait"] > i { background: var(--amber); }

.activity-row strong,
.activity-row span {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--mono);
}

.activity-row strong {
  color: #ddd;
  font-size: 9px;
}

.activity-row span {
  margin-top: 3px;
  color: #555;
  font-size: 8px;
}

.terminal-statusbar {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid #1a1a00;
  background: #050700;
  padding: 0 14px;
  overflow: hidden;
  color: #777;
  font-family: var(--mono);
  font-size: 9px;
  white-space: nowrap;
}

.terminal-statusbar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.terminal-statusbar strong {
  color: #ccc;
  font-weight: 500;
}

.terminal-statusbar span:first-child strong {
  color: var(--green);
}

.status-spacer {
  flex: 1;
}

.overview-band {
  background: var(--bg);
}

.hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 34px;
  align-items: start;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.hub {
  min-height: 112px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  border: 0;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  padding: 18px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.hub:nth-child(even) {
  border-right: 0;
}

.hub:hover,
.hub[aria-selected="true"] {
  background: var(--surface);
}

.hub[aria-selected="true"] strong,
.hub[aria-selected="true"] > span {
  color: var(--accent-strong);
}

.hub > span {
  grid-row: 1 / 3;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
}

.hub strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.hub small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.hub-detail {
  min-height: 336px;
  border-left: 1px solid var(--accent);
  background: var(--surface);
  padding: 28px;
  transition: opacity 120ms ease, transform 120ms ease;
}

.hub-detail.is-switching {
  opacity: 0.35;
  transform: translateY(6px);
}

.hub-detail-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hub-detail-heading span,
.hub-detail dt {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.hub-detail-heading strong {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.hub-detail > p {
  color: var(--text-2);
}

.hub-detail dl {
  margin: 28px 0 0;
}

.hub-detail dl div {
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
}

.hub-detail dd {
  margin: 5px 0 0;
  color: var(--text-2);
  font-size: 13px;
}

.system-band {
  border-block: 1px solid var(--line-soft);
  background: #151311;
}

.system-layout,
.trust-layout,
.install-layout,
.control-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 82px;
  align-items: start;
}

.system-intro,
.control-copy,
.trust-intro,
.install-copy {
  position: sticky;
  top: 112px;
}

.system-intro h2,
.control-copy h2,
.trust-intro h2,
.install-copy h2 {
  font-size: 54px;
}

.work-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.work-flow li {
  min-height: 142px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  opacity: 0.45;
  transition: opacity 420ms ease, transform 420ms var(--ease), border-color 420ms ease;
}

.work-flow li.is-active {
  opacity: 1;
  transform: translateX(8px);
  border-bottom-color: var(--accent);
}

.work-flow li > span,
.feature-row > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
}

.work-flow strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.work-flow p {
  margin: 6px 0 0;
  color: var(--muted);
}

.continuity-band {
  background: var(--paper);
  color: var(--paper-ink);
}

.continuity-band .section-kicker {
  color: #805f24;
}

.narrow-heading {
  max-width: 700px;
}

.feature-list {
  border-top: 1px solid rgba(23, 21, 18, 0.35);
}

.feature-row {
  display: grid;
  grid-template-columns: 55px 0.65fr 1fr;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.22);
}

.feature-row > span {
  color: #805f24;
}

.feature-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.feature-row p {
  margin: 0;
  color: #37322c;
}

.feature-row small {
  display: block;
  margin-top: 10px;
  color: #6c655d;
}

.control-band {
  border-bottom: 1px solid var(--line-soft);
  background: #0b0b0a;
}

.control-layout {
  grid-template-columns: 0.55fr 1.45fr;
  gap: 52px;
}

.control-copy h2 {
  font-size: 48px;
}

.control-visual {
  margin: 0;
  border: 1px solid var(--line);
  background: #060606;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.control-visual img {
  width: 100%;
  height: auto;
}

.control-visual figcaption {
  padding: 10px 13px;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
}

.trust-band {
  background: var(--bg);
}

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

.proof-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 19px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line-soft);
}

.proof-row > span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
}

.proof-row .tone-green { background: var(--green); }
.proof-row .tone-blue { background: var(--blue); }
.proof-row .tone-gold { background: var(--accent); }
.proof-row .tone-coral { background: var(--coral); }

.proof-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.proof-row p {
  margin: 6px 0 0;
  color: var(--muted);
}

.install-band {
  background: var(--paper);
  color: var(--paper-ink);
}

.install-band .section-kicker {
  color: #805f24;
}

.install-copy > p {
  color: #4c4640;
}

.private-note {
  border-left: 2px solid #9a762f;
  padding-left: 14px;
  font-size: 13px !important;
}

.install-console {
  border: 1px solid #2b2925;
  background: #11100f;
  color: var(--text);
}

.install-tabs {
  min-height: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #2b2925;
}

.install-tabs button {
  min-width: 0;
  border: 0;
  border-right: 1px solid #2b2925;
  background: transparent;
  padding: 12px 10px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.install-tabs button:last-child {
  border-right: 0;
}

.install-tabs button[aria-selected="true"] {
  background: var(--accent);
  color: var(--paper-ink);
}

.command-shell {
  transition: opacity 120ms ease, transform 120ms ease;
}

.command-shell.is-switching {
  opacity: 0.3;
  transform: translateY(5px);
}

.command-shell-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px;
  border-bottom: 1px solid #2b2925;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.command-shell-head a {
  color: var(--accent-strong);
}

.command-shell pre {
  min-height: 190px;
  display: flex;
  align-items: center;
  margin: 0;
  overflow: auto;
  padding: 28px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.75;
  white-space: pre-wrap;
}

.install-meta {
  margin: 0;
  padding: 13px 16px;
  border-top: 1px solid #2b2925;
  color: var(--dim);
  font-size: 11px;
}

.downloads-band {
  background: #0c0c0b;
}

.downloads-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

.downloads-heading h2 {
  max-width: 850px;
}

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

.download-row {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr auto;
  gap: 24px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line-soft);
  animation: manifest-row 360ms var(--ease) both;
}

.download-platform strong,
.download-platform span,
.download-file,
.download-hash {
  display: block;
}

.download-platform strong {
  font-size: 14px;
}

.download-platform span,
.download-file,
.download-hash {
  overflow-wrap: anywhere;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
}

.download-platform span,
.download-hash {
  margin-top: 5px;
}

.download-file {
  color: var(--text-2);
}

.download-actions a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 700;
}

.download-actions a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.download-empty {
  margin: 0;
  padding: 28px 0;
  color: var(--muted);
}

.closing-band {
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
}

.closing-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
}

.closing-inner h2 {
  color: var(--accent);
  font-size: 76px;
  font-style: italic;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-deep);
}

.footer-inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-footer img {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}

.footer-inner p {
  color: var(--dim);
  font-size: 12px;
  text-align: center;
}

.footer-links {
  color: var(--muted);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--accent);
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}

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

@keyframes slogan-rise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slogan-rule {
  to { transform: scaleX(1); }
}

@keyframes terminal-caret {
  50% { opacity: 0; }
}

@keyframes terminal-pulse {
  50% { opacity: 0.42; }
}

@keyframes terminal-line {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes manifest-row {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .hero-slogan { font-size: 92px; }
  .section-heading h2,
  .downloads-heading h2,
  .closing-inner h2 { font-size: 54px; }
  .terminal-workbench { grid-template-columns: 180px minmax(0, 1fr) 220px; }
  .system-layout,
  .trust-layout,
  .install-layout { gap: 52px; }
  .control-layout { grid-template-columns: 1fr; }
  .control-copy { position: static; max-width: 760px; }
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand small { display: none; }
  .hero-slogan { font-size: 76px; }
  .terminal-workbench { grid-template-columns: minmax(0, 1fr) 220px; }
  .terminal-sessions { display: none; }
  .hub-layout,
  .system-layout,
  .trust-layout,
  .install-layout { grid-template-columns: 1fr; }
  .hub-detail { min-height: 0; }
  .system-intro,
  .trust-intro,
  .install-copy { position: static; }
  .feature-row { grid-template-columns: 45px 0.8fr 1fr; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 32px, 1216px); }
  .site-header { backdrop-filter: none; }
  .header-inner { min-height: 64px; }
  .brand img { width: 36px; height: 36px; flex-basis: 36px; }
  .brand-name { font-size: 21px; }
  .header-github { display: none; }
  .hero { min-height: calc(100svh - 118px); }
  .hero-inner { padding-top: 38px; padding-bottom: 30px; }
  .hero-kicker { font-size: 9px; }
  #hero-title { margin-top: 19px; font-size: 28px; }
  .hero-slogan { margin-top: 11px; font-size: 59px; line-height: 0.9; }
  .hero-slogan .slogan-word { margin-right: 6px; }
  .hero-slogan em::after { bottom: 3px; height: 3px; }
  .hero-promise { margin-top: 19px; font-size: 23px; }
  .hero-lead { margin-top: 17px; font-size: 15px; }
  .hero-actions { margin-top: 20px; }
  .hero-actions .button { flex: 1; padding-inline: 10px; }
  .hero-command { min-height: 50px; margin-top: 18px; padding: 9px 11px; }
  .release-strip-inner { min-height: 72px; grid-template-columns: 1fr auto; }
  .release-strip-inner > div { padding: 12px 14px; }
  .release-strip-inner > div:nth-child(2),
  .release-strip-inner > div:nth-child(3) { display: none; }
  .release-state { min-width: 0; flex-direction: row !important; }
  .release-state strong { max-width: 120px; }
  .band,
  .terminal-band,
  .closing-band { padding: 78px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2,
  .system-intro h2,
  .control-copy h2,
  .trust-intro h2,
  .install-copy h2,
  .downloads-heading h2,
  .closing-inner h2 { font-size: 42px; }
  .terminal-demo { overflow: visible; border-inline: 0; margin-inline: -14px; }
  .terminal-chrome { min-height: 54px; flex-wrap: wrap; }
  .terminal-location { display: none; }
  .demo-label { margin-left: 0; }
  .demo-actions { margin-left: auto; }
  .terminal-app { min-height: 570px; grid-template-rows: 58px 48px minmax(420px, 1fr) 36px; }
  .terminal-topbar { grid-template-columns: 1fr auto; padding: 9px 12px; }
  .terminal-session { display: none; }
  .terminal-commandbar { grid-template-columns: auto minmax(0, 1fr); padding-inline: 12px; }
  .terminal-model { display: none; }
  .terminal-workbench { grid-template-columns: minmax(0, 1fr); }
  .terminal-activity { display: none; }
  .terminal-output { max-height: 420px; padding: 17px 15px; font-size: 10px; }
  .terminal-statusbar { gap: 12px; padding-inline: 10px; }
  .terminal-statusbar span:nth-child(3) { display: none; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub { border-right: 0; }
  .hub-detail { padding: 23px; }
  .feature-row { grid-template-columns: 38px 1fr; gap: 16px; }
  .feature-row > div { grid-column: 2; }
  .control-layout { gap: 34px; }
  .control-visual { margin-inline: -14px; border-inline: 0; }
  .downloads-heading { align-items: start; flex-direction: column; }
  .download-row { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
  .download-actions { width: 100%; }
  .download-actions a { flex: 1; justify-content: center; }
  .closing-inner { align-items: start; flex-direction: column; }
  .footer-inner { min-height: 150px; grid-template-columns: 1fr; justify-items: start; padding-block: 26px; }
  .footer-inner p { margin: 0; text-align: left; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 420px) {
  .shell { width: min(100% - 28px, 1216px); }
  .hero-slogan { font-size: 52px; }
  .hero-promise { font-size: 21px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-command strong { display: none; }
  .release-state strong { max-width: 96px; font-size: 10px; }
  .terminal-heading h2 { font-size: 38px; }
  .terminal-chrome { padding-inline: 10px; }
  .demo-label { width: 100%; order: 3; }
  .demo-actions { order: 2; }
  .terminal-brand strong { font-size: 18px; }
  .terminal-state { font-size: 9px; }
  .terminal-statusbar span:nth-child(2) { display: none; }
  .install-tabs button { font-size: 10px; }
  .command-shell pre { min-height: 170px; padding: 20px; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .motion-ready .hero-slogan .slogan-word,
  .reveal-ready .reveal-item,
  .work-flow li {
    opacity: 1;
    transform: none;
  }
  .motion-ready .hero-slogan em::after {
    transform: scaleX(1);
  }
}
