:root {
  --bg: #06100d;
  --bg-deep: #030806;
  --surface: #091912;
  --surface-raised: #0c2118;
  --surface-soft: rgba(10, 28, 20, 0.74);
  --text: #eff8f1;
  --text-soft: #c9d8ce;
  --muted: #7d9487;
  --muted-deep: #4b6256;
  --accent: #b7ff5c;
  --accent-rgb: 183, 255, 92;
  --mint: #45ffa7;
  --line: rgba(132, 183, 152, 0.16);
  --line-strong: rgba(183, 255, 92, 0.34);
  --mono: "SFMono-Regular", "Cascadia Code", "Roboto Mono", Menlo, Monaco, Consolas, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 10%, rgba(20, 84, 50, 0.15), transparent 28rem),
    radial-gradient(circle at 12% 58%, rgba(17, 68, 50, 0.1), transparent 32rem),
    var(--bg);
  font-family: var(--mono);
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--bg-deep);
  background: var(--accent);
}

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--bg-deep);
  background: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.background-grid,
.noise {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}

.background-grid {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(105, 185, 129, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 185, 129, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.18) 72%, transparent);
  animation: grid-drift 26s linear infinite;
}

.background-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(ellipse at center, transparent 32%, var(--bg) 94%);
}

.noise {
  z-index: -1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.site-shell {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.68);
  border-radius: 9px;
  color: var(--bg-deep);
  background: var(--accent);
  box-shadow: 0 0 28px rgba(var(--accent-rgb), 0.15);
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  letter-spacing: -0.07em;
  font-size: 18px;
  font-weight: 690;
  line-height: 1;
}

.brand-copy small,
.header-meta,
.site-nav,
.eyebrow,
.signal-label,
.console-title,
.console-live,
.console-body,
.console-footer,
.pipeline-card code,
.command-label,
.copy-button,
.manifesto-rail,
.aside-label,
.aside-foot,
.footer-bottom,
.footer-top {
  font-family: var(--mono);
}

.brand-copy small {
  color: var(--muted);
  letter-spacing: 0.04em;
  font-size: 8px;
  line-height: 1;
}

.header-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: var(--muted);
  letter-spacing: 0.09em;
  font-size: 9px;
  text-transform: uppercase;
}

.header-divider {
  color: var(--muted-deep);
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.09), 0 0 18px rgba(var(--accent-rgb), 0.74);
  animation: dot-pulse 2.6s ease-in-out infinite;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--muted);
  letter-spacing: 0.03em;
  font-size: 10px;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

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

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-deploy {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.04);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-deploy:hover {
  background: rgba(var(--accent-rgb), 0.13);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.12);
  transform: translateY(-2px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.13em;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow > span {
  color: var(--muted-deep);
}

.hero {
  position: relative;
  display: grid;
  min-height: 655px;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
  align-items: center;
  gap: clamp(40px, 7vw, 104px);
  padding: 92px 0 84px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: 11%;
  width: min(60vw, 720px);
  height: min(60vw, 720px);
  border: 1px solid rgba(var(--accent-rgb), 0.06);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 50px rgba(var(--accent-rgb), 0.015), 0 0 0 130px rgba(var(--accent-rgb), 0.01);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-signal-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 25px 0 20px;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.38);
  border-radius: 13px;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.035);
  box-shadow: inset 0 0 28px rgba(var(--accent-rgb), 0.06), 0 0 32px rgba(var(--accent-rgb), 0.08);
  transform: rotate(-5deg);
  animation: signal-mark-float 4.8s ease-in-out infinite;
}

.hero-signal-mark svg {
  width: 68%;
  height: 68%;
  overflow: visible;
}

.hero-signal-mark .signal-ring {
  stroke: currentColor;
  stroke-width: 1.6;
  opacity: 0.23;
}

.hero-signal-mark .signal-line {
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 92;
  animation: signal-line-pulse 3s ease-in-out infinite;
}

.hero h1 {
  max-width: 650px;
  margin: 24px 0 27px;
  letter-spacing: -0.012em;
  word-spacing: 0.025em;
  font-size: clamp(62px, 7.7vw, 106px);
  font-weight: 520;
  line-height: 0.92;
}

.hero h1 > span {
  display: block;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, var(--text) 12%, var(--accent) 53%, var(--mint) 93%);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 180% 100%;
  animation: title-shimmer 9s ease-in-out infinite;
}

