:root {
  --primary: #b5000b;
  --primary-dark: #8a0008;
  --surface: #f9f9fc;
  --surface-white: #ffffff;
  --surface-soft: #fff8f7;
  --outline: #ead7d3;
  --on-surface: #1a1c1e;
  --muted: #495f84;
  --navy: #000d59;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--on-surface);
  background:
    radial-gradient(circle at top left, rgba(181, 0, 11, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 13, 89, 0.08), transparent 26%),
    var(--surface);
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: clamp(2.9rem, 6vw, 3.8rem);
  display: block;
}

.home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--outline);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.coming-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 6rem;
}

.coming-card {
  width: min(100%, 760px);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 2rem;
  border: 1px solid var(--outline);
  background: linear-gradient(145deg, var(--surface-white) 0%, var(--surface-soft) 100%);
  box-shadow: 0 28px 64px rgba(26, 28, 30, 0.08);
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.coming-card h1 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 0.96;
  color: var(--navy);
}

.status {
  margin: 1.5rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.copy {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

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

  .coming-shell {
    padding: 2rem 1rem 4rem;
  }

  .coming-card {
    border-radius: 1.5rem;
  }
}
