:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --line: #262626;
  --line-2: #3a3a3a;
  --text: #f3f3f3;
  --muted: #b5b5b5;
  --accent: #d9ff3f;
  --accent-dark: #87a800;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: radial-gradient(900px 420px at 85% -10%, rgba(217, 255, 63, 0.11), transparent 62%), var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.04;
  background-image: radial-gradient(#fff 0.7px, transparent 0.7px);
  background-size: 3px 3px;
}

.header,
main {
  width: min(1180px, calc(100% - 28px));
  margin-left: auto;
  margin-right: auto;
}

.header {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  background: rgba(8, 8, 8, 0.84);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
}

.header-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wordmark {
  text-decoration: none;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.menu {
  display: flex;
  gap: 24px;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible { color: var(--accent); }

.header-link {
  text-decoration: none;
  color: #111;
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 9px 12px;
  font-weight: 800;
  font-size: 0.86rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px;
  border: 1px solid var(--line-2);
  background: #111;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #d4d4d4;
  padding: 6px 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--accent);
  color: #101300;
}

.hero {
  margin-top: 14px;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, #090909 0%, #050505 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}

.hero-copy {
  padding: clamp(20px, 3.2vw, 38px);
  border-right: 1px solid var(--line);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

h1 {
  margin: 10px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.1rem, 4.9vw, 4.1rem);
  line-height: 1;
  max-width: 14ch;
}

.hero-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 55ch;
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
}

.btn-primary {
  background: var(--accent);
  color: #0d1100;
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

.hero-panel {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.panel-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: #909090;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.signal-grid div {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 10px;
}

.signal-grid span {
  display: block;
  color: #8f8f8f;
  font-size: 0.8rem;
}

.signal-grid strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.42rem;
  color: var(--accent);
}

.console {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.79rem;
  background: #020202;
  border: 1px solid var(--line);
  padding: 12px;
  color: #c8c8c8;
  line-height: 1.55;
}

.lanes {
  margin-top: 14px;
  display: grid;
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
}

.lanes article {
  background: #090909;
  padding: clamp(18px, 2.8vw, 28px);
}

.lanes h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

.lanes p {
  margin: 10px 0 0;
  color: #b5b5b5;
  line-height: 1.6;
  max-width: 80ch;
}

.proof {
  margin-top: 14px;
  border: 1px solid var(--line-2);
  padding: clamp(16px, 3vw, 26px);
  position: relative;
}

.proof-head p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 800;
}

.proof-head h2 {
  margin: 8px 0 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.shot {
  margin: 0;
  border: 1px solid var(--line);
  background: #0b0b0b;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

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

.shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.shot figcaption {
  padding: 9px 11px;
  color: #a9a9a9;
  font-size: 0.86rem;
}

.screens-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-areas:
    'a a b'
    'a a c'
    'd e c';
}

.shot-a { grid-area: a; }
.shot-b { grid-area: b; }
.shot-c { grid-area: c; }
.shot-d { grid-area: d; }
.shot-e { grid-area: e; }
.shot-pdf img {
  object-fit: contain;
  background: transparent;
}

.rollout {
  margin-top: 14px;
  border: 1px solid var(--line-2);
  background: linear-gradient(90deg, #0b0b0b 0%, #0e1203 100%);
  padding: clamp(18px, 3.1vw, 28px);
  display: grid;
  gap: 10px;
  align-items: center;
  justify-items: start;
}

.rollout h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.9vw, 2.2rem);
}

.rollout p {
  margin: 0;
  color: #b9b9b9;
}

.viewer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.viewer.open {
  opacity: 1;
  pointer-events: auto;
}

.viewer img {
  max-width: min(1200px, 96vw);
  max-height: 88vh;
  border: 1px solid #585858;
}

.viewer-close {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid #707070;
  background: #0b0b0b;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (max-width: 1060px) {
  .header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .header-right {
    flex-wrap: wrap;
  }

  .menu {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero,
  .screens-grid {
    grid-template-columns: 1fr;
    grid-template-areas: 'a' 'b' 'c' 'd' 'e';
  }

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