:root {
  --bg: #080a0f;
  --panel: #0e131b;
  --panel-bright: #141b25;
  --paper: #edf1ef;
  --muted: #8b98a6;
  --line: rgba(237, 241, 239, .16);
  --red: #ff3347;
  --cyan: #5ee7ff;
  --lime: #d7fa69;
  --display: 'Space Grotesk', 'Avenir Next', 'Helvetica Neue', sans-serif;
  --mono: 'DM Mono', 'SFMono-Regular', Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--paper);
  font-family: var(--display);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
body::before {
  background-image: linear-gradient(rgba(94, 231, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 231, 255, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  content: '';
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}
body::after {
  background: radial-gradient(circle at 72% 12%, rgba(94, 231, 255, .10), transparent 30%),
    radial-gradient(circle at 14% 72%, rgba(255, 51, 71, .08), transparent 28%);
  content: '';
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}
.starfield {
  background-image: radial-gradient(circle, rgba(237, 241, 239, .7) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(94, 231, 255, .7) 0 1px, transparent 1.5px);
  background-position: 20px 40px, 70px 110px;
  background-size: 170px 170px, 230px 230px;
  inset: 0;
  opacity: .26;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
.site-shell { overflow: hidden; }
.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  left: 0;
  padding: 24px clamp(24px, 6vw, 92px);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}
.brand { align-items: center; display: inline-flex; gap: 17px; }
.brand img { display: block; height: auto; width: 130px; }
.brand-code, .site-nav, .header-status, .eyebrow, .hero-foot, .console-header, .console-data,
.card-top, .log-row, .site-footer, .terminal-top {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand-code { color: var(--muted); font-size: 9px; }
.site-nav { display: flex; gap: clamp(20px, 4vw, 58px); margin-left: auto; }
.site-nav a { color: var(--paper); font-size: 11px; opacity: .72; transition: color .2s ease, opacity .2s ease; }
.site-nav a:hover { color: var(--cyan); opacity: 1; }
.site-nav a span { color: var(--cyan); margin-right: 8px; }
.header-status { align-items: center; color: var(--muted); display: flex; font-size: 9px; gap: 8px; }
.header-status span, .live i { background: var(--lime); border-radius: 50%; box-shadow: 0 0 12px var(--lime); display: inline-block; height: 6px; width: 6px; }
.menu-toggle { background: transparent; border: 0; display: none; }
.hero {
  display: grid;
  gap: clamp(40px, 8vw, 130px);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .8fr);
  min-height: 820px;
  padding: 190px clamp(24px, 9vw, 145px) 106px;
  position: relative;
}
.hero-copy { align-self: center; max-width: 760px; position: relative; z-index: 1; }
.eyebrow { align-items: center; color: var(--muted); display: flex; font-size: 10px; gap: 14px; margin: 0 0 30px; }
.eyebrow-index { color: var(--cyan); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-weight: 500; letter-spacing: -.09em; line-height: .88; }
h1 { font-size: clamp(78px, 11vw, 176px); margin-bottom: 36px; max-width: 850px; }
h1 .outline { color: transparent; -webkit-text-stroke: 1px var(--paper); }
h1 .cyan, h2 .cyan { color: var(--cyan); }
h1 b { color: var(--red); font-weight: 400; }
.hero-intro { color: var(--muted); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; margin-bottom: 40px; max-width: 470px; }
.hero-actions { align-items: center; display: flex; gap: 30px; }
.button { align-items: center; display: inline-flex; font-family: var(--mono); font-size: 10px; gap: 26px; letter-spacing: .08em; padding: 17px 19px; text-transform: uppercase; }
.button-primary { background: var(--cyan); color: var(--bg); transition: background .2s ease, transform .2s ease; }
.button-primary:hover { background: var(--lime); transform: translateY(-3px); }
.text-link { border-bottom: 1px solid var(--red); color: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; padding-bottom: 8px; text-transform: uppercase; }
.hero-console {
  align-self: center;
  background: rgba(14, 19, 27, .75);
  border: 1px solid var(--line);
  min-height: 475px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}
.hero-console::before, .contact-terminal::before {
  border-left: 1px solid var(--cyan);
  border-top: 1px solid var(--cyan);
  content: '';
  height: 20px;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 20px;
}
.hero-console::after, .contact-terminal::after {
  border-bottom: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
  bottom: -1px;
  content: '';
  height: 20px;
  position: absolute;
  right: -1px;
  width: 20px;
}
.console-header, .console-data { color: var(--muted); display: flex; font-size: 9px; justify-content: space-between; }
.live { color: var(--lime); }
.live i { height: 5px; margin-right: 7px; width: 5px; }
.orbital-display { align-items: center; display: flex; height: 330px; justify-content: center; overflow: hidden; position: relative; }
.logo-core { align-items: center; background: var(--bg); border: 1px solid var(--cyan); border-radius: 50%; box-shadow: 0 0 45px rgba(94, 231, 255, .18); display: flex; height: 142px; justify-content: center; position: relative; width: 142px; z-index: 2; }
.logo-core img { width: 122px; }
.orbit { border: 1px solid rgba(94, 231, 255, .4); border-radius: 50%; height: 250px; position: absolute; width: 250px; }
.orbit-one { transform: rotate(27deg) scaleY(.38); }
.orbit-two { border-color: rgba(255, 51, 71, .5); height: 340px; transform: rotate(-34deg) scaleY(.31); width: 340px; }
.orbit-three { border-color: rgba(215, 250, 105, .35); height: 205px; transform: rotate(82deg) scaleY(.78); width: 205px; }
.orbit-node { border-radius: 50%; height: 8px; position: absolute; width: 8px; z-index: 3; }
.node-one { background: var(--red); box-shadow: 0 0 15px var(--red); left: 27%; top: 54%; }
.node-two { background: var(--lime); box-shadow: 0 0 15px var(--lime); right: 28%; top: 29%; }
.crosshair { border: 1px solid var(--muted); height: 13px; opacity: .6; position: absolute; width: 13px; }
.crosshair::after, .crosshair::before { background: var(--muted); content: ''; position: absolute; }
.crosshair::before { height: 1px; left: -5px; top: 5px; width: 21px; }
.crosshair::after { height: 21px; left: 5px; top: -5px; width: 1px; }
.crosshair-top { right: 12%; top: 20%; }
.crosshair-bottom { bottom: 17%; left: 14%; }
.console-data { border-top: 1px solid var(--line); gap: 10px; padding-top: 15px; }
.console-data span { display: flex; flex-direction: column; gap: 5px; }
.console-data small { color: var(--muted); font-size: 8px; }
.console-data em { color: var(--lime); font-style: normal; }
.console-scan { animation: scan 4.5s linear infinite; background: linear-gradient(90deg, transparent, rgba(94, 231, 255, .28), transparent); height: 1px; left: 0; position: absolute; top: 52%; width: 100%; }
.hero-foot { bottom: 40px; color: var(--muted); display: flex; font-size: 9px; justify-content: space-between; left: clamp(24px, 9vw, 145px); position: absolute; right: clamp(24px, 9vw, 145px); }
.hero-foot span:nth-child(2) { color: var(--paper); }
.videos-section { background: rgba(14, 19, 27, .58); border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); }
.videos-section .section-heading { margin-bottom: 43px; }
.videos-section h2 .red { color: var(--red); }
.video-filters { border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px 28px; margin-bottom: 28px; padding-bottom: 16px; }
.video-filter { background: transparent; border: 0; color: var(--muted); cursor: pointer; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; padding: 5px 0; text-transform: uppercase; transition: color .2s ease; }
.video-filter span { color: var(--cyan); font-size: 8px; margin-left: 7px; vertical-align: 2px; }
.video-filter:hover, .video-filter.is-active { color: var(--paper); }
.video-filter.is-active { border-bottom: 1px solid var(--cyan); }
.video-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.video-card { background: var(--panel); border: 1px solid var(--line); min-width: 0; transition: border-color .2s ease, transform .2s ease; }
.video-card:hover { border-color: rgba(94, 231, 255, .65); transform: translateY(-4px); }
.video-card.is-hidden { display: none; }
.video-frame { aspect-ratio: 16 / 9; background: #05070a; overflow: hidden; }
.video-frame iframe { border: 0; display: block; height: 100%; width: 100%; }
.video-meta { align-items: center; display: flex; gap: 15px; justify-content: space-between; min-height: 91px; padding: 18px 20px; }
.video-meta span { color: var(--cyan); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }
.video-meta h3 { font-size: 18px; font-weight: 500; letter-spacing: -.045em; line-height: 1.05; margin: 9px 0 0; }
.video-meta > a { color: var(--paper); font-size: 25px; }
.section { padding: 145px clamp(24px, 9vw, 145px); }
.work-section { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); }
.section-heading { margin-bottom: 78px; }
.heading-row { align-items: end; display: flex; gap: 40px; justify-content: space-between; }
h2 { font-size: clamp(54px, 7vw, 112px); margin-bottom: 0; }
.section-lede { color: var(--muted); font-size: 17px; line-height: 1.5; margin: 0 2vw 0 0; max-width: 330px; }
.signal-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.signal-card { min-height: 425px; overflow: hidden; padding: 22px; position: relative; }
.signal-card-red { background: var(--red); color: var(--bg); }
.signal-card-cyan { background: var(--cyan); color: var(--bg); }
.signal-card-lime { background: var(--lime); color: var(--bg); }
.card-top { display: flex; font-size: 8px; justify-content: space-between; }
.signal-card h3 { bottom: 82px; font-size: 36px; font-weight: 500; left: 22px; letter-spacing: -.08em; line-height: .9; margin: 0; position: absolute; }
.signal-card p { bottom: 22px; font-size: 13px; line-height: 1.4; margin: 0; max-width: 250px; position: absolute; }
.card-arrow { bottom: 21px; font-size: 24px; position: absolute; right: 22px; }
.card-graphic { position: absolute; right: 30px; top: 83px; }
.graphic-planet { border: 1px solid var(--bg); border-radius: 50%; height: 112px; overflow: hidden; width: 112px; }
.graphic-planet::before, .graphic-planet::after { border: 1px solid var(--bg); border-radius: 50%; content: ''; left: -22px; position: absolute; top: 37px; transform: rotate(-27deg); width: 154px; }
.graphic-planet::before { height: 37px; }
.graphic-planet::after { height: 64px; left: -23px; top: 23px; }
.graphic-planet span { background: var(--bg); border-radius: 50%; height: 13px; left: 48px; position: absolute; top: 48px; width: 13px; }
.graphic-grid { display: grid; gap: 7px; grid-template-columns: repeat(3, 21px); }
.graphic-grid i { border: 1px solid var(--bg); height: 21px; width: 21px; }
.graphic-grid i:nth-child(2), .graphic-grid i:nth-child(5), .graphic-grid i:nth-child(8) { background: var(--bg); }
.graphic-signal { height: 110px; width: 140px; }
.graphic-signal::before { border-bottom: 1px solid var(--bg); content: ''; left: 0; position: absolute; top: 57px; transform: rotate(-28deg); width: 150px; }
.graphic-signal span { background: var(--bg); border-radius: 50%; bottom: 27px; height: 10px; position: absolute; width: 10px; }
.graphic-signal span:nth-child(1) { left: 15px; }
.graphic-signal span:nth-child(2) { left: 54px; top: 49px; }
.graphic-signal span:nth-child(3) { left: 94px; top: 29px; }
.graphic-signal span:nth-child(4) { left: 127px; top: 3px; }
.studio-section { align-items: center; display: grid; gap: 9vw; grid-template-columns: 1fr 1fr; }
.studio-visual { align-items: center; display: flex; height: min(43vw, 535px); justify-content: center; min-height: 330px; position: relative; }
.studio-ring { border: 1px solid rgba(94, 231, 255, .4); border-radius: 50%; height: 75%; position: absolute; width: 75%; }
.studio-ring-one { transform: rotate(26deg) scaleY(.38); }
.studio-ring-two { border-color: rgba(255, 51, 71, .65); height: 92%; transform: rotate(-38deg) scaleY(.31); width: 92%; }
.studio-mark { color: var(--paper); font-size: clamp(150px, 22vw, 340px); font-weight: 600; letter-spacing: -.2em; line-height: .55; position: relative; transform: translateX(-.08em); }
.studio-mark::after { background: var(--red); border-radius: 50%; box-shadow: 0 0 18px var(--red); content: ''; height: 19px; left: 50%; position: absolute; top: 18%; width: 19px; }
.studio-mark span { color: var(--cyan); }
.studio-coordinate { color: var(--muted); font-family: var(--mono); font-size: 9px; left: 0; line-height: 1.5; position: absolute; top: 17%; }
.studio-copy { max-width: 500px; }
.studio-copy h2 { margin-bottom: 35px; }
.studio-copy h2 .red { color: var(--red); }
.studio-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; line-height: 1.55; margin-bottom: 40px; }
.log-row { border-top: 1px solid var(--line); display: flex; font-size: 9px; justify-content: space-between; padding: 13px 0; }
.log-row strong { color: var(--cyan); font-size: 9px; font-weight: 400; }
.contact-section { align-items: center; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: flex; gap: 8vw; justify-content: space-between; }
.contact-copy { flex: 1; }
.contact-terminal { background: var(--panel); border: 1px solid var(--line); max-width: 500px; min-height: 220px; padding: 21px; position: relative; width: 100%; }
.terminal-top { align-items: center; border-bottom: 1px solid var(--line); color: var(--muted); display: flex; font-size: 9px; gap: 15px; padding-bottom: 17px; }
.terminal-top > span { display: flex; gap: 5px; }
.terminal-top i { background: var(--red); border-radius: 50%; display: block; height: 6px; width: 6px; }
.terminal-top i:nth-child(2) { background: var(--lime); }
.terminal-top i:nth-child(3) { background: var(--cyan); }
.contact-terminal > p { color: var(--muted); font-family: var(--mono); font-size: 12px; margin: 35px 0 15px; }
.contact-terminal > a { color: var(--cyan); font-family: var(--mono); font-size: clamp(18px, 2vw, 26px); letter-spacing: -.04em; }
.contact-terminal > a span { color: var(--paper); margin-left: 14px; }
.terminal-cursor { animation: blink 1s steps(2) infinite; background: var(--cyan); display: inline-block; height: 16px; margin-left: 6px; vertical-align: -2px; width: 7px; }
.site-footer { color: var(--muted); display: flex; font-size: 9px; justify-content: space-between; padding: 28px clamp(24px, 6vw, 92px); }
.site-footer p { margin: 0; }
.site-footer a { color: var(--paper); }
.sr-only { height: 1px; margin: -1px; overflow: hidden; position: absolute; width: 1px; clip: rect(0, 0, 0, 0); }
@keyframes scan { 0% { transform: translateY(-150px); } 100% { transform: translateY(300px); } }
@keyframes blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; } }
@media (max-width: 850px) {
  .site-header { padding-top: 20px; }
  .header-status { display: none; }
  .menu-toggle { cursor: pointer; display: grid; gap: 5px; padding: 10px 0 10px 10px; z-index: 6; }
  .menu-toggle span:not(.sr-only) { background: var(--paper); display: block; height: 1px; width: 25px; }
  .site-nav { background: var(--panel); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 22px; margin: 0; opacity: 0; padding: 80px 25px 27px; pointer-events: none; position: absolute; right: 24px; top: 8px; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; width: min(270px, calc(100% - 48px)); }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .hero { display: block; min-height: auto; padding-bottom: 130px; padding-top: 145px; }
  .hero-console { margin: 80px auto 0; max-width: 520px; }
  .hero-foot { bottom: 44px; gap: 20px; }
  .hero-foot span:nth-child(2) { display: none; }
  .heading-row { align-items: start; display: block; }
  .heading-row h2 { margin-bottom: 28px; }
  .video-grid { grid-template-columns: 1fr; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-card { min-height: 330px; }
  .studio-section { display: block; }
  .studio-visual { margin-bottom: 80px; }
  .contact-section { align-items: start; display: block; }
  .contact-terminal { margin-top: 65px; max-width: none; }
}
@media (max-width: 480px) {
  .brand-code { display: none; }
  h1 { font-size: 68px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 25px; }
  .hero-console { min-height: 405px; padding: 14px; }
  .orbital-display { height: 270px; }
  .console-data { font-size: 8px; }
  .console-data small { font-size: 7px; }
  .hero-foot { font-size: 8px; }
  .hero-foot span:first-child { display: none; }
  .section { padding-bottom: 100px; padding-top: 100px; }
  .studio-visual { height: 340px; min-height: 0; }
  .studio-coordinate { top: 5%; }
  .contact-terminal > a { font-size: 16px; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 14px; }
}
