:root {
  --bg: #070a12;
  --bg-soft: #0b1020;
  --text: #f8fbff;
  --muted: #9aa7bd;
  --line: rgba(255,255,255,.09);
  --cyan: #64f1ff;
  --blue: #6a7cff;
  --violet: #a970ff;
  --green: #59f2b8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(74, 97, 255, .10), transparent 28%),
    radial-gradient(circle at 80% 25%, rgba(90, 238, 255, .07), transparent 30%),
    linear-gradient(180deg, #060910 0%, #090d18 100%);
  font-family: "Manrope", system-ui, sans-serif;
  position: relative;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 20;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, #fff 1px, transparent 2px);
  background-size: 8px 8px;
  mix-blend-mode: soft-light;
}

.grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, #000 15%, transparent 82%);
  opacity: .6;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .18;
  pointer-events: none;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-one {
  width: 340px;
  height: 340px;
  background: var(--blue);
  left: -100px;
  top: 10%;
}

.orb-two {
  width: 420px;
  height: 420px;
  background: var(--cyan);
  right: -150px;
  top: 18%;
  animation-delay: -4s;
}

.orb-three {
  width: 280px;
  height: 280px;
  background: var(--violet);
  left: 42%;
  bottom: -130px;
  animation-delay: -7s;
}

.site-header,
.site-footer,
.hero {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 11px;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 0 18px rgba(100,241,255,.06);
}

.brand-core {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow:
    0 0 12px rgba(100,241,255,.9),
    0 0 28px rgba(169,112,255,.55);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: #c7d2e4;
  font-size: 13px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(89,242,184,.8);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero {
  min-height: calc(100vh - 176px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 2;
  padding-block: 36px 72px;
}

.hero-inner {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #b9c4d6;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 10px rgba(100,241,255,.6);
}

h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(58px, 7.2vw, 108px);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 700;
}

.headline-line {
  display: block;
}

.gradient-text {
  background: linear-gradient(100deg, #ffffff 6%, #8af7ff 34%, #8491ff 63%, #c98cff 93%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 180% 180%;
  animation: gradientFlow 6s ease infinite;
}

.intro {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}

.actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.primary-btn {
  min-width: 156px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 14px;
  color: #061018;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), #9a8cff);
  box-shadow:
    0 12px 38px rgba(100,241,255,.16),
    inset 0 1px 0 rgba(255,255,255,.5);
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 45px rgba(100,241,255,.22),
    inset 0 1px 0 rgba(255,255,255,.5);
}

.primary-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.primary-btn:hover svg {
  transform: translateX(4px);
}

.email-link {
  color: #bdc8d9;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}

.email-link:hover {
  color: #fff;
  border-color: var(--cyan);
}

.signal {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 220px;
}

.signal-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100,241,255,.35), transparent);
}

.signal-node {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.tech-panel {
  width: min(460px, 92vw);
  aspect-ratio: 1;
  position: relative;
  justify-self: end;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 30px 55px rgba(0,0,0,.35));
}

.tech-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(138,247,255,.16);
}

.ring-one {
  inset: 4%;
  animation: spin 18s linear infinite;
  border-top-color: rgba(138,247,255,.9);
  border-right-color: rgba(169,112,255,.45);
}

.ring-two {
  inset: 17%;
  animation: spinReverse 13s linear infinite;
  border-left-color: rgba(134,145,255,.85);
  border-bottom-color: rgba(100,241,255,.35);
}

.ring-three {
  inset: 31%;
  animation: spin 9s linear infinite;
  border-top-color: rgba(255,255,255,.85);
  border-right-color: rgba(100,241,255,.8);
}

.tech-ring::before,
.tech-ring::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(100,241,255,.9);
}

.tech-ring::before {
  top: 8%;
  left: 19%;
}

.tech-ring::after {
  bottom: 12%;
  right: 14%;
  background: var(--violet);
  box-shadow: 0 0 14px rgba(169,112,255,.9);
}

.tech-center {
  width: 150px;
  aspect-ratio: 1;
  border-radius: 36px;
  display: grid;
  place-items: center;
  position: relative;
  transform: rotate(45deg);
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0 50px rgba(100,241,255,.08),
    0 0 60px rgba(79,93,255,.13);
  animation: breathe 4s ease-in-out infinite;
}

.tech-core {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--violet));
  box-shadow:
    0 0 22px rgba(100,241,255,.55),
    0 0 54px rgba(169,112,255,.28);
}

.tech-label {
  position: absolute;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #cbd5e5;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(7,10,18,.60);
  border-radius: 9px;
  backdrop-filter: blur(10px);
}

.label-one {
  top: 9%;
  right: 9%;
}

.label-two {
  left: 0;
  bottom: 22%;
}

.label-three {
  right: 2%;
  bottom: 8%;
}

.site-footer {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #69778e;
  font-size: 12px;
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-note {
  letter-spacing: .16em;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal .85s cubic-bezier(.2,.7,.2,1) forwards;
}

.reveal-1 { animation-delay: .10s; }
.reveal-2 { animation-delay: .20s; }
.reveal-3 { animation-delay: .32s; }
.reveal-4 { animation-delay: .46s; }
.reveal-5 { animation-delay: .60s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

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

@keyframes pulse {
  0%, 100% { opacity: .55; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.14); }
}

@keyframes breathe {
  0%, 100% { transform: rotate(45deg) scale(1); }
  50% { transform: rotate(45deg) scale(1.035); }
}

@keyframes floatOrb {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(34px, -26px, 0) scale(1.08); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 70px;
  }

  .tech-panel {
    justify-self: center;
    width: min(380px, 88vw);
    margin-bottom: 30px;
  }

  h1 {
    font-size: clamp(54px, 12vw, 92px);
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .hero {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 82px;
  }

  .brand {
    font-size: 16px;
  }

  .status-pill {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 40px;
  }

  .eyebrow {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(50px, 16vw, 76px);
  }

  .intro {
    margin-top: 22px;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .primary-btn {
    width: 100%;
  }

  .signal {
    margin-top: 38px;
  }

  .tech-panel {
    width: min(320px, 92vw);
  }

  .site-footer {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
  }
}

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