:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #040816;
  color: #f5f7ff;
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at 50% -20%, rgba(57, 105, 255, 0.2), transparent 43%),
    #040816;
}

.holding-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 32px 20px;
}

.holding-page::before {
  position: absolute;
  inset: 0;
  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: 48px 48px;
  content: "";
  mask-image: radial-gradient(circle, black 15%, transparent 72%);
}

.ambient {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.22;
}

.ambient-one {
  top: -140px;
  right: -100px;
  background: #3267ff;
}

.ambient-two {
  bottom: -190px;
  left: -120px;
  background: #0047a8;
}

.card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: clamp(32px, 7vw, 64px);
  border: 1px solid rgba(154, 177, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(13, 23, 50, 0.88), rgba(6, 11, 27, 0.9));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  text-align: center;
  backdrop-filter: blur(18px);
}

.mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  place-items: center;
  border: 1px solid rgba(139, 168, 255, 0.36);
  border-radius: 18px;
  background: rgba(70, 109, 255, 0.12);
  color: #b9c9ff;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.eyebrow {
  margin: 0 0 12px;
  color: #8fa9ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 8vw, 64px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.intro {
  max-width: 440px;
  margin: 22px auto 30px;
  color: #aeb8d1;
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.65;
}

.owner-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid #6e8fff;
  border-radius: 999px;
  background: #5274ed;
  box-shadow: 0 12px 34px rgba(49, 83, 211, 0.3);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.owner-link:hover {
  transform: translateY(-2px);
  background: #6787f5;
  box-shadow: 0 16px 40px rgba(49, 83, 211, 0.4);
}

.owner-link:focus-visible {
  outline: 3px solid rgba(144, 171, 255, 0.55);
  outline-offset: 4px;
}

@media (max-width: 480px) {
  .card {
    padding: 34px 22px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .owner-link {
    transition: none;
  }
}
