@font-face {
  font-family: "Season Sans";
  src: url("../fonts/SeasonSans-TRIAL-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Season Sans";
  src: url("../fonts/SeasonSans-TRIAL-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Season Sans";
  src: url("../fonts/SeasonSans-TRIAL-Heavy.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --accent: #b8e63a;
  --white: #ffffff;
  --font: "Season Sans", "Helvetica Neue", Arial, sans-serif;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--white);
  background: linear-gradient(180deg, #7218A5 40.72%, #FE6B5B 196.78%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
}

.content {
  width: 100%;
  max-width: 1320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  color: var(--accent);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
}

.headline-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-top: 1.25rem;
  max-width: 100%;
}

h1 {
  flex: 0 1 auto;
  color: var(--white);
  font-size: clamp(2.75rem, 5.5vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.tagline {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
}

.email {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.2s ease;
}

.email:hover,
.email:focus-visible {
  opacity: 0.85;
}

.countdown {
  flex: 0 0 auto;
}

.countdown__units {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.5rem;
}

.countdown__value {
  color: var(--accent);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__separator {
  color: var(--accent);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  padding-top: 0;
}

.countdown__label {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 900px) {
  .page {
    padding: 2.5rem 1.5rem;
  }

  .headline-row {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .countdown {
    margin-top: 2.5rem;
    width: 100%;
    max-width: 100%;
  }

  .countdown__units {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    gap: 0.25rem;
  }

  .countdown__unit {
    min-width: 0;
    flex: 1;
  }

  .countdown__value,
  .countdown__separator {
    font-size: clamp(1.5rem, 8.5vw, 2.5rem);
  }

  .countdown__label {
    font-size: clamp(0.65rem, 2.5vw, 0.85rem);
  }
}
