:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  --bg-sky: #dceefe;
  --bg-sand: #fff6d7;
  --brand-red: #d81b46;
  --brand-blue: #0f6ab8;
  --ink: #132238;
  --muted: #4d5f77;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --shadow: 0 20px 48px rgba(18, 43, 74, 0.14);
  --border: rgba(15, 106, 184, 0.14);
  --weather-sun: #f4b400;
  --weather-rain: #2f7fd3;
  --weather-cloud: #6f7f95;
  --promo-sun: #f4b400;
  --promo-sun-soft: #ffd85b;
  --promo-collage-row-top: 0.9fr;
  --promo-collage-row-bottom: 1.1fr;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 32%),
    linear-gradient(180deg, var(--bg-sky) 0%, #eef7ff 48%, var(--bg-sand) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset-inline: 0;
  pointer-events: none;
}

body::before {
  bottom: 23vh;
  height: 24vh;
  background:
    radial-gradient(circle at 12% 100%, rgba(15, 106, 184, 0.1) 0 12%, transparent 13%),
    radial-gradient(circle at 36% 100%, rgba(15, 106, 184, 0.1) 0 11%, transparent 12%),
    radial-gradient(circle at 60% 100%, rgba(15, 106, 184, 0.1) 0 13%, transparent 14%),
    radial-gradient(circle at 84% 100%, rgba(15, 106, 184, 0.1) 0 11%, transparent 12%);
}

body::after {
  bottom: 0;
  height: 26vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.65) 0 12%, transparent 13%),
    radial-gradient(circle at 48% 0%, rgba(255, 255, 255, 0.7) 0 11%, transparent 12%),
    radial-gradient(circle at 78% 0%, rgba(255, 255, 255, 0.6) 0 13%, transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.screen {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 100vh;
  padding: clamp(10px, 10vw, 10px) clamp(24px, 3vw, 40px) clamp(24px, 3vw, 40px);
  /* top                           left/right                bottom */
  display: grid;
  grid-template-rows: auto minmax(0, 70vh);
  gap: clamp(16px, 2vw, 22px);
}

.intro-video-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  display: grid;
  place-items: center;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.countdown-screen {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(28px, 3vw, 44px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34), transparent 22%),
    linear-gradient(135deg, rgba(9, 36, 66, 0.96), rgba(16, 69, 115, 0.9) 44%, rgba(194, 228, 255, 0.85));
}

.countdown-screen__ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.countdown-stage__frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(6, 18, 37, 0.24);
  opacity: 0.32;
}

.countdown-stage__frame--1 {
  inset: 10% auto auto 4%;
  width: min(26vw, 360px);
  aspect-ratio: 0.95;
  transform: rotate(-8deg);
}

.countdown-stage__frame--2 {
  inset: auto 6% 10% auto;
  width: min(24vw, 320px);
  aspect-ratio: 0.92;
  transform: rotate(8deg);
}

.countdown-stage__frame--3 {
  inset: 18% 10% auto auto;
  width: min(20vw, 260px);
  aspect-ratio: 0.84;
  transform: rotate(4deg);
}

.countdown-stage__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) blur(1px);
}

.countdown-screen__frost {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(24px);
}

.countdown-screen__frost--1 {
  inset: 8% auto auto 28%;
  width: min(18vw, 220px);
  height: min(18vw, 220px);
}

.countdown-screen__frost--2 {
  inset: auto auto 12% 8%;
  width: min(22vw, 280px);
  height: min(22vw, 280px);
}

.countdown-screen__frost--3 {
  inset: 22% 18% auto auto;
  width: min(14vw, 180px);
  height: min(14vw, 180px);
}

.countdown-screen__content {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  display: grid;
  gap: clamp(18px, 2vw, 26px);
  justify-items: center;
  text-align: center;
}

.countdown-screen__eyebrow,
.countdown-screen__headline,
.countdown-screen__copy,
.countdown-screen__target,
.countdown-card__value,
.countdown-card__label,
.countdown-teaser__label,
.countdown-teaser__text {
  margin: 0;
}

.countdown-screen__eyebrow {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(233, 245, 255, 0.96);
}

.countdown-screen__headline {
  max-width: 16ch;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 900;
  line-height: 0.96;
  color: #f8fbff;
  text-shadow: 0 18px 40px rgba(7, 20, 39, 0.32);
}

.countdown-screen__copy,
.countdown-screen__target,
.countdown-teaser__text {
  max-width: 52ch;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.4;
  color: rgba(233, 245, 255, 0.88);
}

.countdown-screen__target {
  font-size: clamp(14px, 1.2vw, 18px);
  color: rgba(233, 245, 255, 0.72);
}

.countdown-grid {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}

.countdown-card {
  min-height: 0;
  padding: clamp(18px, 2vw, 24px);
  display: grid;
  gap: 6px;
  justify-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(6, 18, 37, 0.22);
  backdrop-filter: blur(12px);
}

.countdown-card__value {
  font-size: clamp(50px, 6vw, 92px);
  font-weight: 900;
  line-height: 0.92;
  color: #f8fbff;
}

