/*
  Davi Matos — Portfolio 2026
  Original static experience. No framework, no build step.
*/

:root {
  --bg: #090909;
  --bg-soft: #0f0f0f;
  --panel: #121212;
  --panel-2: #171717;
  --text: #f2efe7;
  --text-soft: #d5d1c8;
  --muted: #91918a;
  --line: rgba(242, 239, 231, 0.15);
  --line-strong: rgba(242, 239, 231, 0.3);
  --acid: #d9ff4f;
  --cyan: #68e7ff;
  --danger: #ff6b52;
  --header-h: 88px;
  --container: min(1360px, calc(100vw - 72px));
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgba(104, 231, 255, 0.08), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(217, 255, 79, 0.055), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--acid);
  color: #090909;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

svg {
  overflow: visible;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.section-pad {
  position: relative;
  padding: clamp(110px, 12vw, 190px) 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--acid);
  color: #080808;
  border-radius: 999px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .25s ease;
}

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

.noise {
  position: fixed;
  z-index: 9000;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

#ambient-canvas {
  position: fixed;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .42;
}

.scroll-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--acid));
  box-shadow: 0 0 16px rgba(217, 255, 79, .7);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
  transform: translate3d(-100px, -100px, 0);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--acid);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 1px solid rgba(217, 255, 79, .7);
  transition: width .28s var(--ease), height .28s var(--ease), margin .28s var(--ease), background .28s ease, border-color .28s ease;
}

.cursor-ring.is-active {
  width: 70px;
  height: 70px;
  margin: -35px 0 0 -35px;
  background: rgba(217, 255, 79, .1);
  border-color: var(--acid);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(32px, calc((100vw - 1360px) / 2));
  border-bottom: 1px solid transparent;
  transition: height .4s var(--ease), background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(9, 9, 9, .72);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.05em;
  transition: color .3s ease, border-color .3s ease, transform .5s var(--ease);
}

.brand:hover .brand-mark {
  color: #090909;
  border-color: var(--acid);
  background: var(--acid);
  transform: rotate(12deg);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: -.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 650;
}

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

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

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

.language-switch,
.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
}

.language-switch [data-lang-current] {
  color: var(--acid);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform .4s var(--ease), top .4s var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: none;
  visibility: hidden;
  background: var(--bg);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease), visibility .7s;
}

.mobile-menu.is-open {
  visibility: visible;
  clip-path: inset(0);
}

.mobile-menu-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 28px 40px;
}

.menu-label {
  margin: 0 0 28px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.mobile-menu nav {
  border-top: 1px solid var(--line);
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu nav span {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 11px;
}

.mobile-menu nav strong {
  font-family: var(--display);
  font-size: clamp(38px, 11vw, 64px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1;
}

.mobile-socials {
  display: flex;
  gap: 22px;
  margin-top: auto;
  padding-top: 40px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 58px) 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30vw;
  right: -20vw;
  width: 70vw;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 255, 79, .06);
  border-radius: 50%;
  box-shadow:
    0 0 0 7vw rgba(217, 255, 79, .018),
    0 0 0 14vw rgba(104, 231, 255, .012);
  pointer-events: none;
}

.hero-grid {
  min-height: calc(100svh - var(--header-h) - 170px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
  gap: clamp(34px, 5vw, 88px);
  align-items: center;
}

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

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(217, 255, 79, .08), 0 0 18px rgba(217, 255, 79, .65);
  animation: statusPulse 2.4s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { transform: scale(.85); opacity: .75; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-title {
  margin: clamp(26px, 4vh, 46px) 0 0;
  font-family: var(--display);
  font-size: clamp(88px, 12.7vw, 208px);
  font-weight: 900;
  letter-spacing: -.085em;
  line-height: .72;
  text-transform: uppercase;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.title-line-first {
  color: var(--text);
}

.title-line-second {
  margin-left: clamp(30px, 7vw, 115px);
  color: transparent;
  -webkit-text-stroke: clamp(1px, .12vw, 2px) rgba(242, 239, 231, .92);
  text-stroke: 2px rgba(242, 239, 231, .92);
  transition: color .7s var(--ease), -webkit-text-stroke-color .7s var(--ease);
}

.hero-title:hover .title-line-second {
  color: var(--acid);
  -webkit-text-stroke-color: var(--acid);
}

.hero-statement {
  width: min(680px, 85%);
  margin: clamp(34px, 5vh, 60px) 0 0 clamp(30px, 7vw, 115px);
}

.hero-statement p {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 520;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  width: min(810px, 100%);
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-description {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s var(--ease);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform .35s var(--ease);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--acid);
  color: #090909;
}

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

.button-ghost {
  border-color: var(--line-strong);
  color: var(--text-soft);
}

.button-ghost:hover {
  border-color: var(--text);
  color: var(--text);
}

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

.visual-frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: .83;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 42%, rgba(104, 231, 255, .08), transparent 43%),
    linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .005));
  box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.visual-frame::before {
  inset: 14px;
  border: 1px solid rgba(242, 239, 231, .08);
  border-radius: calc(var(--radius-lg) - 9px);
}

.visual-frame::after {
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .055), transparent);
  transform: skewX(-16deg);
  animation: frameShine 7s ease-in-out infinite;
}

