:root {
  color-scheme: dark;
  --bg: #08090b;
  --panel: rgba(22, 23, 26, 0.78);
  --panel-strong: #121316;
  --text: #f4f4f5;
  --muted: #a7a9ad;
  --soft: #6f7379;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --white: #ffffff;
  --black: #000000;
  --accent-cyan: #38f2d1;
  --accent-lime: #d7ff5f;
  --accent-rose: #ff4d8d;
  --accent-amber: #ffb84d;
  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 78% 8%, rgba(56, 242, 209, 0.16), transparent 34%),
    radial-gradient(circle at 8% 42%, rgba(255, 77, 141, 0.12), transparent 31%),
    radial-gradient(circle at 62% 70%, rgba(215, 255, 95, 0.08), transparent 28%),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(
      circle at var(--cursor-x) var(--cursor-y),
      rgba(56, 242, 209, 0.18),
      rgba(255, 77, 141, 0.06) 13rem,
      transparent 28rem
    );
  mix-blend-mode: screen;
  opacity: 0.75;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, rgba(8, 9, 11, 0.08), rgba(8, 9, 11, 0.82) 58%);
}

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

.cursor {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

.cursor__dot,
.cursor__ring,
.cursor__glow {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 999px;
  opacity: 0;
  translate: -50% -50%;
  will-change: transform, opacity;
}

.cursor__dot {
  width: 5px;
  height: 5px;
  background: var(--accent-cyan);
  box-shadow: 0 0 18px rgba(56, 242, 209, 0.75);
}

.cursor__ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(56, 242, 209, 0.62);
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease;
}

.cursor__glow {
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(56, 242, 209, 0.14), rgba(255, 77, 141, 0.06), transparent 62%);
  mix-blend-mode: screen;
}

body.cursor-ready .cursor__dot,
body.cursor-ready .cursor__ring,
body.cursor-ready .cursor__glow {
  opacity: 1;
}

body.cursor-hover .cursor__ring {
  width: 52px;
  height: 52px;
  border-color: rgba(215, 255, 95, 0.9);
}

.signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: end start;
  padding: clamp(20px, 6vw, 72px);
  background: #08090b;
  animation: boot-exit 0.85s var(--ease) 1.35s forwards;
}

.boot__panel {
  width: min(420px, 100%);
}

.boot__label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.boot__bar {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.boot__bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: translateX(-100%);
  animation: boot-load 1.05s var(--ease) 0.2s forwards;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 22px 24px;
  backdrop-filter: blur(16px);
  animation: reveal-down 0.9s var(--ease) 1.55s both;
}

.brand,
.nav,
.header-action {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 700;
}

.brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(56, 242, 209, 0.22), rgba(255, 77, 141, 0.12)),
    rgba(255, 255, 255, 0.08);
  color: var(--accent-cyan);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(12, 13, 15, 0.72);
}

