@font-face {
  font-family: 'Smooch Sans';
  src: url('assets/SmoochSans.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --page-bg: #0d0716;
  --text: #eef1ff;
  --accent: #c084fc;
  --atmosphere: #c026d3;
  --font: 'Smooch Sans', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  color-scheme: dark;
  background: var(--page-bg);
}

body {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1.5rem, env(safe-area-inset-top)) max(1.5rem, env(safe-area-inset-right))
    max(1.5rem, env(safe-area-inset-bottom)) max(1.5rem, env(safe-area-inset-left));
  overflow: hidden;
  font-family: var(--font);
  color: var(--text);
  background: var(--page-bg);
}

.atmosphere,
.atmosphere::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.atmosphere {
  z-index: 0;
  background-color: var(--page-bg);
  background-image: url('assets/hero.jpg');
  background-repeat: no-repeat;
  background-position: center 28%;
  background-size: cover;
  filter: blur(36px) saturate(1.45);
  transform: scale(1.12);
  opacity: 0.9;
}

.atmosphere::after {
  content: '';
  background:
    radial-gradient(
      ellipse 95% 75% at 48% 18%,
      color-mix(in srgb, var(--atmosphere) 16%, transparent) 0%,
      transparent 58%
    ),
    linear-gradient(
      to bottom,
      color-mix(in srgb, var(--page-bg) 28%, transparent) 0%,
      color-mix(in srgb, var(--page-bg) 62%, transparent) 38%,
      color-mix(in srgb, var(--page-bg) 88%, transparent) 72%,
      var(--page-bg) 100%
    );
}

.panel {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  text-align: center;
}

.brand {
  margin: 0 0 0.85rem;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.kicker {
  margin: 0 0 1.15rem;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 550;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: color-mix(in srgb, #fff 88%, var(--accent));
}

.lede {
  margin: 0;
  font-size: clamp(1.02rem, 1.1vw + 0.7rem, 1.22rem);
  font-weight: 450;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: color-mix(in srgb, #fff 78%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere {
    filter: blur(28px) saturate(1.2);
    transform: none;
  }
}