@keyframes frameShine {
  0%, 55% { left: -100%; }
  80%, 100% { left: 150%; }
}

.visual-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(242, 239, 231, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 231, .18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 17%, #000 86%, transparent);
}

.visual-topline,
.visual-footer {
  position: absolute;
  z-index: 4;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
}

.visual-topline {
  top: 25px;
}

.visual-footer {
  bottom: 24px;
}

.system-orbit {
  position: absolute;
  top: 15%;
  left: 50%;
  width: 78%;
  aspect-ratio: 1;
  transform: translateX(-50%);
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(242, 239, 231, .16);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.orbit::before {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  transform: translateX(calc(var(--orbit-radius, 180px) * .98));
}

.orbit::after {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  transform: translateX(calc(var(--orbit-radius, 180px) * -.98));
}

.orbit-a {
  --orbit-radius: 178px;
  color: var(--acid);
  animation: orbitRotate 13s linear infinite;
}

.orbit-b {
  inset: 12%;
  --orbit-radius: 135px;
  color: var(--cyan);
  animation: orbitRotateReverse 9s linear infinite;
}

.orbit-c {
  inset: 27%;
  --orbit-radius: 83px;
  color: var(--text);
  animation: orbitRotate 7s linear infinite;
}

@keyframes orbitRotate { to { transform: rotate(360deg); } }
@keyframes orbitRotateReverse { to { transform: rotate(-360deg); } }

.core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid rgba(217, 255, 79, .6);
  border-radius: 28px;
  background: rgba(9, 9, 9, .75);
  box-shadow: 0 0 0 9px rgba(217, 255, 79, .025), 0 0 60px rgba(217, 255, 79, .1);
  transform: translate(-50%, -50%) rotate(45deg);
}

.core span,
.core small {
  transform: rotate(-45deg);
}

.core span {
  color: var(--acid);
  font-family: var(--display);
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -.1em;
  line-height: .8;
}

.core small {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .15em;
}

.satellite {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  border: 1px solid rgba(242, 239, 231, .2);
  border-radius: 99px;
  background: rgba(9, 9, 9, .78);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .4);
  animation: satelliteFloat 4s ease-in-out infinite;
}

.sat-1 { top: 7%; left: 48%; animation-delay: -.5s; }
.sat-2 { top: 25%; right: 0; animation-delay: -1.8s; }
.sat-3 { bottom: 16%; right: 6%; animation-delay: -2.6s; }
.sat-4 { bottom: 4%; left: 28%; animation-delay: -1.1s; }
.sat-5 { top: 43%; left: -2%; animation-delay: -3.2s; }
.sat-6 { top: 14%; left: 12%; animation-delay: -2s; }

@keyframes satelliteFloat {
  0%, 100% { transform: translateY(-3px); }
  50% { transform: translateY(5px); }
}