.hero-lede {
  max-width: 510px;
  margin: 0;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.64;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  color: var(--bg-deep);
  background: var(--accent);
  box-shadow: 0 0 0 rgba(var(--accent-rgb), 0);
}

.button-primary:hover {
  box-shadow: 0 12px 34px rgba(var(--accent-rgb), 0.2);
  transform: translateY(-2px);
}

.button-quiet {
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: rgba(7, 23, 16, 0.48);
}

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

.console-wrap {
  position: relative;
  z-index: 1;
}

.console-glow {
  position: absolute;
  top: 7%;
  right: 8%;
  bottom: 9%;
  left: 8%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  filter: blur(56px);
  opacity: 0.65;
}

.console-window {
  overflow: hidden;
  border: 1px solid rgba(148, 212, 169, 0.27);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(11, 36, 25, 0.94), rgba(4, 14, 9, 0.98));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.04);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), border-color 200ms ease;
}

.console-window:hover {
  border-color: rgba(var(--accent-rgb), 0.55);
  transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-4px);
}

.console-bar {
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 10, 6, 0.42);
}

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

.console-lights span {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.console-lights span:first-child {
  background: #ff8d7a;
}

.console-lights span:nth-child(2) {
  background: #ffcf6d;
}

.console-lights span:last-child {
  background: var(--accent);
}

.console-title,
.console-live {
  color: var(--muted);
  letter-spacing: 0.05em;
  font-size: 9px;
}

.console-title {
  text-align: center;
}

.console-live {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--accent);
  text-transform: uppercase;
}

.console-live .status-dot {
  width: 5px;
  height: 5px;
}

.console-body {
  min-height: 388px;
  padding: 25px 26px 20px;
  color: #dcebe0;
  letter-spacing: -0.02em;
  font-size: 11px;
  line-height: 1.52;
}

.console-command {
  margin-top: 14px;
  color: var(--text);
}

.console-command:first-child {
  margin-top: 0;
}

.prompt {
  margin-right: 8px;
  color: var(--accent);
}

.console-command em {
  color: #d9adff;
  font-style: normal;
}

.console-output {
  padding-left: 20px;
  color: var(--text-soft);
}

.console-output.muted {
  color: var(--muted);
}

.console-output.success {
  color: var(--mint);
}

.console-output strong,
.console-deploy strong {
  color: var(--accent);
  font-weight: 500;
}

.console-deploy {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  color: var(--text-soft);
  background: rgba(var(--accent-rgb), 0.07);
}

.deploy-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 13px var(--accent);
}

.console-footer {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.045);
  cursor: pointer;
  letter-spacing: 0.06em;
  font-size: 9px;
  text-align: left;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.console-footer:hover,
