:root {
  color-scheme: dark;
  --bg: #0a0d0c;
  --bg-raised: #101513;
  --panel: #151b18;
  --panel-strong: #1b231f;
  --line: #28312d;
  --line-strong: #3a4741;
  --text: #edf3ef;
  --text-soft: #a9b4ae;
  --text-muted: #6d7872;
  --green: #58c7a0;
  --green-bright: #76e1ba;
  --orange: #e97951;
  --blue: #68a9e8;
  --violet: #a78bfa;
  --amber: #d6a34a;
  --cyan: #52c7d9;
  --sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --mono:
    "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  top: -300px;
  left: 50%;
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(88 199 160 / 9%), transparent 68%);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

::selection {
  color: #07110d;
  background: var(--green);
}

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

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

button {
  font: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: #07110d;
  background: var(--green);
  font-weight: 700;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgb(10 13 12 / 74%);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgb(10 13 12 / 94%);
}

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

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.brand small {
  margin-left: 2px;
  color: var(--text-muted);
  font: 9px/1 var(--mono);
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgb(88 199 160 / 38%);
  border-radius: 7px;
  color: var(--green);
  background: rgb(88 199 160 / 9%);
}

.brand-mark svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.nav-links a {
  position: relative;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

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

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

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

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font: 9px/1 var(--mono);
}

.language-switch button {
  padding: 3px;
  border: 0;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
}

.language-switch button.active,
.language-switch button:hover {
  color: var(--green);
}

.github-link {
  display: inline-flex;
  height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 650;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.github-link:hover {
  border-color: var(--line-strong);
  color: var(--text);
  background: var(--panel);
}

.github-link svg {
  width: 15px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 15px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  display: grid;
  min-height: 790px;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 68px;
  padding-top: 112px;
}

.eyebrow,
.section-index {
  color: var(--green);
  font: 10px/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgb(88 199 160 / 11%);
}

.hero h1 {
  margin: 25px 0 25px;
  font-size: clamp(54px, 6.3vw, 92px);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 10px;
  color: var(--green);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 720;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  border-color: var(--green);
  color: #06110d;
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-bright);
}

.button.secondary {
  color: var(--text);
  background: rgb(255 255 255 / 2%);
}

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

.button svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 29px;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font: 9px/1 var(--mono);
}

.hero-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
}

.hero-meta b {
  font-weight: 500;
}

.hero-console {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #0d110f;
  box-shadow:
    0 34px 100px rgb(0 0 0 / 42%),
    0 0 0 1px rgb(88 199 160 / 4%);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.console-topbar {
  display: grid;
  height: 37px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid #202723;
  color: #68736d;
  background: #151a17;
  font: 8px/1 var(--mono);
}

.traffic-lights {
  display: flex;
  gap: 5px;
}

.traffic-lights i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3c4541;
}

.traffic-lights i:first-child {
  background: var(--orange);
}

.traffic-lights i:nth-child(2) {
  background: var(--amber);
}

.traffic-lights i:last-child {
  background: var(--green);
}

.console-topbar small {
  justify-self: end;
  color: var(--green);
  font: 7px/1 var(--mono);
}

.console-body {
  display: grid;
  min-height: 380px;
  grid-template-columns: 128px 1fr;
}

.console-sidebar {
  padding: 15px 8px;
  border-right: 1px solid #202723;
  background: #101412;
}

.console-label {
  display: block;
  margin: 0 7px 9px;
  color: #555f59;
  font: 7px/1 var(--mono);
  letter-spacing: 0.08em;
}

.console-workspace {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 7px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #69736e;
}

.console-workspace.active {
  border-color: #2d4b40;
  color: #d8e5de;
  background: #18231f;
  box-shadow: inset 2px 0 var(--green);
}

.console-workspace > i {
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 3px;
  opacity: 0.65;
}

.console-workspace span,
.console-workspace b,
.console-workspace small {
  display: block;
}