.terminal-card {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 58px;
  width: min(78%, 315px);
  overflow: hidden;
  border: 1px solid rgba(242, 239, 231, .2);
  border-radius: 14px;
  background: rgba(9, 9, 9, .82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .38);
}

.terminal-head {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
}

.terminal-head span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}

.terminal-head span:first-child { background: var(--danger); }
.terminal-head span:nth-child(2) { background: #ffd15a; }
.terminal-head span:nth-child(3) { background: var(--acid); }

.terminal-head small {
  margin-left: auto;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
}

.terminal-card code {
  display: grid;
  gap: 8px;
  padding: 14px 16px 16px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 9px;
}

.terminal-card code span {
  display: flex;
  gap: 10px;
}

.terminal-card code b {
  color: var(--acid);
  font-weight: 500;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(45px, 7vh, 88px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 20px 26px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 30px);
  letter-spacing: -.045em;
}

.metric span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.tech-marquee {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 17px 0;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .11em;
  animation: marquee 34s linear infinite;
}

.marquee-track i {
  color: var(--acid);
  font-style: normal;
  font-size: 8px;
}

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

.manifesto-grid,
.domains-grid {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(40px, 8vw, 130px);
}

.section-index {
  padding-top: 12px;
}

.section-index span {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 13px;
}

.section-index p {
  margin: 9px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.display-copy {
  max-width: 1120px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .98;
}

.manifesto-note {
  max-width: 720px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  margin: 70px 0 0 auto;
  color: var(--muted);
}

.manifesto-note .line {
  height: 1px;
  margin-top: 12px;
  background: var(--acid);
}

.manifesto-note p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
}

.work,
.process {
  background: var(--text);
  color: #101010;
}

.work {
  overflow: hidden;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.section-heading .kicker {
  margin-bottom: 22px;
  color: currentColor;
  opacity: .58;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 7.3vw, 112px);
  font-weight: 760;
  letter-spacing: -.078em;
  line-height: .88;
}

.section-heading > p {
  max-width: 500px;
  margin: 0 0 7px;
  color: currentColor;
  opacity: .65;
  font-size: 17px;
  line-height: 1.75;
}

.project-list {
  display: grid;
  gap: 22px;
}

.project-card {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, .16);
  border-radius: var(--radius-lg);
  background: #0d0d0d;
  color: var(--text);
  isolation: isolate;
  transition: transform .65s var(--ease), border-color .4s ease, box-shadow .65s var(--ease);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10, 10, 10, .35);
  box-shadow: 0 30px 70px rgba(10, 10, 10, .18);
}

.project-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .25;
  background: radial-gradient(circle at var(--mx, 75%) var(--my, 30%), rgba(217, 255, 79, .22), transparent 26rem);
  transition: opacity .4s ease;
}

.project-card:hover::before {
  opacity: .7;
}

.project-meta {
  position: absolute;
  z-index: 4;
  top: 32px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.project-number {
  color: var(--acid);
}

.project-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px 38px 42px;
}

.project-content h3 {
  max-width: 570px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5.3vw, 78px);
  font-weight: 720;
  letter-spacing: -.06em;
  line-height: .94;
}

.project-content p {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 30px;
}