.console-footer.is-running {
  background: rgba(var(--accent-rgb), 0.13);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.signal-item {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.signal-item:first-child {
  padding-left: 0;
}

.signal-item:last-child {
  border-right: 0;
}

.signal-label {
  color: var(--muted);
  letter-spacing: 0.11em;
  font-size: 8px;
  text-transform: uppercase;
}

.signal-item strong {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 500;
  text-transform: uppercase;
}

.signal-item:first-child strong {
  color: var(--accent);
}

.signal-caret {
  color: var(--accent);
  animation: caret-blink 1.1s steps(1) infinite;
}

.tooling-strip {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px solid var(--line);
}

.tooling-intro {
  display: flex;
  min-width: 154px;
  flex-direction: column;
  gap: 5px;
}

.tooling-caption,
.tooling-status {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tooling-tags {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.tooling-tags code {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-soft);
  background: rgba(7, 23, 16, 0.62);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.02em;
}

.tooling-tags code:nth-child(3),
.tooling-tags code:nth-child(6) {
  border-color: rgba(var(--accent-rgb), 0.28);
  color: var(--accent);
}

.tooling-status {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 8px;
  color: var(--accent);
}

.tooling-status .status-dot {
  width: 5px;
  height: 5px;
}

.quote-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.26fr minmax(0, 1.55fr) minmax(190px, 0.6fr);
  align-items: start;
  gap: clamp(30px, 5vw, 82px);
  padding: 150px 0 166px;
}

.quote-index {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.quote-index-mark {
  color: var(--muted-deep);
  font-family: var(--mono);
  font-size: 48px;
  line-height: 1;
}

.quote-main h2,
.section-heading h2,
.manifesto-teaser h2 {
  margin: 0;
  letter-spacing: -0.035em;
  font-size: clamp(34px, 4.3vw, 62px);
  font-weight: 520;
  line-height: 0.98;
}

.quote-main h2 span,
.section-heading h2 span {
  color: var(--muted);
}

.quote-card {
  position: relative;
  margin: 45px 0 0;
  padding: 34px 36px 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(13, 38, 27, 0.84), rgba(6, 17, 11, 0.77));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.quote-mark {
  position: absolute;
  top: 22px;
  right: 30px;
  color: rgba(var(--accent-rgb), 0.22);
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 0.8;
}

.quote-card p {
  position: relative;
  max-width: 730px;
  margin: 0;
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.68;
}

.quote-card cite {
  display: block;
  margin-top: 29px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-aside,
.prose-hero-note {
  min-height: 262px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(7, 21, 14, 0.65);
}

.quote-aside {
  display: flex;
  flex-direction: column;
}

.aside-label,
.aside-foot {
  color: var(--muted);
  letter-spacing: 0.1em;
  font-size: 8px;
  text-transform: uppercase;
}

.aside-label {
  color: var(--accent);
}

.signal-wave {
  display: flex;
  height: 58px;
  align-items: center;
  gap: 4px;
  margin: 32px 0 27px;
}

.signal-wave i {
  display: block;
  width: 3px;
  height: 17px;
  border-radius: 5px;
  background: var(--accent);
  opacity: 0.54;
  animation: wave 1.7s ease-in-out infinite;
}

.signal-wave i:nth-child(2) { height: 31px; animation-delay: -0.55s; }
.signal-wave i:nth-child(3) { height: 47px; animation-delay: -0.85s; }
.signal-wave i:nth-child(4) { height: 26px; animation-delay: -0.3s; }
.signal-wave i:nth-child(5) { height: 52px; animation-delay: -1.1s; }
.signal-wave i:nth-child(6) { height: 30px; animation-delay: -0.6s; }
.signal-wave i:nth-child(7) { height: 18px; animation-delay: -0.18s; }
.signal-wave i:nth-child(8) { height: 41px; animation-delay: -0.8s; }
.signal-wave i:nth-child(9) { height: 28px; animation-delay: -1.25s; }
.signal-wave i:nth-child(10) { height: 49px; animation-delay: -0.44s; }
.signal-wave i:nth-child(11) { height: 22px; animation-delay: -1.02s; }
.signal-wave i:nth-child(12) { height: 36px; animation-delay: -0.68s; }

.quote-aside p {
  margin: 0;
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.65;
}

.aside-foot {
  margin-top: auto;
  padding-top: 24px;
  color: var(--muted-deep);
}

.pipeline-section {
  position: relative;
  padding: 0 0 160px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-top: 18px;
  font-size: clamp(43px, 5.5vw, 77px);
}

.section-heading > p {
  max-width: 370px;
  margin: 0 0 5px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
}

.pipeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}

.pipeline-track::before {
  position: absolute;
  z-index: 1;
  top: 28px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), 0.16));
  opacity: 0.42;
}

.pipeline-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 23px 23px 20px;
  background: linear-gradient(155deg, rgba(12, 34, 23, 0.95), rgba(5, 16, 10, 0.97));
  transition: background 220ms ease, transform 220ms ease;
}

.pipeline-card:hover {
  z-index: 2;
  background: linear-gradient(155deg, rgba(18, 54, 35, 0.98), rgba(6, 20, 12, 0.98));
  transform: translateY(-4px);
}

.pipeline-number {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}

.pipeline-glyph {
  position: relative;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  margin-top: 34px;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.27);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.055);
  font-family: var(--mono);
  font-size: 25px;
  box-shadow: 0 0 0 11px rgba(var(--accent-rgb), 0.018);
}

.pipeline-card h3 {
  margin: 25px 0 0;
  letter-spacing: -0.055em;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
}

