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

:root {
  --accent: #5f9bff;
  --accent-l: #9ec3ff;
  --accent-m: #3272e8;
  --accent-d: #0f3b82;
  --accent-rgb: 95, 155, 255;
  --black: #02050c;
  --dark2: #071326;
  --white: #FFFFFF;
  --gray: #888888;
  --text-muted-light: rgba(14, 23, 38, 0.66);
  --content-max: 1140px;
  --content-gutter: 48px;
  --caps-size: 12px;
  --caps-size-sm: 11px;
  --caps-weight: 600;
  --caps-track: 0.16em;
  --caps-track-sm: 0.14em;
  --header-height: 62px;
  --hero-media-width: 900px;
  --sans: "Inter", system-ui, sans-serif;
}

html, body {
  height: 100%;
}

html {
  background: #ffffff;
}

body {
  background: #ffffff;
  color: #0e1726;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100%;
}

.section-rail {
  width: 100%;
  max-width: calc(var(--content-max) + (var(--content-gutter) * 2));
  margin: 0 auto;
  padding-inline: var(--content-gutter);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.34);
  backdrop-filter: blur(12px);
}

.nav-rail {
  max-width: calc(var(--hero-media-width) + (var(--content-gutter) * 2));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-rail.is-logo-centered {
  justify-content: center;
}

.nav-logo {
  display: inline-block;
  color: var(--accent-m);
  font-family: "Helvetica Neue", var(--sans);
  font-size: clamp(15px, 1.45vw, 22px);
  font-style: italic;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  flex-shrink: 0;
}

.nav-cta {
  font-size: 11px;
  padding: 8px 18px;
  letter-spacing: 0.08em;
}

.hero {
  min-height: 100svh;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(95, 155, 255, 0.28) 0%, rgba(95, 155, 255, 0.12) 35%, transparent 70%),
    radial-gradient(ellipse 55% 50% at 12% 88%, rgba(var(--accent-rgb), 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 88% 12%, rgba(115, 164, 255, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eaf1ff 55%, #ffffff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(var(--header-height) + 22px) 0 24px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(var(--accent-rgb), 0.22), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero-rail {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: clamp(14px, 2.6vh, 30px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--caps-size);
  font-weight: var(--caps-weight);
  letter-spacing: var(--caps-track);
  text-transform: uppercase;
  color: var(--accent);
}

.hero-countdown {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.hero-countdown-label {
  font-size: 11px;
  font-weight: var(--caps-weight);
  letter-spacing: var(--caps-track-sm);
  text-transform: uppercase;
  color: var(--accent);
}

.hero-countdown-units {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-countdown-unit {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  border-radius: 6px;
}

.hero-countdown-unit[hidden] {
  display: none;
}

.hero-countdown-value {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.hero-countdown-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-light);
}

.hero-countdown-sep {
  display: none;
}

.hero-expired {
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(7, 19, 38, 0.96), rgba(2, 5, 12, 0.98));
  border-radius: 7px;
  padding: 32px;
  z-index: 2;
}

.hero-expired:not([hidden]) {
  display: flex;
}

.hero-expired-inner {
  text-align: center;
  max-width: min(100%, 760px);
}

.hero-expired-eyebrow {
  font-size: var(--caps-size-sm);
  font-weight: var(--caps-weight);
  letter-spacing: var(--caps-track);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero-expired-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  white-space: nowrap;
}

.hero-expired-sub {
  font-size: 16px;
  color: var(--text-muted-light);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(26px, 3.6vw, 58px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-title-top {
  background: linear-gradient(to right, #2a3242 0%, #0e1726 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-title-white {
  color: #0e1726;
}

.hero-title-accent {
  background: linear-gradient(to right, var(--accent) 0%, var(--accent-m) 50%, var(--accent-d) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-muted-light);
  line-height: 1.65;
  white-space: nowrap;
  margin-top: calc(clamp(14px, 2.6vh, 30px) * -0.8);
}

.hero-video-frame {
  width: min(100%, var(--hero-media-width));
  aspect-ratio: 16 / 9;
  position: relative;
  padding: 2px;
  background: #ffffff;
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  border-radius: 10px;
  box-shadow: 0 0 28px rgba(var(--accent-rgb), 0.30), 0 0 70px rgba(var(--accent-rgb), 0.18), 0 10px 30px rgba(15, 59, 130, 0.12);
  overflow: hidden;
}

.hero-video-inner {
  width: 100%;
  height: 100%;
  background: var(--dark2);
  border-radius: 7px;
  overflow: hidden;
}

#vidalytics_embed_7KbJgctvxR5uZGDQ iframe {
  border: 0 !important;
}

.hero-meta {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-meta-item label {
  display: block;
  margin-bottom: 3px;
  font-size: var(--caps-size-sm);
  font-weight: var(--caps-weight);
  letter-spacing: var(--caps-track-sm);
  text-transform: uppercase;
  color: var(--gray);
}

.hero-meta-item span {
  font-size: 16px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.hero-primary-cta {
  font-size: 17px;
  font-weight: 800;
  padding: 18px 52px;
  width: min(100%, var(--hero-media-width));
  min-width: min(100%, 320px);
  max-width: 100%;
}

.btn {
  position: relative;
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.4s ease;
  overflow: hidden;
  isolation: isolate;
}

.btn-accent {
  background: linear-gradient(135deg, #73a4ff 0%, var(--accent-m) 55%, #1452c8 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(2, 9, 20, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(198, 219, 255, 0.48),
    inset 0 -1px 0 rgba(15, 59, 130, 0.58),
    0 8px 22px rgba(var(--accent-rgb), 0.34),
    0 2px 6px rgba(0, 0, 0, 0.35);
}

.btn-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 1;
}

.btn-accent > * {
  position: relative;
  z-index: 2;
}

.btn-accent:hover {
  background-position: 100% 0%;
  box-shadow:
    inset 0 1px 0 rgba(231, 241, 255, 0.74),
    inset 0 -1px 0 rgba(15, 59, 130, 0.58),
    0 14px 32px rgba(var(--accent-rgb), 0.48),
    0 4px 10px rgba(0, 0, 0, 0.4);
}

.btn-accent:hover::before {
  transform: translateX(120%);
}

.btn-accent:active {
  box-shadow:
    inset 0 2px 4px rgba(15, 59, 130, 0.4),
    0 4px 12px rgba(var(--accent-rgb), 0.34);
}

.btn-note {
  font-size: 12px;
  color: var(--text-muted-light);
  text-align: center;
}

@media (min-width: 1024px) {
  :root {
    --hero-media-width: clamp(480px, calc((100vh - 380px) * 16 / 9), 1138px);
  }

  .hero {
    min-height: 100vh;
    align-items: stretch;
  }

  .hero-rail {
    min-height: calc(100vh - var(--header-height) - 46px);
    justify-content: center;
  }

  .hero-video-frame {
    flex-shrink: 0;
    min-height: 0;
    width: min(100%, var(--hero-media-width));
    min-width: min(100%, 480px);
    height: auto;
    max-width: 100%;
  }

  .hero-primary-cta {
    width: auto;
    min-width: 320px;
    max-width: 100%;
  }
}

@media (max-width: 1023px) {
  :root {
    --content-gutter: 22px;
    --header-height: 58px;
  }

  body {
    overflow-y: auto;
  }

  .hero-countdown {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  .hero-countdown-label {
    font-size: 10px;
  }

  .hero-countdown-unit {
    padding: 3px 8px;
  }

  .hero-countdown-value {
    font-size: 15px;
  }

  .hero-countdown-tag {
    font-size: 9px;
  }

  .hero {
    min-height: 100svh;
    max-height: none;
    padding: calc(var(--header-height) + 32px) 0 40px;
  }

  .hero-rail {
    gap: 28px;
  }

  .hero-title {
    font-size: clamp(28px, 8.5vw, 62px);
  }

  .hero-sub {
    white-space: normal;
    font-size: 17px;
  }

  .hero-meta {
    gap: 18px;
  }

  .hero-primary-cta {
    padding-inline: 28px;
  }
}

@media (max-width: 640px) {
  .hero-rail {
    gap: 32px;
  }

  .hero-sub {
    margin-top: -16px;
  }

  .hero-expired-title {
    white-space: normal;
  }
}