.tag-list li {
  padding: 7px 10px;
  border: 1px solid rgba(242, 239, 231, .18);
  border-radius: 999px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.project-art {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 48px 30px;
  overflow: hidden;
  border-left: 1px solid rgba(242, 239, 231, .1);
  background: rgba(255, 255, 255, .012);
}

.project-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(242, 239, 231, .25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 231, .25) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.project-art svg {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  transition: transform .8s var(--ease);
}

.project-card:hover .project-art svg {
  transform: scale(1.035);
}

.project-corner {
  position: absolute;
  z-index: 4;
  right: 23px;
  bottom: 20px;
  color: rgba(242, 239, 231, .35);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
}

.flow-line {
  stroke-dasharray: 12 10;
  animation: flowDash 2.2s linear infinite;
}

@keyframes flowDash { to { stroke-dashoffset: -44; } }

.pulse-node {
  animation: nodePulse 2s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.pulse-node.delay { animation-delay: -.7s; }
.pulse-node.delay-2 { animation-delay: -1.3s; }

@keyframes nodePulse {
  0%, 100% { transform: scale(.65); opacity: .45; }
  50% { transform: scale(1.35); opacity: 1; }
}

.data-bars rect {
  transform-origin: bottom;
  transform-box: fill-box;
  animation: dataBar 4.8s ease-in-out infinite alternate;
}

.data-bars rect:nth-child(2n) { animation-delay: -.8s; }
.data-bars rect:nth-child(3n) { animation-delay: -1.6s; }

@keyframes dataBar {
  0% { transform: scaleY(.78); opacity: .55; }
  100% { transform: scaleY(1); opacity: 1; }
}

.chart-line {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: chartDraw 4s var(--ease) infinite alternate;
}

@keyframes chartDraw { to { stroke-dashoffset: 0; } }

.paper {
  transform-origin: center;
  transform-box: fill-box;
  transition: transform .8s var(--ease);
}

.project-card:hover .paper-1 { transform: translate(-8px, -8px) rotate(-2deg); }
.project-card:hover .paper-2 { transform: translate(7px, 5px) rotate(2deg); }
.project-card:hover .paper-3 { transform: translate(14px, 12px) rotate(4deg); }

.speed-arc {
  animation: speedArc 3.8s ease-in-out infinite alternate;
}

.speed-needle {
  transform-origin: 310px 310px;
  animation: speedNeedle 3.8s ease-in-out infinite alternate;
}

@keyframes speedArc {
  0% { stroke-dashoffset: 320; }
  100% { stroke-dashoffset: 80; }
}

@keyframes speedNeedle {
  0% { transform: rotate(-52deg); }
  100% { transform: rotate(12deg); }
}

.other-projects {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  margin-top: 70px;
  padding-top: 36px;
  border-top: 1px solid rgba(10, 10, 10, .18);
}

.other-projects .kicker {
  color: rgba(10, 10, 10, .58);
}

.other-projects p {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(10, 10, 10, .66);
  font-size: 15px;
}

.other-project-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(10, 10, 10, .2);
}

.other-project-links span {
  min-height: 100px;
  display: flex;
  align-items: flex-end;
  padding: 16px 14px;
  border-right: 1px solid rgba(10, 10, 10, .2);
  border-bottom: 1px solid rgba(10, 10, 10, .2);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -.03em;
}

.other-project-links span:last-child {
  border-right: 0;
}

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

.capability-accordion {
  border-top: 1px solid var(--line-strong);
}

.capability-item {
  border-bottom: 1px solid var(--line-strong);
}

.capability-trigger {
  width: 100%;
  min-height: 126px;
  display: grid;
  grid-template-columns: 90px 1fr 50px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.capability-number {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 11px;
}

.capability-name {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: 1;
  transition: color .35s ease, transform .5s var(--ease);
}

.capability-trigger:hover .capability-name {
  color: var(--acid);
  transform: translateX(12px);
}

.capability-icon {
  position: relative;
  width: 42px;
  height: 42px;
  justify-self: end;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.capability-icon::before,
.capability-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform .45s var(--ease), background .35s ease;
}

.capability-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.capability-item.is-open .capability-icon {
  border-color: var(--acid);
}

.capability-item.is-open .capability-icon::before,
.capability-item.is-open .capability-icon::after {
  background: var(--acid);
}

.capability-item.is-open .capability-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.capability-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .65s var(--ease);
}

.capability-item.is-open .capability-panel {
  grid-template-rows: 1fr;
}

.capability-panel-inner {
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 80px;
  padding: 0 0 0 90px;
  opacity: 0;
  transition: opacity .45s ease, padding-bottom .65s var(--ease);
}

.capability-item.is-open .capability-panel-inner {
  padding-bottom: 44px;
  opacity: 1;
}

.capability-panel-inner p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.capability-panel-inner ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  border-top: 1px solid var(--line);
}