.pipeline-card p {
  min-height: 77px;
  margin: 13px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.pipeline-card code {
  display: block;
  margin-top: auto;
  color: var(--text-soft);
  font-size: 9px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.pipeline-card-deploy {
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  background: linear-gradient(155deg, rgba(40, 85, 38, 0.82), rgba(7, 27, 15, 0.98));
}

.pipeline-card-deploy .pipeline-glyph {
  border-color: var(--accent);
  color: var(--bg-deep);
  background: var(--accent);
  box-shadow: 0 0 29px rgba(var(--accent-rgb), 0.22), 0 0 0 11px rgba(var(--accent-rgb), 0.04);
}

.card-status {
  position: absolute;
  top: 24px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-status .status-dot {
  width: 5px;
  height: 5px;
}

.pipeline-card.is-complete .pipeline-glyph {
  color: var(--bg-deep);
  background: var(--accent);
}

.pipeline-card.is-current {
  border-color: var(--accent);
  box-shadow: inset 0 0 42px rgba(var(--accent-rgb), 0.08);
}

.command-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 15, 9, 0.73);
}

.command-line > div {
  min-width: 0;
}

.command-label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  letter-spacing: 0.1em;
  font-size: 8px;
  text-transform: uppercase;
}

.command-line code {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 11px;
}

.command-line em {
  color: #d9adff;
  font-style: normal;
}

.copy-button {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease;
}

.copy-button:hover,
.copy-button.is-copied {
  border-color: var(--line-strong);
  background: rgba(var(--accent-rgb), 0.09);
}

.manifesto-teaser {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 150px;
  padding: 45px 0 51px;
  border-block: 1px solid var(--line);
}

.manifesto-teaser h2 {
  margin-top: 18px;
  font-size: clamp(38px, 4.8vw, 66px);
}

.teaser-copy {
  max-width: 370px;
}

.teaser-copy p {
  margin: 0 0 25px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-footer {
  padding: 0 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 25px;
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
}

.footer-brand .brand-mark {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  font-size: 15px;
}

.brand-boat {
  display: block;
  width: 48px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.16));
}

.footer-main p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.65;
  text-transform: uppercase;
}

.footer-main p span {
  color: var(--accent);
}

.footer-top {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--muted-deep);
  letter-spacing: 0.06em;
  font-size: 8px;
  text-transform: uppercase;
}

/* Manifesto */
.prose-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 60px;
  padding: 112px 0 92px;
  border-bottom: 1px solid var(--line);
}

.prose-hero h1 {
  margin: 21px 0 0;
  letter-spacing: -0.045em;
  font-size: clamp(76px, 11vw, 150px);
  font-weight: 520;
  line-height: 0.8;
}

.prose-hero-note {
  min-height: 195px;
  align-self: end;
}

.prose-hero-note p {
  max-width: 310px;
  margin: 36px 0 25px;
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: 0.27fr 1fr;
  gap: clamp(40px, 9vw, 140px);
  padding: 105px 0 115px;
}

.manifesto-rail {
  position: sticky;
  top: 32px;
  display: flex;
  height: max-content;
  flex-direction: column;
  gap: 20px;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-size: 9px;
  line-height: 1.65;
  text-transform: uppercase;
}

.manifesto-rail span:nth-child(3) {
  color: var(--muted-deep);
}

.manifesto-rail a {
  width: max-content;
  margin-top: 34px;
  color: var(--accent);
}

.manifesto-rail a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.rail-line {
  width: 1px;
  height: 64px;
  margin-bottom: 5px;
  background: linear-gradient(var(--accent), transparent);
}

.manifesto-copy {
  max-width: 790px;
}

.manifesto-copy p {
  margin: 0 0 32px;
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: clamp(18px, 2.05vw, 25px);
  line-height: 1.76;
  letter-spacing: -0.022em;
}

.manifesto-copy p:nth-child(2),
.manifesto-copy p:nth-child(5),
.manifesto-copy p:nth-child(9),
.manifesto-copy p:nth-child(10),
.manifesto-copy p:nth-child(17),
.manifesto-copy p:nth-child(22) {
  color: var(--accent);
}

