:root {
  --bg: #edf6ff;
  --bg-soft: #f7fbff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-alt: #eaf4ff;
  --text: #10243f;
  --text-soft: #45627f;
  --text-muted: #6584a4;
  --line: rgba(17, 68, 132, 0.10);
  --line-strong: rgba(33, 112, 210, 0.16);
  --blue-1: #1e90ff;
  --blue-2: #6fc8ff;
  --blue-3: #0d63cf;
  --blue-4: #d8ecff;
  --blue-5: #cfe7ff;
  --shadow: 0 18px 50px rgba(34, 94, 170, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1200px;
  --nav-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(98, 187, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(42, 132, 255, 0.10), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 50%, #f5faff 100%);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(244, 250, 255, 0.88);
  border-bottom: 1px solid rgba(16, 69, 135, 0.08);
}

.nav-wrap {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.brand-logo {
  height: 70px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue-3);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(30, 144, 255, 0.14);
  background: linear-gradient(180deg, rgba(130, 207, 255, 0.38), rgba(194, 231, 255, 0.36));
  color: var(--blue-3) !important;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 250, 255, 0.95) 0%, rgba(235, 246, 255, 0.86) 40%, rgba(213, 236, 255, 0.46) 72%, rgba(245, 250, 255, 0.58) 100%),
    radial-gradient(circle at 18% 24%, rgba(81, 180, 255, 0.20), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(30, 115, 230, 0.12), transparent 24%);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(238, 246, 255, 0) 0%, rgba(237, 246, 255, 1) 100%);
  pointer-events: none;
}

.hero-content {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 90px 0 110px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-3);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
}

.hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 1000;
  text-wrap: balance;
  color: #0c2342;
  text-shadow: 0 8px 24px rgba(255, 255, 255, 0.26);
}

.hero p {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: #355574;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(30, 144, 255, 0.10);
  color: var(--text);
  font-weight: 800;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(63, 117, 185, 0.08);
}

.meta-pill span {
  color: var(--blue-3);
}

main {
  position: relative;
  z-index: 1;
}

section {
  padding: 34px 0;
}

.info-card {
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 250, 255, 0.97));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 42px);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--blue-3);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 900;
}

.panel h2,
.split-card h2,
.trailer-block h2,
.countdown-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #10243f;
}

.panel p,
.split-card p,
.trailer-block p,
.countdown-card p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.button-row,
.premiere-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #31a4ff, #0e78e8);
  box-shadow: 0 12px 28px rgba(41, 144, 255, 0.20);
}

.btn-secondary {
  color: var(--blue-3);
  background: linear-gradient(180deg, rgba(233, 245, 255, 0.96), rgba(220, 239, 255, 0.96));
  border: 1px solid rgba(30, 144, 255, 0.10);
}

.panel-aside {
  display: grid;
  gap: 14px;
}

.stat-box {
  padding: 18px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(241, 248, 255, 0.98), rgba(231, 243, 255, 0.98));
  border: 1px solid rgba(46, 126, 219, 0.12);
}

.stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 6px;
}

.split-card,
.trailer-block,
.countdown-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 250, 255, 0.97));
  border: 1px solid rgba(38, 104, 186, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(238, 247, 255, 0.92), rgba(229, 242, 255, 0.92));
  border: 1px solid rgba(30, 144, 255, 0.08);
}

.feature-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(84, 182, 255, 0.22), rgba(24, 122, 229, 0.14));
  color: var(--blue-3);
  font-weight: 900;
}

.feature-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1rem;
  color: var(--text);
}

.feature-item span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.trailer-frame {
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(61, 132, 219, 0.12);
  box-shadow: 0 18px 36px rgba(41, 88, 156, 0.08);
  background: #d9ecff;
}

.trailer-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.date-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.date-box {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(238, 247, 255, 0.92), rgba(229, 242, 255, 0.92));
  border: 1px solid rgba(30, 144, 255, 0.08);
}

.date-box small {
  display: block;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.date-box strong {
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--text);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.time-box {
  text-align: center;
  padding: 18px 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(243, 249, 255, 1), rgba(227, 241, 255, 1));
  border: 1px solid rgba(65, 138, 228, 0.10);
}

.time-box .num {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 1000;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--blue-3);
}

.time-box .label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 900;
}

.countdown-note {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-footer {
  padding: 30px 0 42px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.site-footer .footer-panel {
  border-top: 1px solid rgba(16, 69, 135, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer strong {
  color: var(--text);
}

@media (max-width: 920px) {

  .panel-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 0 84px;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-height: 72px;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    gap: 14px;
  }

  .brand-logo {
    height: 34px;
    max-width: 220px;
  }

  .info-card {
    margin-top: -28px;
  }

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

  .hero h1 {
    line-height: 0.98;
  }
}

@media (max-width: 520px) {

  .container,
  .hero-content {
    width: min(calc(100% - 22px), var(--max-width));
  }

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

  .button-row,
  .premiere-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}