:root {
  color-scheme: dark;
  --bg: #050915;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-border: rgba(90, 132, 255, 0.24);
  --text: #071139;
  --muted: #56627f;
  --blue: #155dff;
  --blue-dark: #05185c;
  --cyan: #3edcff;
  --shadow: 0 30px 90px rgba(0, 18, 80, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(44, 110, 255, 0.42), transparent 28rem),
    radial-gradient(circle at 82% 26%, rgba(62, 220, 255, 0.22), transparent 24rem),
    linear-gradient(135deg, #050915 0%, #071756 48%, #0a37a8 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto -12rem -18rem auto;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  background: rgba(62, 220, 255, 0.18);
  filter: blur(80px);
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero-card {
  width: min(100%, 980px);
  padding: clamp(1.4rem, 4vw, 3.5rem);
  border: 1px solid var(--panel-border);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 255, 0.9)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(21, 93, 255, 0.12), transparent 24rem),
    linear-gradient(90deg, transparent, rgba(62, 220, 255, 0.08), transparent);
  pointer-events: none;
}

.hero-card > * {
  position: relative;
}

.brand-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.4rem);
}

.brand-logo {
  width: min(760px, 94%);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(2, 28, 122, 0.16));
}

.status-pill {
  width: fit-content;
  margin: 0 auto 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 0.9rem;
  border: 1px solid rgba(21, 93, 255, 0.18);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(21, 93, 255, 0.42);
  animation: pulse 1.9s infinite;
}

h1 {
  margin: 0;
  color: #06113b;
  font-size: clamp(2.35rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-copy {
  width: min(100%, 690px);
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: clamp(1.5rem, 4vw, 2.4rem) auto 0;
  width: min(100%, 720px);
}

.service-grid article {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  border: 1px solid rgba(21, 93, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 34px rgba(7, 23, 86, 0.07);
}

.service-grid span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-grid strong {
  color: #06113b;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
}

.domain-line {
  margin-top: clamp(1.5rem, 4vw, 2.3rem);
  color: var(--blue-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  pointer-events: none;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(21, 93, 255, 0.42); }
  70% { box-shadow: 0 0 0 12px rgba(21, 93, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(21, 93, 255, 0); }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 1rem;
  }

  .hero-card {
    border-radius: 26px;
  }

  .brand-logo {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: 78px;
  }

  .site-footer {
    position: static;
    margin: -2.3rem 0 1rem;
  }
}

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