:root {
  --bg: #05080c;
  --navy: #004266;
  --blue: #1073b0;
  --accent: #1a8fd4;
  --accent-soft: #5caedb;
  --text: #ffffff;
  --muted: #9bb6c9;
  --line: rgba(16, 115, 176, 0.28);
  --line-strong: rgba(16, 115, 176, 0.5);
  --danger: #ff6b7a;
  --font: "Barlow", "Segoe UI", sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 66, 102, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 10%, rgba(16, 115, 176, 0.28), transparent 50%),
    linear-gradient(180deg, #05080c 0%, #0a121a 45%, #05080c 100%);
}

.soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.25rem 3rem;
  animation: rise 0.7s ease both;
}

.soon__logo {
  width: min(100%, 220px);
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}

.soon__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.soon__title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(3rem, 12vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
}

.soon__title span {
  color: var(--accent-soft);
}

.soon__lead {
  margin: 0 0 0.75rem;
  max-width: 32rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: var(--muted);
}

.soon__sub {
  margin: 0 0 1.75rem;
  max-width: 30rem;
  color: var(--muted);
}

.soon__sub a {
  color: var(--accent-soft);
  text-decoration: none;
}

.soon__sub a:hover {
  color: #fff;
  text-decoration: underline;
}

.soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.55rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  transform: skewX(-10deg);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn > span {
  transform: skewX(10deg);
}

.btn--live {
  background: var(--blue);
  box-shadow: 0 8px 28px rgba(16, 115, 176, 0.35);
}

.btn--live:hover {
  background: var(--accent);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--accent-soft);
  background: rgba(16, 115, 176, 0.12);
  color: #fff;
}

.soon__preview {
  margin-top: 2.5rem;
  max-width: 20rem;
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.soon__preview summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  list-style: none;
}

.soon__preview summary::-webkit-details-marker {
  display: none;
}

.soon__preview[open] summary {
  margin-bottom: 1rem;
  color: var(--accent-soft);
}

.soon__form {
  display: grid;
  gap: 0.75rem;
}

.soon__form label {
  display: grid;
  gap: 0.35rem;
  text-align: left;
  font-size: 0.85rem;
  color: var(--muted);
}

.soon__form input {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--text);
  background: rgba(10, 16, 24, 0.9);
  border: 1px solid var(--line);
  outline: none;
}

.soon__form input:focus {
  border-color: var(--accent);
}

.soon__form .btn {
  justify-self: start;
}

.soon__form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.9rem;
  text-align: left;
}

.soon__form-status[data-state="error"] {
  color: var(--danger);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
