:root {
  --color-red: #cd1025;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-white-soft: rgba(255, 255, 255, 0.82);
  --color-border: rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-white);
  background: var(--color-red);
}

.coming-soon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px 20px;
  overflow: hidden;
  isolation: isolate;
}

.coming-soon::before,
.coming-soon::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  filter: blur(8px);
}

.coming-soon::before {
  top: -220px;
  left: -180px;
}

.coming-soon::after {
  right: -220px;
  bottom: -260px;
}

.hero-card {
  width: min(100%, 980px);
  padding: clamp(28px, 6vw, 72px);
  text-align: center;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid var(--color-border);
  border-radius: 32px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(32px, 5vw, 56px);
  padding: clamp(18px, 4vw, 34px);
  background: var(--color-red);
  border-radius: 24px;
}

.logo {
  display: block;
  width: min(100%, 680px);
  height: auto;
}

.content {
  max-width: 700px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-white-soft);
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(3rem, 10vw, 7.25rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.lead {
  margin: 26px auto 0;
  max-width: 620px;
  color: var(--color-white-soft);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
}

.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 16px 24px;
  color: var(--color-black);
  background: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: 999px;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--color-white);
  background: var(--color-red);
  transform: translateY(-2px);
  outline: none;
}

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

  .hero-card {
    border-radius: 24px;
  }

  .logo-box {
    border-radius: 18px;
  }

  .email-link {
    width: 100%;
  }
}
