:root {
  --page-bg: #071a33;
  --page-bg-soft: rgba(255, 255, 255, 0.08);
  --page-border: rgba(255, 255, 255, 0.14);
  --text-strong: rgba(255, 255, 255, 0.96);
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-soft: rgba(255, 255, 255, 0.52);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(130, 171, 227, 0.18), transparent 30%),
    linear-gradient(180deg, #102947 0%, #071a33 55%, #04111f 100%);
  color: var(--text-strong);
  font-family: "Open Sans", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.coming-soon__inner {
  width: min(100%, 760px);
  min-height: min(100vh - 4rem, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: clamp(2.5rem, 8vw, 5.5rem) clamp(1.75rem, 6vw, 4.5rem);
  text-align: center;
  border: 1px solid var(--page-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.coming-soon__logo {
  width: clamp(90px, 14vw, 126px);
  height: auto;
  margin-bottom: 0.4rem;
}

.coming-soon__copy {
  max-width: 34rem;
}

.coming-soon__eyebrow {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h2 {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 300;
  line-height: 1.55;
}

.coming-soon__copy p:last-child {
  margin-top: 1.35rem;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links__item {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #fff;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.social-links__item:hover,
.social-links__item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.88);
  background-color: var(--page-bg-soft);
}

.social-links__item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.28);
  outline-offset: 4px;
}

.social-links__item svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links__item:first-child svg {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 640px) {
  .coming-soon {
    padding: 1rem;
  }

  .coming-soon__inner {
    min-height: calc(100vh - 2rem);
    border-radius: 22px;
  }

  .coming-soon__copy p:last-child {
    font-size: 0.95rem;
  }
}
