:root {
  --navy: #071f3d;
  --deep-blue: #0d416b;
  --orange: #ff6b00;
  --muted: #71809a;
  --white: #ffffff;
  --blue-soft: #e9f7ff;
  --peach-soft: #fff1e8;
}

* { box-sizing: border-box; }
html, body { width: 100%; min-width: 0; margin: 0; }
html { background: #fffdfb; }
body {
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--navy);
  background: transparent;
}

.gradient-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  background: #fffdfb;
}
.gradient-layer::before {
  content: "";
  position: absolute;
  width: 160vmax;
  height: 160vmax;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center;
  background:
    conic-gradient(
      from 0deg,
      #fff1e8 0deg,
      #ffffff 88deg,
      #e9f7ff 176deg,
      #ffffff 260deg,
      #fff4ec 330deg,
      #fff1e8 360deg
    );
  animation: gradientRotate 28s linear infinite;
  will-change: transform;
}
@keyframes gradientRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.page-shell {
  width: min(1160px, calc(100% - 40px));
  height: 100vh;
  height: 100svh;
  margin: 0 auto;
  padding: clamp(18px, 3vh, 38px) 0 clamp(16px, 2.6vh, 30px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: stretch;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand img {
  display: block;
  width: clamp(220px, 18vw, 300px);
  max-width: 75vw;
  height: auto;
}

.hero {
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(118px, auto) auto auto auto;
  align-content: space-evenly;
  justify-items: center;
  text-align: center;
  padding-top: clamp(8px, 1.5vh, 18px);
}

.coming-label {
  margin: 0;
  color: var(--orange);
  font-size: .84rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.headline-frame {
  width: 100%;
  max-width: 1100px;
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 0 8px;
}
.headline {
  grid-area: 1 / 1;
  width: 100%;
  max-width: 1080px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 4.45vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -.052em;
  font-weight: 800;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(9px);
  transition: opacity .4s ease, transform .4s ease;
}
.headline.is-visible { opacity: 1; transform: none; }
.headline span {
  position: relative;
  display: inline-block;
  color: var(--orange);
  white-space: nowrap;
}
.headline span::after {
  content: "";
  position: absolute;
  left: -0.04em;
  width: calc(100% + 0.10em);
  height: 0.28em;
  bottom: -0.30em;
  background: url("assets/orange-underline.svg?v=17") center / 100% 100% no-repeat;
  pointer-events: none;
}


.supporting-copy {
  width: min(720px, 100%);
  margin: 0;
  padding: 0 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
}
.supporting-copy span { display: block; }

.countdown {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.time-card {
  min-width: 0;
  min-height: 132px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 15px 35px rgba(20,55,88,.09);
  backdrop-filter: blur(12px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.time-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 23px 44px rgba(20,55,88,.16);
  border-color: rgba(255,255,255,1);
  background: rgba(255,255,255,.9);
}
.icon-holder {
  width: 36px; height: 36px;
  margin-bottom: 8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform .22s ease;
}
.time-card:hover .icon-holder { transform: scale(1.08) rotate(-3deg); }
.icon-holder.blue { color: #1979bd; background: var(--blue-soft); }
.icon-holder.peach { color: #eb6713; background: var(--peach-soft); }
.icon-holder svg {
  width: 19px; height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.time-card strong {
  font-size: 3.2rem;
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.time-label {
  margin-top: 9px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.number-change { animation: numberChange .28s ease; }
@keyframes numberChange { from { opacity: .4; transform: translateY(-3px); } to { opacity: 1; transform: none; } }

.page-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.6vh, 18px);
}
.page-footer p {
  margin: 0;
  padding: 0 10px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}
.contact-button {
  min-width: 150px;
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(7,31,61,.2);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.contact-button:hover {
  transform: translateY(-3px);
  background: var(--deep-blue);
  box-shadow: 0 18px 36px rgba(7,31,61,.26);
}

@media (max-width: 820px) {
  .page-shell { width: min(100% - 30px, 1160px); }
  .brand img { width: clamp(205px, 34vw, 280px); }
  .headline { font-size: clamp(2.6rem, 6vw, 4rem); }
  .countdown { width: min(700px, 100%); }
}

@media (max-width: 600px) {
  .page-shell {
    width: 100%;
    padding: 16px 14px 18px;
  }
  .brand img { width: min(250px, 78vw); max-width: 100%; }
  .hero {
    grid-template-rows: auto minmax(116px, auto) auto minmax(0, auto) auto;
    align-content: space-evenly;
    padding-top: 4px;
  }
  .coming-label { font-size: .7rem; letter-spacing: .26em; }
  .headline-frame { min-height: 116px; padding: 0; }
  .headline {
    max-width: 520px;
    font-size: clamp(2rem, 9.2vw, 3rem);
    line-height: 1.06;
    letter-spacing: -.045em;
    overflow-wrap: break-word;
  }
  .headline span { white-space: normal; }
  .supporting-copy { padding: 0 6px; font-size: .86rem; line-height: 1.45; }
  .countdown {
    width: 100%;
    max-width: 470px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .time-card { min-height: 116px; border-radius: 19px; padding: 10px 6px; }
  .time-card strong { font-size: 2.65rem; }
  .time-label { font-size: .64rem; }
  .page-footer { gap: 10px; }
  .page-footer p { font-size: .78rem; line-height: 1.4; }
  .contact-button { min-height: 46px; }
}

@media (max-width: 360px) {
  .page-shell { padding-inline: 10px; }
  .brand img { width: min(220px, 82vw); }
  .headline-frame { min-height: 108px; }
  .headline { font-size: clamp(1.72rem, 9vw, 2.2rem); }
  .supporting-copy { font-size: .78rem; }
  .countdown { gap: 8px; }
  .time-card { min-height: 106px; }
  .icon-holder { width: 31px; height: 31px; margin-bottom: 6px; }
  .icon-holder svg { width: 16px; height: 16px; }
  .time-card strong { font-size: 2.25rem; }
  .page-footer p { font-size: .72rem; }
  .contact-button { min-height: 43px; }
}

/* Compress proportionally on short screens so the page remains one-screen, with no scrolling. */
@media (max-height: 760px) and (min-width: 601px) {
  .page-shell { padding-top: 12px; padding-bottom: 12px; }
  .brand img { width: 235px; }
  .hero { grid-template-rows: auto minmax(100px, auto) auto auto auto; }
  .headline-frame { min-height: 100px; }
  .headline { font-size: clamp(2.45rem, 4vw, 3.9rem); }
  .supporting-copy { font-size: .9rem; line-height: 1.4; }
  .time-card { min-height: 108px; }
  .time-card strong { font-size: 2.75rem; }
  .page-footer p { font-size: .82rem; }
  .contact-button { min-height: 44px; }
}

@media (max-height: 680px) and (max-width: 600px) {
  .page-shell { padding-top: 10px; padding-bottom: 10px; }
  .brand img { width: min(220px, 74vw); }
  .hero { grid-template-rows: auto minmax(92px, auto) auto auto auto; }
  .headline-frame { min-height: 92px; }
  .headline { font-size: clamp(1.72rem, 8vw, 2.35rem); }
  .supporting-copy { font-size: .75rem; line-height: 1.35; }
  .time-card { min-height: 94px; }
  .time-card strong { font-size: 2.1rem; }
  .icon-holder { width: 29px; height: 29px; margin-bottom: 4px; }
  .page-footer p { font-size: .68rem; }
  .contact-button { min-height: 40px; font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  .glow, .number-change { animation: none !important; }
  .headline, .time-card, .icon-holder, .contact-button { transition: none; }
}
