:root {
  --navy: #082e69;
  --navy-dark: #041a3d;
  --gold: #c77712;
  --gold-light: #f0c24a;
  --white: #ffffff;
  --ink: #172033;
}

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

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--white);
  background: var(--navy-dark);
  font-family: "Open Sans", Arial, sans-serif;
}

button,
input {
  font: inherit;
}

.coming-soon {
  min-height: 100vh;
}

.coming-soon__hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 20px;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(4, 26, 61, 0.96), rgba(8, 46, 105, 0.72) 54%, rgba(199, 119, 18, 0.74)),
    url("assets/divine-intervention-banner-web.png") center / cover no-repeat;
}

.coming-soon__hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -24% -12%;
  height: 46%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(240, 194, 74, 0), rgba(240, 194, 74, 0.26));
}

.coming-soon__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.2), transparent 30%);
}

.coming-soon__content {
  width: min(100%, 680px);
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
  background: rgba(4, 26, 61, 0.78);
  border: 1px solid rgba(240, 194, 74, 0.45);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.coming-soon__logo {
  width: clamp(78px, 18vw, 116px);
  height: auto;
  margin: 0 auto 20px;
}

.coming-soon__kicker {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 12vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.coming-soon__message {
  max-width: 560px;
  margin: 22px auto 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.2vw, 1.16rem);
  line-height: 1.7;
}

.preview-form {
  width: min(100%, 500px);
  margin: 0 auto;
  text-align: left;
}

.preview-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.preview-form input {
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 4px;
  outline: none;
}

.preview-form input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(240, 194, 74, 0.2);
}

.preview-form button {
  min-height: 52px;
  padding: 0 24px;
  color: var(--navy-dark);
  background: var(--gold-light);
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.preview-form button:hover,
.preview-form button:focus-visible {
  background: var(--white);
  transform: translateY(-1px);
}

.preview-form__status {
  min-height: 26px;
  margin: 10px 0 0;
  color: var(--gold-light);
  font-size: 0.94rem;
  font-weight: 700;
}

.preview-form__status.is-error {
  color: #ffd1d1;
}

.coming-soon__contact {
  display: inline-block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-decoration: none;
}

.coming-soon__contact:hover,
.coming-soon__contact:focus-visible {
  color: var(--gold-light);
}

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

  .coming-soon__content {
    padding: 26px 18px;
  }

  .preview-form__row {
    grid-template-columns: 1fr;
  }

  .preview-form button {
    width: 100%;
  }
}