.manifesto-copy .manifesto-break {
  margin: 59px 0 51px;
  color: var(--muted-deep);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.manifesto-copy .manifesto-final {
  margin-top: 74px;
  margin-bottom: 0;
  padding: 31px 0 0;
  border-top: 1px solid var(--line-strong);
  color: var(--text);
}

.manifesto-end {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 29px 0 31px;
  border-block: 1px solid var(--line);
}

.end-mark {
  color: var(--muted-deep);
  font-family: var(--mono);
  font-size: 35px;
}

.manifesto-end p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Reveal states and motion */
.reveal {
  animation: reveal-up 800ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-delay {
  animation-delay: 110ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grid-drift {
  to {
    background-position: 52px 52px;
  }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 0.56; }
  50% { opacity: 1; }
}

@keyframes caret-blink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@keyframes title-shimmer {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0 0; }
}

@keyframes wave {
  0%, 100% { opacity: 0.38; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes signal-mark-float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes signal-line-pulse {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.72; }
  50% { stroke-dashoffset: -38; opacity: 1; }
}

@keyframes orbit-spin {
  to { transform: rotate(1turn); }
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  width: min(50vw, 600px);
  height: min(50vw, 600px);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-spin 36s linear infinite;
}

.hero-orbit::before {
  position: absolute;
  top: 14%;
  left: 3%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 22px var(--accent);
}

.orbit-one {
  top: 7%;
  right: 1%;
}

.orbit-two {
  top: 18%;
  right: 9%;
  width: min(36vw, 430px);
  height: min(36vw, 430px);
  border-style: dashed;
  opacity: 0.47;
  animation-direction: reverse;
  animation-duration: 25s;
}

.orbit-two::before {
  top: auto;
  right: 11%;
  bottom: 8%;
  left: auto;
  width: 5px;
  height: 5px;
}

.hero-spark {
  position: absolute;
  z-index: -1;
  width: 130px;
  height: 1px;
  opacity: 0.26;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  pointer-events: none;
  animation: spark-float 7s ease-in-out infinite;
}

.spark-one {
  top: 26%;
  left: 2%;
  transform: rotate(-18deg);
}

.spark-two {
  right: 0;
  bottom: 28%;
  animation-delay: -3.4s;
  transform: rotate(23deg);
}

@keyframes spark-float {
  50% { opacity: 0.62; translate: 25px -14px; }
}

.paper-boat {
  position: absolute;
  z-index: 0;
  width: 112px;
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.25));
}

.paper-boat-orbit {
  top: 15%;
  right: 4%;
  width: 166px;
  opacity: 0.76;
  animation: boat-orbit 12s ease-in-out infinite;
}

.paper-boat-quote {
  top: 17%;
  right: 5%;
  width: 106px;
  opacity: 0.44;
  animation: boat-drift 10s ease-in-out -2.5s infinite;
}

.paper-boat-pipeline {
  top: -34px;
  right: 2%;
  width: 118px;
  opacity: 0.37;
  animation: boat-drift 11s ease-in-out -5s infinite;
}

.paper-boat-manifesto {
  top: 25%;
  right: -13px;
  width: 164px;
  opacity: 0.43;
  animation: boat-drift 12s ease-in-out -3.5s infinite;
}

.quote-section > :not(.paper-boat),
.pipeline-section > :not(.paper-boat),
.prose-hero > :not(.paper-boat) {
  position: relative;
  z-index: 1;
}

@keyframes boat-orbit {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-12deg); }
  50% { transform: translate3d(-22px, 16px, 0) rotate(-4deg); }
}

@keyframes boat-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(8deg); }
  50% { transform: translate3d(-12px, -11px, 0) rotate(14deg); }
}