.capability-panel-inner li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.domains {
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.domains::before {
  content: "";
  position: absolute;
  top: 0;
  right: -15vw;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgba(104, 231, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(104, 231, 255, .018), 0 0 0 14vw rgba(217, 255, 79, .012);
}

.domains-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .6fr);
  gap: 70px;
  align-items: end;
}

.domains-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6.4vw, 98px);
  font-weight: 670;
  letter-spacing: -.066em;
  line-height: .96;
}

.domains-head p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.domain-cloud {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 76px;
}

.domain-cloud span {
  padding: 16px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-soft);
  font-family: var(--display);
  font-size: clamp(18px, 2.1vw, 32px);
  font-weight: 590;
  letter-spacing: -.035em;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .45s var(--ease);
}

.domain-cloud span:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: #090909;
  transform: translateY(-5px) rotate(-1deg);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(10, 10, 10, .2);
}

.process-step {
  min-height: 355px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 26px 34px;
  border-right: 1px solid rgba(10, 10, 10, .2);
  transition: background .45s ease, color .45s ease;
}

.process-step:last-child {
  border-right: 0;
}

.process-step:hover {
  background: #101010;
  color: var(--text);
}

.process-step > span {
  font-family: var(--mono);
  font-size: 11px;
  color: currentColor;
  opacity: .52;
}

.process-step h3 {
  margin: 0 0 17px;
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 690;
  letter-spacing: -.05em;
  line-height: .98;
}

.process-step p {
  margin: 0;
  color: currentColor;
  opacity: .62;
  font-size: 14px;
  line-height: 1.7;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1.45fr);
  gap: clamp(50px, 10vw, 160px);
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: 120px;
}

.about-badge {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-top: 64px;
}

.badge-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  animation: badgeRotate 18s linear infinite;
}

.badge-ring span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.badge-ring span i {
  position: absolute;
  top: 0;
  left: 50%;
  height: 50%;
  transform-origin: 0 100%;
  font-style: normal;
}

.badge-center {
  width: 116px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 255, 79, .55);
  border-radius: 32px;
  background: rgba(217, 255, 79, .035);
  color: var(--acid);
  font-family: var(--display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.1em;
  transform: rotate(45deg);
}

.badge-center::first-letter {
  letter-spacing: 0;
}

@keyframes badgeRotate { to { transform: rotate(360deg); } }

.about-copy .display-copy {
  max-width: 950px;
}

.about-text {
  max-width: 780px;
  margin: 70px 0 0 auto;
}

.about-text p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.72;
}

.about-text p:first-child {
  color: var(--text-soft);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 62px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-facts div {
  min-height: 118px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  background: var(--bg);
}

.about-facts span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.about-facts strong {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 650;
  letter-spacing: -.04em;
}

.contact {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--acid);
  color: #090909;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(#090909 1px, transparent 1px),
    linear-gradient(90deg, #090909 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.contact-orbit {
  position: absolute;
  top: 50%;
  right: -20vw;
  width: 68vw;
  aspect-ratio: 1;
  border: 1px solid rgba(9, 9, 9, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(9, 9, 9, .04), 0 0 0 14vw rgba(9, 9, 9, .025);
  transform: translateY(-50%);
  animation: contactOrbit 15s linear infinite;
}

.contact-orbit::before,
.contact-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #090909;
}

.contact-orbit::before {
  top: 4%;
  left: 25%;
  width: 13px;
  height: 13px;
}

.contact-orbit::after {
  right: 2%;
  bottom: 31%;
  width: 7px;
  height: 7px;
}

@keyframes contactOrbit {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact .kicker {
  color: rgba(9, 9, 9, .62);
}

.contact-title {
  max-width: 1180px;
  margin: 36px 0 0;
  font-family: var(--display);
  font-size: clamp(62px, 8.4vw, 132px);
  font-weight: 800;
  letter-spacing: -.082em;
  line-height: .83;
}

.contact-copy {
  max-width: 560px;
  margin: 48px 0 0;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 530;
  letter-spacing: -.03em;
  line-height: 1.35;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.contact-link {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 0 28px;
  border: 1px solid #090909;
  border-radius: 999px;
  background: #090909;
  color: var(--text);
  font-weight: 750;
  transition: background .35s ease, color .35s ease, transform .45s var(--ease);
}

.contact-link svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform .45s var(--ease);
}

.contact-link:hover {
  background: transparent;
  color: #090909;
  transform: translateY(-4px);
}

.contact-link:hover svg {
  transform: translate(4px, -4px);
}

.contact-link-secondary {
  background: transparent;
  color: #090909;
}

.contact-link-secondary:hover {
  background: #090909;
  color: var(--text);
}

.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 54px 0 44px;
}

.footer-grid > div:first-child {
  display: grid;
  gap: 6px;
}

.footer-grid > div:first-child strong {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -.045em;
}

.footer-grid > div:first-child span,
.footer-time span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 13px;
}

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