.countdown-card__label {
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(233, 245, 255, 0.72);
}

.countdown-teaser {
  width: min(1040px, 100%);
  padding: clamp(18px, 2vw, 24px);
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(6, 18, 37, 0.2);
  backdrop-filter: blur(12px);
}

.countdown-teaser__copy {
  display: grid;
  gap: 10px;
  align-content: start;
  text-align: left;
}

.countdown-teaser__label {
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(233, 245, 255, 0.8);
}

.countdown-teaser__rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.countdown-teaser__tile {
  min-height: clamp(170px, 22vw, 250px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.countdown-teaser__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(18px) saturate(0.72) brightness(1.06);
  transform: scale(1.18);
  opacity: 0.8;
}

.countdown-teaser__tile--1 .countdown-teaser__image {
  object-position: center 35%;
}

.countdown-teaser__tile--2 .countdown-teaser__image {
  object-position: center 44%;
}

.countdown-teaser__tile--3 .countdown-teaser__image {
  object-position: center 38%;
}

.weather-widget {
  position: absolute;
  top: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  z-index: 3;
  width: min(280px, calc(100vw - 32px));
  padding: 14px 16px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 106, 184, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(19, 34, 56, 0.12);
  backdrop-filter: blur(10px);
}

.promo-display {
  position: absolute;
  inset: 0;
  z-index: 5;
  padding: clamp(10px, 1.2vw, 18px) clamp(16px, 2vw, 24px) clamp(16px, 2vw, 24px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 248, 212, 0.97), rgba(255, 255, 255, 0.95));
}

.promo-display--peak {
  overflow: hidden;
  grid-template-rows: 1fr;
  place-items: center;
}

.promo-display--collage {
  overflow: hidden;
}

.promo-display__top {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 12px);
  text-align: center;
  margin-top: 0;
}

.promo-display__center {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  justify-items: center;
  text-align: center;
  padding: clamp(20px, 3vw, 36px);
}

.promo-display__headline,
.promo-display__caption {
  margin: 0;
}

.promo-display__headline-row {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 16px);
  width: auto;
}

.promo-display__headline-sun {
  line-height: 1;
  color: var(--promo-sun);
  text-shadow: 0 4px 14px rgba(244, 180, 0, 0.28);
  font-size: clamp(16px, 1.3vw, 22px);
  letter-spacing: 2px;
  white-space: nowrap;
}

.promo-display__sun {
  position: absolute;
  line-height: 1;
  color: var(--promo-sun);
  text-shadow: 0 6px 18px rgba(244, 180, 0, 0.26);
  opacity: 0.95;
}

.promo-display__sun--1 {
  top: 6%;
  left: 8%;
  font-size: clamp(72px, 7vw, 132px);
}

.promo-display__sun--2 {
  top: 12%;
  right: 10%;
  font-size: clamp(56px, 5.2vw, 96px);
}

.promo-display__sun--3 {
  top: 28%;
  left: 18%;
  font-size: clamp(40px, 3.8vw, 72px);
  color: var(--promo-sun-soft);
}

.promo-display__sun--4 {
  bottom: 16%;
  right: 14%;
  font-size: clamp(82px, 7.8vw, 148px);
}

.promo-display__sun--5 {
  bottom: 10%;
  left: 10%;
  font-size: clamp(62px, 5.8vw, 110px);
}

.promo-display__sun--6 {
  top: 42%;
  right: 24%;
  font-size: clamp(34px, 3vw, 56px);
  color: var(--promo-sun-soft);
}

.promo-display__headline {
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--brand-blue);
  max-width: min(880px, 70vw);
}

.promo-display--collage .promo-display__headline {
  font-size: clamp(10px, 1.6vw, 13px);
  line-height: 1.08;
  max-width: min(760px, 56vw);
}

.promo-display--collage .promo-display__headline-sun {
  font-size: clamp(10px, 0.9vw, 14px);
  letter-spacing: 5px;
}

.promo-display__collage {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 8px;
}

.promo-display__caption {
  font-size: clamp(10px, 1.7vw, 18px);
  font-weight: 800;
  text-align: center;
  color: var(--ink);
}

.promo-display__grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows:
    minmax(0, var(--promo-collage-row-top))
    minmax(0, var(--promo-collage-row-bottom));
  gap: 10px;
}

.promo-display__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(19, 34, 56, 0.12);
}

.promo-display__image--top-left {
  object-position: center 70%;
}

.promo-display__image--top-right {
  object-fit: cover;
  object-position: center 60%;
}

.promo-display__image--bottom-left {
  object-fit: cover;
  object-position: center 60%;
}

.promo-display__image--bottom-right {
  object-position: center 90%;
}

.weather-widget__eyebrow,
.weather-widget__label,
.weather-widget__temp,
.weather-widget__condition,
.weather-widget__updated,
.weather-widget__status {
  margin: 0;
}