@media (max-width: 900px) {
  .site-header {
    gap: 18px;
  }

  .header-meta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 96px;
  }

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

  .paper-boat-orbit {
    top: 39%;
    right: 4%;
    width: 135px;
  }

  .console-wrap {
    width: min(100%, 570px);
    margin-left: auto;
  }

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

  .quote-aside {
    grid-column: 2;
    min-height: 210px;
  }

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

  .pipeline-track::before {
    display: none;
  }

  .prose-hero {
    grid-template-columns: 1fr 0.8fr;
  }

  .manifesto-layout {
    grid-template-columns: 0.2fr 1fr;
    gap: 45px;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    min-height: 72px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-boat {
    width: 43px;
    height: 29px;
  }

  .site-nav {
    gap: 15px;
    font-size: 9px;
  }

  .site-nav .nav-link:first-child {
    display: none;
  }

  .nav-deploy {
    padding: 9px 10px;
  }

  .hero {
    min-height: 0;
    gap: 45px;
    padding: 73px 0 68px;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(48px, 15.2vw, 76px);
  }

  .hero-signal-mark {
    width: 48px;
    height: 48px;
    margin-top: 22px;
  }

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

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

  .button {
    min-height: 46px;
  }

  .console-window {
    transform: none;
  }

  .console-window:hover {
    transform: translateY(-3px);
  }

  .console-bar {
    grid-template-columns: 55px 1fr 51px;
    padding-inline: 11px;
  }

  .console-body {
    min-height: 0;
    padding: 21px 17px 19px;
    font-size: 9px;
  }

  .console-output {
    padding-left: 16px;
  }

  .console-footer {
    min-height: 40px;
  }

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

  .signal-item,
  .signal-item:first-child {
    min-height: 76px;
    padding: 0 13px;
  }

  .signal-item:nth-child(2) {
    border-right: 0;
  }

  .signal-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .tooling-strip {
    display: block;
    padding: 22px 0;
  }

  .tooling-tags {
    margin: 17px 0 14px;
  }

  .quote-section {
    display: block;
    padding: 94px 0 107px;
  }

  .quote-index {
    display: flex;
    min-height: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
  }

  .quote-index-mark {
    font-size: 29px;
  }

  .quote-main h2,
  .section-heading h2,
  .manifesto-teaser h2 {
    font-size: 39px;
  }

  .quote-card {
    margin-top: 31px;
    padding: 26px 20px 24px;
  }

  .quote-card p {
    font-size: 16px;
    line-height: 1.71;
  }

  .quote-mark {
    top: 18px;
    right: 18px;
    font-size: 68px;
  }

  .quote-card cite {
    font-size: 8px;
  }

  .quote-aside {
    min-height: 210px;
    margin-top: 13px;
  }

  .pipeline-section {
    padding-bottom: 100px;
  }

  .section-heading,
  .manifesto-teaser {
    display: block;
  }

  .section-heading {
    margin-bottom: 33px;
  }

  .section-heading > p {
    margin-top: 25px;
    font-size: 14px;
  }

  .pipeline-track {
    grid-template-columns: 1fr;
  }

  .pipeline-card {
    min-height: 265px;
  }

  .pipeline-card p {
    min-height: 0;
  }

  .command-line {
    display: block;
    padding: 17px;
  }

  .command-line code {
    display: block;
    overflow-wrap: anywhere;
    font-size: 9px;
    line-height: 1.7;
  }

  .copy-button {
    margin-top: 17px;
  }

  .manifesto-teaser {
    margin-bottom: 105px;
    padding: 31px 0 35px;
  }

  .teaser-copy {
    margin-top: 25px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    padding: 26px 0 31px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 9px;
    line-height: 1.5;
  }

  /* Manifesto mobile */
  .prose-hero {
    display: block;
    padding: 79px 0 65px;
  }

  .paper-boat-manifesto {
    top: 23%;
    right: -25px;
    width: 128px;
  }

  .prose-hero h1 {
    margin-top: 24px;
    font-size: clamp(70px, 22vw, 126px);
  }

  .prose-hero-note {
    min-height: 0;
    margin-top: 48px;
    padding: 19px;
  }

  .prose-hero-note p {
    margin: 27px 0 23px;
    font-size: 14px;
  }

  .manifesto-layout {
    display: block;
    padding: 69px 0 80px;
  }

  .manifesto-rail {
    position: static;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 15px;
    margin-bottom: 63px;
  }

  .manifesto-rail .rail-line {
    display: none;
  }

  .manifesto-rail span:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
  }

  .manifesto-rail span:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .manifesto-rail a {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    margin-top: 0;
  }

  .manifesto-copy p {
    margin-bottom: 27px;
    font-size: 18px;
    line-height: 1.78;
  }

  .manifesto-copy .manifesto-break {
    margin: 49px 0 41px;
  }

  .manifesto-copy .manifesto-final {
    margin-top: 55px;
    padding-top: 25px;
  }

  .manifesto-end {
    grid-template-columns: auto 1fr;
    gap: 12px 15px;
    padding: 25px 0 28px;
  }

  .manifesto-end .eyebrow {
    grid-column: 1 / -1;
  }

  .end-mark {
    font-size: 27px;
  }

  .manifesto-end p {
    font-size: 9px;
  }

  .manifesto-end .button {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
