:root {
  --night: #07111f;
  --night-deep: #030811;
  --ink: #f5f9ff;
  --muted: #aebed0;
  --quiet: #7f93aa;
  --line: rgba(190, 222, 255, 0.16);
  --glass: rgba(11, 25, 43, 0.64);
  --cyan: #54ead7;
  --blue: #65a8ff;
  --violet: #b684ff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--night-deep);
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 51% -15%, rgba(39, 100, 134, 0.31), transparent 42%),
    linear-gradient(145deg, #071320 0%, #060d18 55%, #030711 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.25;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.aurora__veil {
  position: absolute;
  width: 52rem;
  height: 25rem;
  border-radius: 50%;
  filter: blur(78px);
  opacity: 0.2;
  transform: rotate(-18deg);
}

.aurora__veil--one {
  top: -10rem;
  left: -16rem;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  animation: drift-one 16s ease-in-out infinite alternate;
}

.aurora__veil--two {
  right: -18rem;
  bottom: -8rem;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  animation: drift-two 19s ease-in-out infinite alternate;
}

.aurora__star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #dffcff;
  box-shadow: 0 0 14px 3px rgba(120, 238, 255, 0.64);
  animation: shimmer 4.5s ease-in-out infinite;
}

.aurora__star--one { top: 21%; left: 12%; }
.aurora__star--two { top: 15%; right: 18%; animation-delay: -1.7s; }
.aurora__star--three { right: 10%; bottom: 27%; animation-delay: -3.2s; }

.shell {
  width: min(1120px, calc(100% - 48px));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 42px 0 34px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 13px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 18px rgba(85, 220, 224, 0.2));
}

.brand__word {
  font-size: 1.55rem;
  font-weight: 720;
  letter-spacing: -0.045em;
}

.hero {
  align-self: center;
  max-width: 840px;
  padding: 9vh 0 11vh;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #b7cadc;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 12px rgba(84, 234, 215, 0.6);
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.25rem, 8.3vw, 7.25rem);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.068em;
}

h1 em {
  display: inline-block;
  padding-right: 0.08em;
  color: transparent;
  font-style: normal;
  background: linear-gradient(105deg, #bffff5 0%, var(--cyan) 30%, var(--blue) 67%, #cfadff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.intro {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  line-height: 1.65;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 34px;
  padding: 11px 16px 11px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d9e9f7;
  background: rgba(11, 26, 43, 0.56);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045), 0 14px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.status__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(84, 234, 215, 0.1), 0 0 18px rgba(84, 234, 215, 0.75);
  animation: breathe 2.4s ease-in-out infinite;
}

.contact {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto;
  gap: 22px 34px;
  align-items: end;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.contact p { margin: 0; }

.contact__label {
  margin-bottom: 6px !important;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__copy > p:last-child {
  color: var(--quiet);
  font-size: 0.91rem;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact__links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #dcecff;
  background: var(--glass);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact__links a:hover,
.contact__links a:focus-visible {
  border-color: rgba(112, 230, 221, 0.48);
  background: rgba(17, 38, 60, 0.85);
  transform: translateY(-2px);
  outline: none;
}

.contact__links a:focus-visible { box-shadow: 0 0 0 3px rgba(84, 234, 215, 0.17); }

.contact__links svg {
  width: 19px;
  height: 19px;
  fill: var(--cyan);
}

.contact__links span {
  font-size: 0.88rem;
  font-weight: 650;
}

.contact__legal {
  grid-column: 1 / -1;
  color: #60758b;
  font-size: 0.76rem;
}

@keyframes drift-one {
  to { transform: translate(11vw, 5vh) rotate(-8deg) scale(1.08); }
}

@keyframes drift-two {
  to { transform: translate(-8vw, -4vh) rotate(-25deg) scale(0.94); }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.18; transform: scale(0.75); }
  50% { opacity: 0.85; transform: scale(1); }
}

@keyframes breathe {
  0%, 100% { opacity: 0.72; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 34px, 620px);
    padding: 26px 0 24px;
  }

  .brand__mark { width: 38px; height: 38px; }
  .brand__word { font-size: 1.42rem; }
  .hero { padding: 10vh 0 11vh; }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
    line-height: 0.98;
  }

  .intro { margin-top: 24px; }

  .contact {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact__links { justify-content: flex-start; }
  .contact__legal { grid-column: 1; line-height: 1.5; }
}

@media (max-width: 430px) {
  .contact__links { display: grid; grid-template-columns: 1fr; }
  .contact__links a { width: 100%; }
}

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