.console-workspace b {
  overflow: hidden;
  max-width: 80px;
  font-size: 8px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.console-workspace small {
  margin-top: 3px;
  color: #59645e;
  font: 6px/1 var(--mono);
}

.console-main {
  display: grid;
  min-width: 0;
  grid-template-rows: 34px 1fr 22px;
}

.console-tabs {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border-bottom: 1px solid #202723;
}

.console-tabs span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-right: 1px solid #202723;
  color: #58625d;
  font: 7px/1 var(--mono);
  white-space: nowrap;
}

.console-tabs span.active {
  color: #c7d6ce;
  box-shadow: inset 0 -1px var(--green);
}

.console-tabs i,
.console-status i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.terminal-card {
  margin: 11px;
  border: 1px solid #2b3732;
  border-radius: 4px;
  background: #0d100f;
  box-shadow: inset 0 2px var(--green);
}

.terminal-title {
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  border-bottom: 1px solid #222b27;
  color: #d8e4de;
  background: #161c19;
  font: 8px/1 var(--mono);
}

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

.terminal-title i {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: #243c33;
  box-shadow: inset 0 0 0 1px #386653;
}

.terminal-title small {
  color: #69756e;
  font: 6px/1 var(--mono);
}

.terminal-card pre {
  margin: 0;
  padding: 28px 18px;
  color: #9da9a3;
  font: 9px/1.9 var(--mono);
}

.terminal-card pre b {
  color: #dfe9e4;
  font-weight: 500;
}

.terminal-card .muted {
  color: #56615b;
}

.terminal-card .green {
  color: var(--green);
}

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

.terminal-card .prompt {
  color: var(--blue);
}

.cursor {
  display: inline-block;
  width: 5px;
  height: 11px;
  margin-left: 3px;
  background: var(--green);
  vertical-align: -2px;
  animation: blink 1.1s steps(1) infinite;
}

.console-status {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 9px;
  border-top: 1px solid #202723;
  color: #53605a;
  background: #121613;
  font: 6px/1 var(--mono);
}

.console-status span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.console-status span:last-child {
  margin-left: auto;
}

.signal-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0d110f;
}

.signal-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  padding: 19px 28px;
  color: #6d7872;
  font: 9px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-track i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #35403a;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.68fr);
  align-items: end;
  gap: 90px;
  margin-bottom: 54px;
}

.section-heading h2,
.model-copy h2,
.principles-copy h2,
.cta-section h2 {
  max-width: 720px;
  margin: 15px 0 0;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.section-heading p,
.model-copy > p,
.principles-copy > p,
.cta-section p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.85;
}

.product-frame,
.settings-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #101412;
  box-shadow: 0 30px 90px rgb(0 0 0 / 30%);
}

.product-frame::before,
.settings-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 3%);
  content: "";
  pointer-events: none;
}

.frame-label {
  display: flex;
  height: 37px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  background: #151a17;
  font: 8px/1 var(--mono);
}

.frame-label span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.frame-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.product-frame img {
  width: 100%;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 190px;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgb(13 17 15 / 74%);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  color: var(--green);
  font: 30px/1 var(--mono);
  letter-spacing: -0.07em;
}

.metric span {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 700;
}

.metric p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.65;
}

.capabilities-section,
.roadmap-section {
  border-block: 1px solid var(--line);
  background: #0d110f;
}

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

.bento {
  position: relative;
  min-height: 330px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg-raised);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.bento:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.bento-large {
  grid-row: span 2;
  min-height: 672px;
}

.bento-wide {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 30px;
}

.card-tag {
  display: inline-flex;
  height: 21px;
  align-items: center;
  padding: 0 7px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font: 7px/1 var(--mono);
  letter-spacing: 0.08em;
}

.card-tag.now {
  color: var(--green);
  background: rgb(88 199 160 / 6%);
}

.card-tag.planned {
  color: var(--violet);
  background: rgb(167 139 250 / 6%);
}

.card-icon {
  display: grid;
  width: 39px;
  height: 39px;
  margin-top: 42px;
  place-items: center;
  border: 1px solid rgb(88 199 160 / 30%);
  border-radius: 6px;
  color: var(--green);
  background: rgb(88 199 160 / 8%);
  font: 18px/1 var(--mono);
}

