:root {
  --navy: #080d1f;
  --navy-soft: #101832;
  --white: #f8f9ff;
  --muted: #909ab6;
  --line: rgba(133, 151, 205, 0.22);
  --violet: #873cff;
  --cyan: #16c7e8;
  --amber: #ffbd46;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(135, 60, 255, 0.09), transparent 28rem),
    radial-gradient(circle at 10% 82%, rgba(22, 199, 232, 0.06), transparent 28rem),
    var(--navy);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(74, 109, 183, 0.55) 0.7px, transparent 0.7px);
  background-size: 58px 58px;
  opacity: 0.22;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background: repeating-linear-gradient(115deg, #fff 0, transparent 1px, transparent 4px);
}

.site-header,
main,
footer {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 13px; color: inherit; text-decoration: none; }
.brand-mark { position: relative; font-size: 31px; font-weight: 800; line-height: 1; letter-spacing: -4px; }
.brand-mark span { color: var(--cyan); font-size: 12px; vertical-align: top; margin-left: 3px; letter-spacing: 0; }
.brand-name { font-size: 17px; font-weight: 800; letter-spacing: 0.08em; }

.eyebrow { margin: 0; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 6px; height: 6px; margin-right: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  min-height: 610px;
  padding: 74px 4% 62px;
}

.hero-copy { position: relative; z-index: 3; }
.kicker { margin: 0 0 20px; color: var(--violet); font-size: 11px; font-weight: 800; letter-spacing: 0.17em; }
h1 { max-width: 800px; margin: 0; font-size: clamp(52px, 7.1vw, 98px); line-height: 0.98; letter-spacing: -0.065em; }
h1 em { color: var(--cyan); font-style: normal; }
.intro { max-width: 580px; margin: 29px 0 31px; color: #aab2c9; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.75; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 184px;
  padding: 14px 18px;
  border: 1px solid rgba(22, 199, 232, 0.34);
  border-radius: 8px;
  background: rgba(22, 199, 232, 0.07);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 rgba(22, 199, 232, 0.5); animation: pulse 2s infinite; }

.orbit { position: absolute; z-index: 0; top: 50%; right: -9%; width: 570px; height: 570px; transform: translateY(-50%); }
.ring { position: absolute; inset: 50%; border: 1px solid var(--line); border-radius: 50%; transform: translate(-50%, -50%); }
.ring-one { width: 92%; height: 92%; }
.ring-two { width: 66%; height: 66%; }
.ring-three { width: 41%; height: 41%; }
.planet { position: absolute; width: 11px; height: 11px; border-radius: 50%; box-shadow: 0 0 19px currentColor; }
.planet.violet { top: 3.5%; left: 48%; color: var(--violet); background: currentColor; animation: float 5s ease-in-out infinite; }
.planet.cyan { top: 72%; left: 10%; color: var(--cyan); background: currentColor; animation: float 4.4s ease-in-out -1.2s infinite; }
.planet.amber { top: 72%; right: 9%; color: var(--amber); background: currentColor; animation: float 5.6s ease-in-out -2.5s infinite; }

.cube { position: relative; z-index: 2; justify-self: center; width: 170px; height: 190px; filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.45)); animation: cube-float 6s ease-in-out infinite; }
.cube-face { position: absolute; width: 120px; height: 120px; }
.face-top { top: 0; left: 25px; background: linear-gradient(135deg, #ae5aff, var(--violet)); clip-path: polygon(50% 0, 100% 25%, 50% 52%, 0 25%); }
.face-left { top: 30px; left: 25px; background: linear-gradient(155deg, #109fcb, var(--cyan)); clip-path: polygon(0 0, 50% 27%, 50% 100%, 0 72%); }
.face-right { top: 30px; left: 85px; background: linear-gradient(205deg, var(--amber), #f4982b); clip-path: polygon(0 27%, 50% 0, 50% 72%, 0 100%); }
.cube > span { position: absolute; z-index: 2; top: 58px; left: 70px; font-size: 26px; font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.cube sup { color: var(--navy); font-size: 10px; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.services article { display: grid; grid-template-columns: 46px 1fr; align-items: start; gap: 12px; min-height: 126px; padding: 29px 32px; border-right: 1px solid var(--line); }
.services article:last-child { border-right: 0; }
.services span { color: var(--muted); font-size: 11px; font-weight: 700; }
.services article:nth-child(1) span { color: var(--violet); }
.services article:nth-child(2) span { color: var(--cyan); }
.services article:nth-child(3) span { color: var(--amber); }
.services h2 { margin: 0; font-size: 15px; line-height: 1.45; letter-spacing: -0.02em; }

footer { display: flex; justify-content: space-between; gap: 24px; padding: 29px 0 36px; color: var(--muted); font-size: 10px; }
footer p { margin: 0; }

@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(22, 199, 232, 0); } 100% { box-shadow: 0 0 0 0 rgba(22, 199, 232, 0); } }
@keyframes float { 50% { transform: translateY(-9px); } }
@keyframes cube-float { 50% { transform: translateY(-12px) rotate(1.5deg); } }

@media (max-width: 800px) {
  .site-header, main, footer { width: min(100% - 34px, 680px); }
  .site-header { height: 82px; }
  .eyebrow { display: none; }
  .hero { display: block; min-height: 640px; padding: 70px 8px 90px; }
  h1 { font-size: clamp(49px, 15vw, 74px); }
  .intro { max-width: 520px; }
  .cube { position: absolute; right: -25px; bottom: 15px; transform: scale(.65); opacity: .92; }
  .orbit { top: 49%; right: -260px; width: 520px; height: 520px; }
  .services { grid-template-columns: 1fr; }
  .services article { min-height: auto; padding: 22px 12px; border-right: 0; border-bottom: 1px solid var(--line); }
  .services article:last-child { border-bottom: 0; }
  footer { flex-direction: column; padding-bottom: 28px; }
}

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