:root {
  --blue: #0756bf;
  --navy: #061b42;
  --gold: #e89018;
  --ink: #0a1833;
  --muted: #5c6980;
  --line: #dce5f2;
  --bg: #f7faff;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(6, 27, 66, .12);
}

* { 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;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(7, 86, 191, .10), transparent 34rem),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  min-height: 96px;
  padding: 14px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(220, 229, 242, .8);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  letter-spacing: -.04em;
}
.brand:hover { text-decoration: none; }
.brand img { display: block; width: 75px; height: 75px; object-fit: contain; }

nav { display: flex; gap: 18px; align-items: center; font-weight: 700; }
nav a { color: var(--navy); }
.nav-cta {
  color: var(--white);
  background: var(--blue);
  padding: .72rem 1rem;
  border-radius: 999px;
}
.nav-cta:hover { color: var(--white); text-decoration: none; background: var(--navy); }

main { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(48px, 8vw, 96px) 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(4rem, 11vw, 8.4rem);
  line-height: .86;
  letter-spacing: -.075em;
}

.lede {
  margin: 28px 0 0;
  color: var(--blue);
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.05em;
}

.quote {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-style: italic;
  line-height: 1.25;
  font-weight: 650;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}
.button:hover { text-decoration: none; transform: translateY(-1px); }
.primary { background: var(--gold); color: var(--navy); }
.secondary { background: var(--white); color: var(--navy); border: 1px solid var(--line); }

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  place-items: center;
}
.hero-card img { width: min(100%, 340px); height: auto; }

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
  margin-bottom: clamp(48px, 8vw, 96px);
}
.info-strip article {
  background: var(--white);
  padding: 28px;
  display: grid;
  gap: 10px;
}
.info-strip strong {
  color: var(--navy);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.info-strip span { color: var(--muted); font-size: 1.2rem; line-height: 1.35; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
  margin-bottom: clamp(48px, 8vw, 96px);
}
h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.06em;
}
p { font-size: 1.14rem; line-height: 1.65; }
.callout {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.callout h3 { margin: 0 0 10px; font-size: 1.35rem; }
.callout p { margin: 0; color: rgba(255,255,255,.82); }

.poster-section {
  display: grid;
  place-items: center;
  padding-bottom: clamp(56px, 8vw, 96px);
}
.poster-section img {
  width: min(100%, 640px);
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 28px;
  text-align: center;
}
footer p { margin: 0; font-size: .95rem; }
footer a { color: var(--gold); }

@media (max-width: 820px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  nav { width: 100%; justify-content: space-between; }
  .hero, .content-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { order: -1; }
  .info-strip { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  main { width: min(100% - 28px, 1180px); }
  nav { gap: 10px; font-size: .92rem; }
  .brand span { max-width: 9ch; line-height: .95; }
  h1 { font-size: 4.25rem; }
}
