:root {
  --navy: #0c2947;
  --navy-deep: #071c31;
  --cream: #f5f1e7;
  --paper: #fffaf0;
  --orange: #ec7624;
  --gold: #d7aa5d;
  --red: #ba4935;
  --ink-soft: #466073;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(236, 118, 36, 0.14), transparent 34rem),
    linear-gradient(145deg, #fffdf7 0%, var(--cream) 46%, #eef0ec 100%);
  color: var(--navy);
  font-family: var(--sans);
  line-height: 1.6;
}

.coming-soon {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  padding: 30px 38px 24px;
}

.coming-soon::before,
.coming-soon::after {
  content: "";
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(215, 170, 93, 0.32);
  border-radius: 50%;
  pointer-events: none;
}

.coming-soon::before {
  width: 420px;
  height: 420px;
  top: -210px;
  right: -115px;
}

.coming-soon::after {
  width: 500px;
  height: 500px;
  left: -250px;
  bottom: -290px;
}

.page-frame {
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(12, 41, 71, 0.16);
  pointer-events: none;
}

.page-frame::before,
.page-frame::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--orange);
}

.page-frame::before {
  top: -2px;
  left: 42px;
}

.page-frame::after {
  right: 42px;
  bottom: -2px;
}

.announcement {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(780px, 100%);
  padding: 24px 22px 20px;
  text-align: center;
}

.logo {
  display: block;
  width: clamp(122px, 15vw, 168px);
  height: auto;
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 22px rgba(12, 41, 71, 0.16));
}

.kicker,
.domain,
.footer {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 14px;
  color: var(--orange);
}

h1 {
  max-width: 700px;
  margin: 0 auto;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.1vw, 5.45rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.96;
}

.status {
  margin: 18px 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.intro {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 27px auto 18px;
}

.divider span {
  width: 72px;
  height: 1px;
  background: rgba(12, 41, 71, 0.2);
}

.divider i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(215, 170, 93, 0.18);
}

.domain {
  margin: 0;
  color: var(--red);
  overflow-wrap: anywhere;
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(12, 41, 71, 0.6);
}

@media (max-width: 720px) {
  .coming-soon {
    padding: 32px 22px 24px;
  }

  .page-frame {
    inset: 14px;
  }

  .page-frame::before,
  .page-frame::after {
    width: 48px;
  }

  .page-frame::before {
    left: 26px;
  }

  .page-frame::after {
    right: 26px;
  }

  .announcement {
    padding-top: 28px;
  }

  .logo {
    margin-bottom: 24px;
  }

  .intro {
    max-width: 29rem;
  }

  .footer {
    align-items: center;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}

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

  .announcement {
    padding-inline: 14px;
  }

  .kicker,
  .domain,
  .footer {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .divider span {
    width: 50px;
  }
}