.nav a {
  padding: 9px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover {
  background: rgba(56, 242, 209, 0.1);
  color: var(--text);
}

.header-action {
  justify-self: end;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.header-action:hover {
  background: var(--accent-cyan);
  color: var(--black);
}

main {
  position: relative;
}

.hero {
  position: relative;
  max-width: calc(var(--max) + 48px);
  min-height: 92vh;
  margin: 0 auto;
  padding: 148px 24px 42px;
  isolation: isolate;
}

.hero__ambient {
  position: absolute;
  inset: 118px 24px auto;
  z-index: -1;
  height: 58vh;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.72;
  mask-image: linear-gradient(#000 0%, #000 55%, transparent 100%);
}

.hero__ambient span {
  position: absolute;
  width: 34vw;
  min-width: 280px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(56, 242, 209, 0.16), rgba(255, 77, 141, 0.08) 34%, transparent 45%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 0 1px,
      transparent 1px 18px
    );
  transform: rotate(12deg);
  animation: ambient-drift 14s var(--ease) infinite alternate;
}

.hero__ambient span:nth-child(1) {
  top: 6%;
  right: 3%;
}

.hero__ambient span:nth-child(2) {
  bottom: 0;
  left: 42%;
  width: 18vw;
  min-width: 190px;
  animation-delay: -4s;
}

.hero__ambient span:nth-child(3) {
  top: 38%;
  left: -8%;
  width: 24vw;
  min-width: 240px;
  animation-delay: -8s;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  align-items: end;
  gap: clamp(28px, 6vw, 82px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 28px;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero__intro {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 720px;
  margin-top: 28px;
}

.hero__proof span {
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.hero__proof span:nth-child(1) {
  border-color: rgba(56, 242, 209, 0.32);
}

.hero__proof span:nth-child(2) {
  border-color: rgba(215, 255, 95, 0.28);
}

.hero__proof span:nth-child(3) {
  border-color: rgba(255, 77, 141, 0.3);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--primary {
  border-color: rgba(56, 242, 209, 0.7);
  background: var(--accent-cyan);
  color: var(--black);
  box-shadow: 0 0 34px rgba(56, 242, 209, 0.18);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-lime);
}

.hero__console {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(13, 14, 16, 0.8);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  transform: translateY(16px) perspective(1000px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transform-style: preserve-3d;
}

.hero__console::before,
.project::before,
.process-step::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(
    circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(56, 242, 209, 0.16),
    rgba(255, 77, 141, 0.06) 22%,
    transparent 34%
  );
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero__console:hover::before,
.project:hover::before,
.process-step:hover::before {
  opacity: 1;
}

.console__top {
  display: flex;
  gap: 7px;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.console__top span {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.console__body {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
}

.console__body p {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.console__body p span {
  color: var(--accent-lime);
}

.console__body strong {
  display: block;
  margin-bottom: 28px;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.08;
}

.console__body dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.console__body div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.console__body dt,
.console__body dd {
  margin: 0;
  font-size: 13px;
}

.console__body dt {
  color: var(--soft);
}

.console__body dd {
  color: var(--text);
}

.console__activity {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.console__activity span {
  height: 34px;
  background: linear-gradient(180deg, var(--accent-cyan), rgba(56, 242, 209, 0.08));
  transform-origin: bottom;
  animation: meter 1.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * -120ms);
}

.ticker {
  width: 100%;
  margin-top: clamp(46px, 8vw, 96px);
  overflow: hidden;
  border-block: 1px solid var(--line);
  color: var(--muted);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  display: block;
  padding: 18px 28px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.metrics,
.edge,
.work,
.proof-board,
.stack,
.process,
.brief,
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 24px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 42px;
}

.metrics div {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.metric__number {
  display: block;
  margin-bottom: 44px;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
}

.metrics div:nth-child(1) .metric__number {
  color: var(--accent-cyan);
}

.metrics div:nth-child(2) .metric__number {
  color: var(--accent-lime);
}

.metrics div:nth-child(3) .metric__number {
  color: var(--accent-rose);
}

.metrics p,
.project p,
.edge__row span,
.proof-card p,
.brief__output p,
.stack .section-heading p,
.process-step p {
  color: var(--muted);
  line-height: 1.6;
}

.edge {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: stretch;
}

.edge__statement {
  display: grid;
  min-height: 470px;
  align-content: space-between;
  padding: clamp(28px, 5vw, 54px);
  border-left: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(56, 242, 209, 0.08), rgba(255, 77, 141, 0.035), transparent),
    rgba(255, 255, 255, 0.025);
}

.edge__matrix {
  display: grid;
  gap: 12px;
  align-content: end;
}

.edge__row {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  min-height: 128px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.edge__row::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(56, 242, 209, 0.13), rgba(255, 184, 77, 0.08), transparent 56%);
  transform: translateX(-100%);
  transition: transform 520ms var(--ease);
}

.edge__row:hover::before,
.edge__row--active::before {
  transform: translateX(0);
}

.edge__row--active {
  border-color: rgba(56, 242, 209, 0.38);
}

.edge__row span {
  position: relative;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.edge__row strong {
  position: relative;
  max-width: 560px;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.08;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr minmax(240px, 440px);
  gap: 28px;
  align-items: end;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.work__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.project {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  position: relative;
  overflow: hidden;
  min-height: 290px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  transform: perspective(1000px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.project:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.075);
}

.project--large {
  display: grid;
  grid-row: span 2;
  grid-template-rows: minmax(240px, 1fr) auto;
}

.project__visual {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(56, 242, 209, 0.24), rgba(255, 77, 141, 0.11), transparent 46%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #101114;
  background-size: auto, 34px 34px, auto;
}

.project__visual::before {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(rgba(215, 255, 95, 0.15), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 14px
    );
  clip-path: polygon(0 0, 72% 0, 100% 28%, 100% 100%, 0 100%);
}

.project__visual span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  animation: float-card 8s var(--ease) infinite alternate;
}

.project__visual span:nth-child(1) {
  top: 14%;
  left: 10%;
  width: 40%;
  height: 28%;
}

.project__visual span:nth-child(2) {
  right: 12%;
  bottom: 18%;
  width: 44%;
  height: 34%;
  animation-delay: -1.8s;
}

.project__visual span:nth-child(3) {
  top: 24%;
  right: 18%;
  width: 22%;
  height: 16%;
  animation-delay: -3s;
}

.project__visual span:nth-child(4) {
  bottom: 16%;
  left: 18%;
  width: 18%;
  height: 22%;
  animation-delay: -4.2s;
}

.project__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(56, 242, 209, 0.22), transparent);
  transform: translateY(-100%);
  animation: scan 4.8s ease-in-out infinite;
}

.project__content {
  padding: clamp(24px, 3vw, 34px);
}

.project__type {
  margin-bottom: 20px;
  color: var(--accent-amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.project h3,
.proof-card h3,
.brief__output h3,
.process-step h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.08;
}

.proof-board {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
}

.proof-board__header {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 28px 0;
}

.proof-board__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.proof-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-column: span 3;
  min-height: 260px;
  align-content: end;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.035);
}

.proof-card:nth-child(1) {
  border-color: rgba(56, 242, 209, 0.24);
}

.proof-card:nth-child(2) {
  border-color: rgba(215, 255, 95, 0.2);
}

.proof-card:nth-child(3) {
  border-color: rgba(255, 184, 77, 0.24);
}

.proof-card:nth-child(4) {
  border-color: rgba(255, 77, 141, 0.24);
}

.proof-card::after {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 260ms ease, transform 260ms var(--ease);
}

.proof-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.proof-card--tall {
  grid-row: span 2;
  min-height: 534px;
}

.proof-card--wide {
  grid-column: span 6;
}

.proof-card__index {
  position: absolute;
  top: 20px;
  left: 22px;
  color: rgba(255, 255, 255, 0.32);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.proof-card h3,
.proof-card p {
  position: relative;
}

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

.stack-item {
  position: relative;
  overflow: hidden;
  min-height: 110px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
  transition: color 180ms ease;
}

.stack-item::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(56, 242, 209, 0.36);
  content: "";
  transform: rotate(45deg) translate(24px, 24px);
  transition: transform 240ms var(--ease);
}

.stack-item:hover::after {
  transform: rotate(45deg) translate(0, 0);
}

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

.process-step {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(56, 242, 209, 0.055), rgba(255, 255, 255, 0.025));
}

.process-step span {
  display: block;
  margin-bottom: 72px;
  color: var(--soft);
  font-family: "JetBrains Mono", monospace;
}

.brief {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.brief__copy {
  padding-top: 22px;
}

.brief__panel {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
}

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

.brief-option {
  min-height: 62px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.brief-option:last-child {
  border-right: 0;
}

.brief-option:hover,
.brief-option.is-active {
  background: var(--accent-lime);
  color: var(--black);
}

.brief__output {
  min-height: 390px;
  padding: clamp(26px, 4vw, 44px);
}

.brief__label {
  margin-bottom: 46px;
  color: var(--accent-rose);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.brief__output h3 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 48px);
}

.brief__output ul {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.brief__output li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}

.contact {
  padding-bottom: 48px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.contact h2 {
  max-width: 840px;
}

.section-reveal {
  opacity: 0;
  transform: translateY(26px);
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

@keyframes boot-load {
  to {
    transform: translateX(0);
  }
}

@keyframes boot-exit {
  to {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-16px);
  }
}

@keyframes reveal-down {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes float-card {
  to {
    transform: translate3d(18px, -14px, 0);
  }
}

@keyframes ambient-drift {
  to {
    transform: translate3d(24px, -20px, 0) rotate(-7deg);
  }
}

@keyframes meter {
  0%,
  100% {
    transform: scaleY(0.28);
    opacity: 0.38;
  }

  45% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes scan {
  0%,
  35% {
    transform: translateY(-100%);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  78%,
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

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

  .boot {
    display: none;
  }

  .cursor,
  body::after {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero__grid,
  .edge,
  .proof-board,
  .section-heading--split,
  .brief,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .hero__console {
    transform: none;
  }

  .metrics,
  .work__layout,
  .process__rail {
    grid-template-columns: 1fr;
  }

  .project--large {
    grid-row: auto;
  }

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

  .proof-board__header {
    position: static;
    padding: 0;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor,
  body::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px;
  }

  .brand__text,
  .header-action {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 16px 34px;
  }

  .metrics,
  .edge,
  .work,
  .proof-board,
  .stack,
  .process,
  .brief,
  .contact {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 46px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

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

  .stack__grid {
    grid-template-columns: 1fr;
  }

  .proof-board__grid,
  .proof-card,
  .proof-card--wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .proof-card--tall {
    min-height: 320px;
  }

  .brief__options {
    grid-template-columns: 1fr;
  }

  .brief-option {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
