@font-face {
  font-family: "Futura";
  src: local("Futura Bold"), local("Futura-Bold"), local("Futura-CondensedExtraBold");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #ec1940;
  --red-secondary: #c22638;
  --red-deep: #a10929;
  --white: #fbfdfb;
  --gray: #e3e6e0;
  --gray-cool: #e3e8e5;
  --red-rgb: 236, 25, 64;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Futura", Jost, "Century Gothic", "Apple Gothic", sans-serif;
  --pad: clamp(28px, 8vw, 112px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--red-deep);
  background: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
p {
  margin: 0;
  font-weight: 700;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--red-deep);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.hero,
.tease,
.finale {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: var(--pad);
}

.hero-inner {
  max-width: 42rem;
}

.wordmark {
  width: min(100%, 280px);
  height: auto;
  margin-bottom: clamp(40px, 7vh, 80px);
}

.hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: clamp(28px, 5vh, 48px);
}

.hero p {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.3;
  color: var(--red-deep);
  margin-bottom: clamp(22px, 3.5vh, 36px);
}

.hero-close {
  color: var(--red-secondary);
  margin-bottom: 0;
}

.tease {
  background: var(--red);
  color: var(--white);
}

.tease-inner {
  max-width: min(42rem, 100%);
}

.tease h2,
.tease p:not(.tease-close) {
  font-size: clamp(1.85rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.tease h2 + p {
  margin-top: clamp(12px, 2vh, 20px);
}

.tease p.tease-close {
  margin-top: clamp(28px, 5vh, 48px);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.3;
  color: color-mix(in srgb, var(--white) 82%, var(--red));
}

.finale {
  background: var(--gray-cool);
}

.finale-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: clamp(28px, 4vh, 40px);
  box-shadow: 0 16px 36px rgba(var(--red-rgb), 0.2);
}

.finale h2 {
  font-size: clamp(3rem, 10vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: clamp(20px, 3vh, 32px);
}

.finale p {
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  color: var(--red-deep);
}

.finale-soon {
  margin-top: 12px;
  color: var(--red-secondary);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-in {
  animation: rise 0.9s var(--ease) forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-in {
    animation: none;
    transform: none;
    opacity: 1;
  }
}