.footer-time {
  display: grid;
  gap: 6px;
}

.footer-time strong {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 20px;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
}

.back-top span:last-child {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--acid);
  transition: transform .4s var(--ease), background .35s ease, color .35s ease;
}

.back-top:hover span:last-child {
  background: var(--acid);
  color: #090909;
  transform: translateY(-5px);
}

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

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 5px;
}

html.js .reveal-up,
html.js .reveal-scale,
html.js .reveal-lines {
  opacity: 0;
  will-change: transform, opacity;
}

html.js .reveal-up {
  transform: translateY(38px);
  transition: transform .9s var(--ease), opacity .8s ease;
}

html.js .reveal-scale {
  transform: translateY(30px) scale(.96);
  transition: transform 1.1s var(--ease), opacity .9s ease;
}

html.js .reveal-lines {
  transform: translateY(28px);
  transition: transform 1s var(--ease), opacity .9s ease;
}

html.js .is-visible.reveal-up,
html.js .is-visible.reveal-scale,
html.js .is-visible.reveal-lines {
  opacity: 1;
  transform: none;
}

html.js .hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(4deg);
  transition: transform 1.05s var(--ease), opacity .65s ease;
  transition-delay: calc(var(--char-index) * 55ms + 140ms);
}

html.js .hero-title.is-visible .char {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 48px, 1080px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(82px, 12vw, 150px);
  }

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

  .hero-cta {
    justify-self: start;
  }

  .visual-frame {
    aspect-ratio: .78;
  }

  .project-card {
    grid-template-columns: .9fr 1.1fr;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n+2) {
    border-bottom: 1px solid rgba(10, 10, 10, .2);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .back-top {
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 76px;
    --container: min(100% - 36px, 820px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: grid;
  }

  .hero {
    padding-top: calc(var(--header-h) + 36px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-title {
    font-size: clamp(84px, 20vw, 170px);
  }

  .hero-statement {
    width: min(620px, 88%);
  }

  .hero-visual {
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .visual-frame {
    width: 100%;
    aspect-ratio: 1.12;
  }

  .system-orbit {
    width: 62%;
    top: 8%;
  }

  .terminal-card {
    width: 48%;
  }

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

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

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

  .manifesto-grid,
  .domains-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-index {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-index p {
    margin: 0;
  }

  .section-heading,
  .domains-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading > p,
  .domains-head p {
    max-width: 620px;
  }

  .project-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .project-content {
    min-height: 420px;
  }

  .project-art {
    min-height: 420px;
    border-top: 1px solid rgba(242, 239, 231, .1);
    border-left: 0;
  }

  .project-corner {
    top: calc(420px + 20px);
    bottom: auto;
  }

  .other-projects {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .capability-trigger {
    grid-template-columns: 60px 1fr 50px;
  }

  .capability-panel-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 60px;
  }

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

  .about-sticky {
    position: relative;
    top: auto;
  }

  .about-badge {
    width: 220px;
    margin-top: 40px;
  }

  .about-text {
    margin-left: 0;
  }

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

  .back-top {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 28px);
    --radius-lg: 24px;
  }

  body {
    font-size: 15px;
  }

  .section-pad {
    padding: 92px 0;
  }

  .site-header {
    height: 70px;
    padding-inline: 14px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    width: 40px;
  }

  .header-actions {
    gap: 10px;
  }

  .language-switch {
    font-size: 10px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 98px;
  }

  .hero-grid {
    min-height: auto;
    gap: 60px;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: .08em;
  }

  .hero-title {
    margin-top: 32px;
    font-size: clamp(74px, 25vw, 128px);
    line-height: .78;
  }

  .title-line-second {
    margin-left: 0;
    color: var(--acid);
    -webkit-text-stroke: 0;
  }

  .hero-statement {
    width: 100%;
    margin: 34px 0 0;
  }

  .hero-statement p {
    font-size: 23px;
  }

  .hero-bottom {
    margin-top: 28px;
    padding-top: 22px;
  }

  .hero-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .visual-frame {
    aspect-ratio: .82;
  }

  .system-orbit {
    width: 82%;
    top: 12%;
  }

  .orbit-a { --orbit-radius: 140px; }
  .orbit-b { --orbit-radius: 104px; }
  .orbit-c { --orbit-radius: 63px; }

  .core {
    width: 96px;
    border-radius: 24px;
  }

  .core span {
    font-size: 38px;
  }

  .terminal-card {
    right: 18px;
    bottom: 52px;
    width: calc(100% - 36px);
  }

  .hero-metrics {
    margin-top: 70px;
  }

  .metric {
    min-height: 96px;
    padding: 18px 14px;
  }

  .metric strong {
    font-size: 21px;
  }

  .metric span {
    font-size: 7px;
  }

  .display-copy {
    font-size: clamp(43px, 13vw, 70px);
  }

  .manifesto-note {
    grid-template-columns: 44px 1fr;
    gap: 18px;
    margin-top: 48px;
  }

  .manifesto-note p {
    font-size: 15px;
  }

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

  .section-heading h2 {
    font-size: clamp(51px, 15vw, 78px);
  }

  .section-heading > p {
    font-size: 15px;
  }

  .project-meta {
    top: 24px;
    left: 22px;
  }

  .project-content {
    min-height: 420px;
    padding: 84px 22px 28px;
  }

  .project-content h3 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .project-content p {
    margin-top: 22px;
    font-size: 14px;
  }

  .tag-list {
    margin-top: 24px;
  }

  .project-art {
    min-height: 300px;
    padding: 20px 10px;
  }

  .project-corner {
    display: none;
  }

  .other-project-links {
    grid-template-columns: 1fr;
  }

  .other-project-links span {
    min-height: 72px;
    border-right: 0;
  }

  .capability-trigger {
    min-height: 96px;
    grid-template-columns: 42px 1fr 38px;
  }

  .capability-name {
    font-size: clamp(31px, 9vw, 44px);
  }

  .capability-icon {
    width: 34px;
    height: 34px;
  }

  .capability-panel-inner {
    gap: 24px;
    padding-left: 42px;
  }

  .capability-panel-inner ul {
    grid-template-columns: 1fr;
  }

  .domains-head h2 {
    font-size: clamp(43px, 13vw, 68px);
  }

  .domain-cloud {
    margin-top: 50px;
  }

  .domain-cloud span {
    padding: 12px 16px;
    font-size: 18px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(2) {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 10, 10, .2);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .about-badge {
    width: 180px;
  }

  .badge-center {
    width: 86px;
    border-radius: 24px;
    font-size: 36px;
  }

  .about-text {
    margin-top: 48px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts div {
    min-height: 92px;
  }

  .contact {
    min-height: 100svh;
  }

  .contact-title {
    margin-top: 28px;
    font-size: clamp(52px, 15vw, 82px);
    line-height: .9;
  }

  .contact-copy {
    margin-top: 34px;
    font-size: 18px;
  }

  .contact-actions {
    display: grid;
  }

  .contact-link {
    min-height: 62px;
    justify-content: space-between;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .back-top {
    grid-column: 1;
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .visual-frame {
    transform: none !important;
  }
}

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

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

  html.js .reveal-up,
  html.js .reveal-scale,
  html.js .reveal-lines,
  html.js .hero-title .char {
    opacity: 1;
    transform: none;
  }
}