.weather-widget__eyebrow {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.weather-widget__counter {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 0 2px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.weather-widget__counter-number {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  color: var(--brand-blue);
}

.weather-widget__counter-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.weather-widget__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.weather-widget__footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.weather-widget__section {
  display: grid;
  gap: 6px;
}

.weather-widget__label,
.weather-widget__updated,
.weather-widget__status {
  font-size: 13px;
  color: var(--muted);
}

.weather-widget__updated {
  white-space: nowrap;
}

.weather-widget__updated-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.weather-widget__attribution {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.weather-widget__attribution-text {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  white-space: nowrap;
}

.weather-widget__attribution-logo {
  display: block;
  width: 16px;
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  max-height: 16px;
  object-fit: contain;
}

.weather-widget__row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.weather-widget__icon-image {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.weather-widget__values {
  display: grid;
  gap: 2px;
}

.weather-widget__temp {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.weather-widget__condition {
  font-size: 15px;
  line-height: 1.2;
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0px;
  padding: 0 clamp(8px, 1vw, 12px);
  min-height: 0;
}

.hero__logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  pointer-events: none;
}

.hero__logo {
  height: clamp(230px, 250vw, 240px); /* Responsive height for the logo */
  width: auto;
  object-fit: contain;
}

.hero__copy {
  display: grid;
  gap: 0px;
  align-content: start;
}

.day-counter {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-width: 100px;
  text-align: center;
}

.day-counter__number {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900;
  line-height: 1;
  color: var(--brand-blue);
}

.day-counter__label {
  font-size: clamp(10px, 0.8vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
}

.hero__prompt {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  font-weight: 900;
  color: var(--brand-blue);
  max-width: 18ch;
}

.hero__helper {
  margin: 0;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.2;
  font-weight: 600;
  color: var(--muted);
}

.hero__arrows {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 18px);
  width: 100%;
}

.hero__arrow {
  display: grid;
  place-items: center;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  font-weight: 900;
  color: color-mix(in srgb, var(--brand-blue) 78%, white);
}

.products {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(14px, 1.4vw, 18px);
  align-items: stretch;
}

.product-card {
  min-height: 0;
  height: 100%;
  min-width: 0;
  padding: 14px 16px 12px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-card__media {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0px 60px 100px;
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: auto 12% 12px;
  height: 18px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  filter: blur(14px);
}

.product-card__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price-badge {
  position: absolute;
  inset: auto auto 0 50%;
  z-index: 2;
  transform: translateX(-50%);
  width: clamp(66px, 5.8vw, 82px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 2px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent) 30%, transparent);
}

.price-badge__currency {
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.price-badge__value {
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 900;
  line-height: 1;
}

.product-card__footer {
  display: grid;
  gap: 8px;
  align-items: start;
}

.product-card h2 {
  margin: 0;
  min-height: 2.2em;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.12;
  text-align: center;
}

.product-card__image-title {
  margin: 0;
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 700;
  text-align: center;
  color: var(--ink);
}

.product-card__qr {
  justify-self: center;
  width: min(100%, 250px);
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 0px 0px 0px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(19, 34, 56, 0.08);
}

.product-card__qr-label {
  margin: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.product-card__qr img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 1280px) {
  .screen {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .countdown-teaser {
    grid-template-columns: 1fr;
  }

  .countdown-teaser__copy {
    text-align: center;
  }

  .promo-display__headline {
    max-width: 92%;
  }

  .promo-display__headline-row,
  .promo-display__top {
    gap: 12px;
  }

  .weather-widget {
    position: static;
    justify-self: end;
    margin-left: auto;
  }

  .hero {
    padding: 0;
    padding-right: 0;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__arrows {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .product-card {
    min-height: 360px;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 720px) {
  .screen {
    height: auto;
    padding: 16px;
  }

  .countdown-screen {
    padding: 18px 16px 24px;
  }

  .countdown-stage__frame--1,
  .countdown-stage__frame--2,
  .countdown-stage__frame--3 {
    width: 42vw;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .countdown-card {
    padding: 14px 10px;
  }

  .countdown-card__value {
    font-size: clamp(38px, 12vw, 62px);
  }

  .countdown-teaser {
    padding: 14px;
  }

  .countdown-teaser__rail {
    grid-template-columns: 1fr;
  }

  .countdown-teaser__tile {
    min-height: 150px;
  }

  .promo-display {
    padding: 10px 12px 12px;
  }

  .promo-display__headline {
    font-size: clamp(24px, 8vw, 36px);
    max-width: 100%;
  }

  .promo-display__headline-sun {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .promo-display__caption {
    font-size: 18px;
  }

  .promo-display__grid {
    gap: 8px;
  }

  .promo-display__sun--3,
  .promo-display__sun--6 {
    display: none;
  }

  .weather-widget {
    width: 100%;
    justify-self: stretch;
  }

  .hero {
    gap: 10px;
  }

  .hero__prompt {
    font-size: clamp(28px, 8vw, 42px);
  }

  .hero__arrows {
    display: none;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 360px;
    padding-inline: 18px;
  }

  .product-card__media {
    padding-inline: 0;
  }

  .product-card__image {
    max-width: 220px;
    max-height: 260px;
  }

  .product-card h2 {
    min-height: auto;
    font-size: 28px;
  }
}
