﻿:root {
  --navy: #19338c;
  --navy-soft: #213d99;
  --white: #ffffff;
  --text-soft: rgba(255, 255, 255, .82);
  --accent: #ffb323;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
  radial-gradient(
    ellipse at 8% 18%,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.035) 18%,
    transparent 38%
  ),
  radial-gradient(
    ellipse at 92% 24%,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 20%,
    transparent 40%
  ),
  radial-gradient(
    ellipse at 12% 72%,
    rgba(255, 255, 255, 0.045) 0%,
    transparent 34%
  ),
  radial-gradient(
    ellipse at 88% 70%,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 35%
  ),
  radial-gradient(
    circle at 50% 8%,
    rgba(75, 135, 255, 0.42) 0%,
    rgba(55, 105, 230, 0.18) 32%,
    transparent 58%
  ),
  linear-gradient(
    180deg,
    #284db4 0%,
    #2245a5 32%,
    #1d3d98 62%,
    #17337f 100%
  );

background-attachment: fixed;;
  color: var(--white);
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 64px 24px 40px;
}

.content {
  width: min(760px, 100%);
  text-align: center;
}

.logo {
  display: block;
  width: min(580px, 92vw);
  height: auto;
  margin: 0 auto 42px;
}

.intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
  font-weight: 400;
}

.coming {
  margin: 34px 0 28px;
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -.02em;
}

.signature {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: rgba(255, 255, 255, .66);
  font-size: .98rem;
}

.signature a {
  color: var(--white);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  transition: border-color .2s ease, opacity .2s ease;
}

.signature a:hover,
.signature a:focus-visible {
  border-color: var(--accent);
}

footer {
  width: 100%;
  padding: 22px 24px 28px;
  text-align: center;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, .46);
  font-size: .78rem;
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  .hero {
    padding: 42px 20px 30px;
  }

  .logo {
    width: min(470px, 94vw);
    margin-bottom: 34px;
  }

  .intro {
    line-height: 1.62;
  }

  footer {
    padding-inline: 20px;
  }
}

