:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #11151f;
  color: #ffffff;
  --gradient-color-1: #1d3d4a;
  --gradient-color-2: #104343;
  --gradient-color-3: #20393d;
  --gradient-color-4: #0a2e3b;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(135deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 34%, var(--gradient-color-3) 68%, var(--gradient-color-4) 100%);
}

.coming-soon::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(15, 18, 28, 0.18), rgba(15, 18, 28, 0.32)),
    rgba(7, 9, 15, 0.08);
}

.gradient-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 900ms ease;
}

.gradient-canvas.isLoaded {
  opacity: 1;
}

.intro {
  width: min(100%, 760px);
  text-align: center;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 15vw, 9.5rem);
  line-height: 0.9;
  font-weight: 800;
}

h2 {
  margin-top: 18px;
  font-size: clamp(1.35rem, 4vw, 2.5rem);
  line-height: 1.1;
  font-weight: 650;
}

.split-line {
  overflow: hidden;
}

.split-char {
  display: inline-block;
  will-change: transform, opacity;
}

p {
  max-width: 650px;
  margin: 28px auto 0;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.65;
  text-wrap: balance;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin-top: 32px;
}

a {
  color: #ffffff;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  text-decoration-color: rgba(255, 255, 255, 0.48);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

a:hover,
a:focus-visible {
  text-decoration-color: #ffffff;
}

a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 6px;
  border-radius: 4px;
}

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

  .contact-links {
    flex-direction: column;
    align-items: center;
  }
}
