:root {
  --navy: #07101f;
  --navy-soft: #0f1d32;
  --blue: #296cff;
  --blue-bright: #4b86ff;
  --ink: #0b1424;
  --muted: #59677a;
  --line: #dfe5ed;
  --paper: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 30px 80px rgb(15 23 42 / 16%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a,
video {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 12px 0 24px;
  color: white;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 999px;
  background: rgb(7 16 31 / 82%);
  box-shadow: 0 16px 50px rgb(0 0 0 / 18%);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  width: 116px;
}

.brand img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.site-header nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.site-header nav a {
  color: rgb(255 255 255 / 72%);
  transition: color 180ms ease;
}

.site-header nav a:hover {
  color: white;
}

.header-cta {
  justify-self: end;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  color: var(--navy);
  background: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  transition: transform 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 77% 21%, rgb(41 108 255 / 20%), transparent 30%),
    linear-gradient(145deg, #050a13 0%, #091526 54%, #0b172a 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgb(255 255 255 / 14%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 14%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-glow--one {
  top: 14%;
  right: 4%;
  width: 380px;
  height: 380px;
  border: 1px solid rgb(75 134 255 / 30%);
  box-shadow: 0 0 160px rgb(41 108 255 / 16%);
}

.hero-glow--two {
  bottom: 3%;
  left: -160px;
  width: 450px;
  height: 450px;
  background: rgb(41 108 255 / 8%);
  filter: blur(10px);
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-kicker span {
  width: 7px;
  height: 7px;
  background: var(--blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgb(75 134 255 / 12%);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 7.4vw, 100px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--blue-bright);
  font-style: normal;
}

.hero-lead {
  max-width: 670px;
  margin: 34px 0 0;
  color: rgb(255 255 255 / 69%);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.55;
}

.hero-actions,
.materials-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 38px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 14px 38px rgb(41 108 255 / 26%);
}

.button--primary:hover {
  background: #1c5ff2;
  box-shadow: 0 18px 46px rgb(41 108 255 / 34%);
}

.button--secondary {
  color: white;
  border: 1px solid rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 6%);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 42px 0 0;
  padding: 0;
  color: rgb(255 255 255 / 60%);
  font-size: 13px;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list li span {
  color: var(--blue-bright);
  font-weight: 800;
}

.hero-index {
  padding: 16px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 28px;
  background: rgb(255 255 255 / 6%);
  box-shadow: 0 30px 80px rgb(0 0 0 / 24%);
  backdrop-filter: blur(14px);
}

.hero-index__label {
  margin: 5px 8px 12px;
  color: rgb(255 255 255 / 46%);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-index__item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  padding: 20px 14px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  transition: background 180ms ease;
}

.hero-index__item:hover {
  background: rgb(255 255 255 / 5%);
}

.hero-index__item > span {
  grid-row: 1 / span 2;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 800;
}

.hero-index__item strong {
  font-size: 16px;
  line-height: 1.3;
}

.hero-index__item small {
  margin-top: 4px;
  color: rgb(255 255 255 / 48%);
  font-size: 12px;
}

.page-intro {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 124px 0 64px;
  text-align: center;
}

.page-intro p {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-intro h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 860;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

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

.resource {
  padding: 100px 0 112px;
  border-top: 1px solid var(--line);
}

.resource:first-child {
  padding-top: 58px;
  border-top: 0;
}

.resource-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: clamp(52px, 9vw, 124px);
  align-items: center;
}

.resource--reverse .resource-copy {
  order: 2;
}

.resource--reverse .video-shell {
  order: 1;
}

.resource-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 880;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.resource-lead {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.topic-list li {
  padding: 7px 11px;
  color: #31527f;
  border: 1px solid #d4e0f4;
  border-radius: 999px;
  background: #edf3ff;
  font-size: 12px;
  font-weight: 700;
}

.resource-note {
  position: relative;
  margin: 28px 0 0;
  padding: 18px 18px 18px 51px;
  color: #59677a;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  font-size: 12px;
  line-height: 1.6;
}

.resource-note > span {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
  font-style: normal;
}

.video-shell {
  position: relative;
  justify-self: center;
  width: min(390px, 100%);
  overflow: hidden;
  padding: 7px;
  background: #0c1728;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 28px;
  box-shadow: 0 35px 80px rgb(15 23 42 / 22%);
}

.video-shell video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #02060c;
  border-radius: 21px;
}

.video-label {
  position: absolute;
  z-index: 2;
  top: 19px;
  left: 19px;
  padding: 8px 11px;
  color: white;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 999px;
  background: rgb(7 16 31 / 78%);
  backdrop-filter: blur(9px);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.result-flow > div {
  min-width: 0;
  padding: 16px;
  border: 1px solid #cfdbef;
  border-radius: 16px;
  background: #edf3ff;
}

.result-flow small,
.result-flow strong {
  display: block;
}

.result-flow small {
  color: #67758a;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.result-flow strong {
  margin-top: 4px;
  color: var(--blue);
  font-size: clamp(18px, 2.2vw, 25px);
  letter-spacing: -0.04em;
}

.result-flow > span {
  color: var(--blue);
  font-weight: 800;
}

.case-callout {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.case-callout strong {
  color: var(--ink);
}

.materials {
  margin-top: 84px;
  padding: clamp(24px, 4vw, 48px);
  color: white;
  background:
    radial-gradient(circle at 92% 8%, rgb(41 108 255 / 34%), transparent 32%),
    var(--navy);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.materials-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 30px;
}

.materials-heading h3 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(27px, 3.8vw, 44px);
  font-weight: 840;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.materials-heading .eyebrow {
  margin-bottom: 10px;
}

.materials-actions {
  justify-content: flex-end;
  flex: 0 0 auto;
}

.button--download {
  min-height: 48px;
  color: var(--navy);
  background: white;
  font-size: 13px;
}

.button--download:hover {
  background: #eaf0ff;
}

.text-link {
  color: rgb(255 255 255 / 72%);
  font-size: 12px;
  font-weight: 700;
}

.text-link:hover {
  color: white;
}

.slides-shell {
  overflow: hidden;
  padding: 6px;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 20px;
}

.slides-shell iframe {
  width: 100%;
  aspect-ratio: 1920 / 1109;
  background: white;
  border: 0;
  border-radius: 14px;
}

.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 32px;
  padding: clamp(58px, 8vw, 100px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgb(41 108 255 / 50%), transparent 32%),
    linear-gradient(145deg, #07101f, #0d1d35);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgb(15 23 42 / 20%);
}

.final-cta > div {
  max-width: 780px;
}

.final-cta h2 {
  font-size: clamp(44px, 6vw, 74px);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 27px 0 0;
  color: rgb(255 255 255 / 66%);
  font-size: 18px;
}

.button--light {
  margin-top: 34px;
  color: var(--navy);
  background: white;
}

.button--light:hover {
  background: #eaf0ff;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 44px;
}

.footer-main,
.footer-links {
  display: flex;
  align-items: center;
}

.footer-main {
  justify-content: space-between;
  gap: 40px;
}

.footer-main img {
  width: 120px;
}

.footer-main p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  gap: 22px;
  margin-top: 28px;
  padding-top: 26px;
  color: #66748a;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-links > span {
  margin-left: auto;
}

.disclaimer {
  max-width: 940px;
  margin: 25px 0 0;
  color: #8a94a3;
  font-size: 11px;
  line-height: 1.55;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    min-height: 980px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 150px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-index {
    width: min(620px, 100%);
  }

  .resource-summary {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.65fr);
    gap: 48px;
  }

  .materials-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .materials-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 62px;
    padding-left: 18px;
  }

  .site-header nav {
    display: none;
  }

  .brand {
    width: 102px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 138px 0 84px;
  }

  .hero h1 {
    font-size: clamp(52px, 14vw, 78px);
  }

  .resource {
    padding: 76px 0 88px;
  }

  .resource:first-child {
    padding-top: 40px;
  }

  .resource-summary {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .resource--reverse .resource-copy,
  .resource--reverse .video-shell {
    order: initial;
  }

  .video-shell {
    width: min(400px, 88vw);
  }

  .materials {
    margin-top: 62px;
  }

  .materials-actions {
    width: 100%;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero-layout,
  .content-wrap,
  .final-cta,
  footer {
    width: calc(100% - 32px);
  }

  .hero-layout {
    gap: 44px;
    padding: 128px 0 68px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .trust-list {
    gap: 12px 18px;
    margin-top: 30px;
  }

  .hero-index {
    padding: 12px;
    border-radius: 22px;
  }

  .hero-index__item {
    grid-template-columns: 34px 1fr;
    padding: 18px 10px;
  }

  .page-intro {
    width: calc(100% - 32px);
    padding: 84px 0 42px;
  }

  .resource-copy h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .video-shell {
    width: min(370px, 100%);
    padding: 5px;
    border-radius: 21px;
  }

  .video-shell video {
    border-radius: 16px;
  }

  .video-label {
    top: 14px;
    left: 14px;
  }

  .result-flow {
    grid-template-columns: 1fr;
  }

  .result-flow > span {
    transform: rotate(90deg);
    justify-self: center;
  }

  .materials {
    padding: 22px;
    border-radius: 22px;
  }

  .materials-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button--download {
    width: 100%;
  }

  .slides-shell {
    padding: 4px;
    border-radius: 14px;
  }

  .slides-shell iframe {
    border-radius: 10px;
  }

  .final-cta {
    padding: 48px 26px;
    border-radius: 26px;
  }

  .final-cta h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-links > span {
    width: 100%;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .video-shell,
  .slides-shell,
  .final-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    color: var(--ink);
    background: white;
  }

  .hero-layout {
    display: block;
    padding: 32px 0;
  }

  .hero h1 em,
  .hero-kicker,
  .eyebrow {
    color: var(--blue);
  }

  .hero-lead,
  .trust-list {
    color: var(--muted);
  }
}
