:root {
  color-scheme: dark;
  --ink: #f6f7fb;
  --muted: #a8afbc;
  --paper: #080a0f;
  --panel: #11151d;
  --line: #272d38;
  --accent: #ffb000;
  --accent-2: #ff5c35;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }

.nav {
  min-height: 76px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; letter-spacing: .06em; }
.brand strong { color: var(--accent); font-weight: 800; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  color: #090b10; background: var(--accent); font-weight: 900; border-radius: 4px;
}
nav { display: flex; align-items: center; gap: 28px; }
nav a { text-decoration: none; color: var(--muted); font-size: .95rem; }
nav a:hover { color: var(--ink); }
.nav-cta { border: 1px solid var(--line); padding: 9px 15px; border-radius: 4px; }

main, footer { max-width: 1180px; margin: 0 auto; }
.hero {
  min-height: 650px;
  padding: 84px 28px 70px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 64px;
}
.eyebrow { margin: 0 0 18px; color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .17em; }
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(2.8rem, 6.7vw, 6rem); letter-spacing: -.055em; }
h2 { margin-bottom: 20px; font-size: clamp(2.1rem, 4vw, 3.5rem); letter-spacing: -.04em; }
.lead { max-width: 640px; color: var(--muted); font-size: 1.15rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; padding: 12px 21px; border-radius: 4px; font-weight: 750; text-decoration: none; }
.primary { background: var(--accent); color: #090b10; }
.secondary { border: 1px solid var(--line); }

.stage { min-height: 420px; position: relative; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle at 50% 70%, #20293b 0, #0b0e15 46%, #080a0f 70%); border: 1px solid var(--line); }
.beam { position: absolute; top: -70px; width: 90px; height: 560px; opacity: .23; filter: blur(9px); transform-origin: top center; background: linear-gradient(var(--accent), transparent 82%); }
.beam-one { left: 15%; transform: rotate(-24deg); }
.beam-two { left: 48%; transform: rotate(7deg); background: linear-gradient(#fff, transparent 82%); }
.beam-three { right: 10%; transform: rotate(26deg); background: linear-gradient(var(--accent-2), transparent 82%); }
.stage-card { position: relative; width: 210px; aspect-ratio: 1; display: flex; flex-direction: column; justify-content: center; padding: 30px; background: #0c0f16e8; border: 1px solid #ffffff27; box-shadow: 0 28px 80px #000; transform: rotate(-3deg); }
.stage-card span, .stage-card strong { font-size: 2.5rem; line-height: .92; letter-spacing: -.06em; }
.stage-card strong { color: var(--accent); font-size: 3.2rem; }
.stage-card small { margin-top: 13px; letter-spacing: .28em; color: var(--muted); }

.services { padding: 94px 28px; border-top: 1px solid var(--line); }
.service-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-grid article { min-height: 255px; padding: 32px; background: var(--panel); }
.number { display: block; margin-bottom: 54px; color: var(--accent); font-size: .8rem; font-weight: 800; }
.service-grid h3 { margin-bottom: 12px; font-size: 1.5rem; }
.service-grid p, .company p, .privacy p { color: var(--muted); }

.company { padding: 100px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; border-top: 1px solid var(--line); }
.company > div > p:last-child { max-width: 500px; }
dl { margin: 0; border-top: 1px solid var(--line); }
dl div { display: grid; grid-template-columns: 120px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--line); }
dt { color: var(--muted); }
dd { margin: 0; }
dd a { text-decoration-color: var(--accent); text-underline-offset: 4px; }
.privacy { margin: 0 28px; padding: 48px 0 74px; border-top: 1px solid var(--line); }
.privacy h2 { font-size: 1.5rem; }
.privacy p { max-width: 820px; }
footer { padding: 26px 28px 44px; display: flex; flex-wrap: wrap; gap: 12px 28px; color: var(--muted); border-top: 1px solid var(--line); font-size: .88rem; }
footer p { margin: 0; }
footer a { margin-left: auto; }

@media (max-width: 760px) {
  .nav { align-items: flex-start; }
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 62px; }
  .stage { min-height: 320px; }
  .service-grid, .company { grid-template-columns: 1fr; }
  .company { gap: 42px; }
  footer a { margin-left: 0; }
}