.card-icon.orange {
  border-color: rgb(233 121 81 / 30%);
  color: var(--orange);
  background: rgb(233 121 81 / 8%);
}

.card-icon.blue {
  border-color: rgb(104 169 232 / 30%);
  color: var(--blue);
  background: rgb(104 169 232 / 8%);
}

.card-icon.violet {
  border-color: rgb(167 139 250 / 30%);
  color: var(--violet);
  background: rgb(167 139 250 / 8%);
}

.card-icon.cyan {
  border-color: rgb(82 199 217 / 30%);
  color: var(--cyan);
  background: rgb(82 199 217 / 8%);
}

.bento h3 {
  margin: 22px 0 10px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.bento p {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.75;
}

.bento code {
  display: block;
  margin-top: 28px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--orange);
  background: #0c100e;
  font: 9px/1 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-stack {
  display: grid;
  gap: 7px;
  margin-top: 52px;
}

.workspace-stack span {
  --tone: var(--green);

  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-soft);
  background: #0d120f;
}

.workspace-stack i {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--tone) 13%, transparent);
  box-shadow: inset 2px 0 var(--tone);
}

.workspace-stack b {
  font-size: 9px;
}

.workspace-stack small {
  color: var(--text-muted);
  font: 7px/1 var(--mono);
}

.provider-row {
  display: flex;
  margin-top: 31px;
}

.provider-row i {
  display: grid;
  width: 32px;
  height: 32px;
  margin-left: -5px;
  place-items: center;
  border: 2px solid var(--bg-raised);
  border-radius: 50%;
  color: #dbe5df;
  background: #26312c;
  font: normal 9px/1 var(--mono);
}

.provider-row i:first-child {
  margin-left: 0;
  background: #6e412f;
}

.provider-row i:nth-child(2) {
  background: #2c4374;
}

.provider-row i:nth-child(3) {
  background: #4b386b;
}

.provider-row i:nth-child(4) {
  background: #28604c;
}

.status-card {
  display: grid;
  gap: 6px;
}

.status-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-soft);
  background: #0c100e;
  font: 8px/1 var(--mono);
}

.status-card span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-card i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

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

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

.blue-bg {
  background: var(--blue);
}

.status-card b {
  color: var(--text-muted);
  font-size: 6px;
}

.bento-wide .card-icon {
  margin-top: 0;
}

.quota-bars {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.quota-bars > span {
  display: grid;
  grid-template-columns: 58px 1fr 26px;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font: 7px/1 var(--mono);
}

.quota-bars b {
  font-weight: 500;
}

.quota-bars > span > i {
  height: 4px;
  overflow: hidden;
  border-radius: 10px;
  background: #29322e;
}

.quota-bars em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--violet);
}

.device-map {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 39px;
}

.device-map > i {
  width: 32px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--line-strong) 0 4px,
    transparent 4px 7px
  );
}

.device {
  display: grid;
  width: 42px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: var(--text-muted);
  background: #0c100e;
  font: 18px/1 var(--mono);
}

.device.phone {
  width: 23px;
}

.hub {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgb(82 199 217 / 50%);
  border-radius: 50%;
  color: var(--cyan);
  background: rgb(82 199 217 / 8%);
  font: 11px/1 var(--mono);
  box-shadow: 0 0 22px rgb(82 199 217 / 10%);
}

.model-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 82px;
}

.model-copy h2 {
  margin-top: 18px;
}

.model-copy > p {
  margin-top: 25px;
}

.model-copy ul {
  display: grid;
  gap: 10px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.model-copy li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
  font-size: 11px;
}

.model-copy li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--green);
  content: "";
}

.settings-frame img {
  width: 100%;
}

.settings-frame figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--text-soft);
  background: rgb(10 13 12 / 88%);
  backdrop-filter: blur(10px);
  font: 7px/1 var(--mono);
}

.settings-frame figcaption span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.settings-frame figcaption i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.roadmap-item {
  min-height: 300px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #101412;
}

.roadmap-item.current {
  background: #142019;
  box-shadow: inset 0 3px var(--green);
}

