:root {
  --navy-950: #041128;
  --navy-900: #071a3a;
  --navy-800: #0d2d62;
  --blue-600: #1565e5;
  --blue-500: #2f7cff;
  --ice: #eef5ff;
  --white: #ffffff;
  --muted: #aebcd4;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--navy-950);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 124, 255, 0.23), transparent 31rem),
    radial-gradient(circle at 12% 80%, rgba(21, 101, 229, 0.16), transparent 28rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 52%, #061631);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.holding-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(1120px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 34px 42px 22px;
}

.brand__mark {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.brand__name,
.brand__descriptor {
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand__name {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: 0.13em;
}

.brand__descriptor {
  margin-top: 8px;
  color: var(--blue-500);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.38em;
}

.hero__content {
  max-width: 850px;
  padding: 56px 42px 60px;
}

.eyebrow {
  margin: 0 0 19px;
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.65rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.23rem);
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 11px 15px;
  border: 1px solid rgba(47, 124, 255, 0.35);
  border-radius: 999px;
  color: var(--ice);
  background: rgba(21, 101, 229, 0.12);
  font-size: 0.88rem;
}

.status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 5px rgba(47, 124, 255, 0.13);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.feature {
  min-height: 205px;
  padding: 30px 34px 34px;
}

.feature + .feature {
  border-left: 1px solid var(--line);
}

.feature__number {
  color: var(--blue-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature h2 {
  margin: 31px 0 8px;
  font-size: 1.24rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 34px;
  border-top: 1px solid var(--line);
  color: rgba(238, 245, 255, 0.56);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.site-footer__domains {
  letter-spacing: 0.05em;
}

@media (max-width: 760px) {
  .holding-page {
    padding: 16px;
  }

  .hero {
    border-radius: 20px;
  }

  .brand {
    gap: 13px;
    padding: 25px 24px 12px;
  }

  .brand__mark {
    width: 58px;
    height: 58px;
  }

  .brand__name {
    font-size: 1.35rem;
  }

  .brand__descriptor {
    font-size: 0.66rem;
    letter-spacing: 0.28em;
  }

  .hero__content {
    padding: 45px 24px 48px;
  }

  h1 {
    line-height: 1.04;
  }

  .status {
    align-items: flex-start;
    border-radius: 16px;
    line-height: 1.45;
  }

  .status__dot {
    flex: 0 0 auto;
    margin-top: 5px;
  }

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

  .feature {
    min-height: auto;
    padding: 25px 24px;
  }

  .feature + .feature {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature h2 {
    margin-top: 18px;
  }

  .site-footer {
    flex-direction: column;
    gap: 7px;
    padding: 19px 24px 23px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero {
    animation: reveal 650ms ease-out both;
  }

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