:root {
  color-scheme: dark;
  --night: #06152f;
  --night-deep: #030b1c;
  --white: #f7f9ff;
  --muted: #aebbd0;
  --mint: #91d6bc;
  --line: rgba(255, 255, 255, .15);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, #102b59 0, var(--night) 40%, var(--night-deep) 100%);
  background-size: 72px 72px, 72px 72px, auto;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  width: min(100%, 1440px);
  min-height: 100svh;
  margin-inline: auto;
  padding: 38px clamp(26px, 5vw, 76px) 32px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .6;
  pointer-events: none;
}

.glow-one {
  width: min(42vw, 580px);
  aspect-ratio: 1;
  top: -24%;
  right: -8%;
  background: radial-gradient(circle, rgba(55, 100, 212, .3), transparent 69%);
}

.glow-two {
  width: min(38vw, 520px);
  aspect-ratio: 1;
  bottom: -25%;
  left: -10%;
  background: radial-gradient(circle, rgba(44, 137, 105, .24), transparent 70%);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -.6px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #071a3a url("/pal-logo-120.png") center / cover no-repeat;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
}

.announcement {
  align-self: center;
  padding: clamp(56px, 8vh, 100px) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(145, 214, 188, .11);
  animation: breathe 2.8s ease-in-out infinite;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(76px, 14vw, 190px);
  font-weight: 760;
  line-height: .76;
  letter-spacing: clamp(-8px, -.055em, -3px);
}

.support-page h1 { font-size: clamp(72px, 12vw, 164px); }
.support-page .message { max-width: 540px; }

.message {
  margin: clamp(38px, 6vh, 66px) 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--mint);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, gap 160ms ease;
}

.contact:hover, .contact:focus-visible { color: var(--mint); gap: 14px; }

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #8290a6;
  font-size: 12px;
}

footer p { margin: 0; }
footer nav { display: flex; gap: 22px; }
footer a { color: inherit; text-decoration: none; }
footer a:hover, footer a:focus-visible { color: var(--white); }

@keyframes breathe {
  0%, 100% { transform: scale(.8); opacity: .7; }
  50% { transform: scale(1.1); opacity: 1; }
}

@media (max-width: 600px) {
  .coming-soon { padding: 26px 22px 25px; }
  .brand-mark { width: 34px; height: 34px; }
  .announcement { padding-block: 70px; }
  .eyebrow { max-width: 250px; line-height: 1.5; }
  h1 { font-size: clamp(68px, 25vw, 112px); line-height: .8; }
  .support-page h1 { font-size: clamp(66px, 23vw, 102px); }
  .wide-only { display: none; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow span { animation: none; }
  .contact { transition: none; }
}