.roadmap-item > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.roadmap-item > div span {
  color: var(--green);
  font: 13px/1 var(--mono);
}

.roadmap-item > div b {
  color: var(--text-muted);
  font: 6px/1 var(--mono);
  letter-spacing: 0.08em;
}

.roadmap-item h3 {
  margin: 70px 0 12px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.roadmap-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.7;
}

.principles-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.principles-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.principles-copy > p {
  margin-top: 25px;
}

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

.principles-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.principles-list article > span {
  color: var(--green);
  font: 9px/1.5 var(--mono);
}

.principles-list h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.principles-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.75;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  margin-bottom: 100px;
  padding: 72px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgb(88 199 160 / 7%), transparent 46%),
    var(--bg-raised);
  box-shadow: inset 3px 0 var(--green);
}

.cta-section h2 {
  max-width: 670px;
}

.cta-section p {
  max-width: 690px;
  margin-top: 20px;
}

.cta-actions {
  justify-content: flex-end;
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #080b0a;
}

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

.footer-inner > p {
  margin: 0;
  color: var(--text-muted);
  font: 8px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner > div {
  display: flex;
  gap: 18px;
}

.footer-inner > div a,
.footer-inner > small {
  color: var(--text-muted);
  font-size: 9px;
}

.footer-inner > div a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal[data-delay="1"] {
  transition-delay: 80ms;
}

.reveal[data-delay="2"] {
  transition-delay: 160ms;
}

.reveal[data-delay="3"] {
  transition-delay: 240ms;
}

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

@keyframes blink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(930px, calc(100vw - 36px));
  }

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

  .nav-links {
    position: fixed;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #111613;
    box-shadow: 0 20px 50px rgb(0 0 0 / 35%);
  }

  .nav-links.open {
    display: grid;
    gap: 17px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 170px;
    padding-bottom: 100px;
  }

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

  .hero h1 {
    font-size: clamp(62px, 11vw, 96px);
  }

  .hero-console {
    width: min(760px, 100%);
    justify-self: center;
    transform: none;
  }

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

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

  .bento-large {
    grid-row: auto;
    min-height: 390px;
  }

  .bento-wide {
    grid-column: span 2;
  }

  .workspace-stack {
    margin-top: 35px;
  }

  .model-section {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .model-copy {
    max-width: 680px;
  }

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

  .principles-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .principles-copy {
    position: static;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 640px);
  }

  body {
    background-size: 40px 40px;
  }

  .site-header .brand small,
  .github-link span,
  .language-switch span {
    display: none;
  }

  .header-actions {
    gap: 9px;
  }

  .github-link {
    width: 36px;
    justify-content: center;
    padding: 0;
  }

  .hero {
    padding-top: 132px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: clamp(50px, 16.5vw, 74px);
  }

  .hero-lead {
    font-size: 15px;
  }

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

  .hero-meta {
    display: grid;
  }

  .hero-console {
    overflow-x: auto;
  }

  .console-body {
    min-width: 540px;
  }

  .signal-track {
    justify-content: flex-start;
    animation: marquee 22s linear infinite;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .model-copy h2,
  .principles-copy h2,
  .cta-section h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .frame-label small {
    display: none;
  }

  .product-frame {
    overflow-x: auto;
  }

  .product-frame img {
    width: 760px;
    max-width: none;
  }

  .metrics-grid,
  .bento-grid,
  .roadmap-list {
    grid-template-columns: 1fr;
  }

  .bento-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 160px;
  }

  .roadmap-item {
    min-height: 250px;
  }

  .roadmap-item h3 {
    margin-top: 50px;
  }

  .settings-frame {
    overflow-x: auto;
  }

  .settings-frame img {
    width: 760px;
    max-width: none;
  }

  .settings-frame figcaption {
    display: none;
  }

  .cta-section {
    width: calc(100vw - 28px);
    margin-bottom: 70px;
    padding: 42px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding-block: 28px;
  }

  .footer-inner > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-inner > div {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  @keyframes marquee {
    to {
      transform: translateX(-35%);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
