:root {
  color-scheme: light;
  --navy-deep: #030914;
  --navy: #071321;
  --navy-soft: #14253a;
  --navy-blue: #1d4f78;
  --paper: #f7f5f1;
  --warm: #e9e3da;
  --white: #ffffff;
  --ink: #111820;
  --muted: #5c626a;
  --gold: #d1ae61;
  --blue: #60a8da;
  --terracotta: #bd442a;
  --terracotta-dark: #96351f;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(17, 24, 32, 0.16);
  --shadow: 0 28px 70px rgba(3, 9, 20, 0.18);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Libre Caslon Display", Georgia, serif;
  --content: 1180px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
img,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
ol,
ul {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
}

h3 {
  line-height: 1.2;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.event-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 24px;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.event-bar strong {
  color: var(--white);
  font-weight: 600;
}

.site-header {
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  width: min(calc(100% - 48px), var(--content));
  min-height: 78px;
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  width: 118px;
  height: 50px;
  overflow: hidden;
}

.brand img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  transform: translateY(-34px);
}

.site-header > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button:focus-visible,
.hero-video:focus-visible,
.text-link:focus-visible,
.mobile-cta:focus-visible,
summary:focus-visible,
footer a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.button-primary {
  background: var(--terracotta);
  color: var(--white);
}

.button-primary:hover {
  background: var(--terracotta-dark);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
  font-size: 0.67rem;
}

.button-small:hover {
  background: var(--white);
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  left: 54%;
  opacity: 0.14;
  filter: grayscale(35%) saturate(70%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 23%;
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 42%, rgba(96, 168, 218, 0.16), transparent 28%),
    linear-gradient(90deg, var(--navy) 0%, rgba(7, 19, 33, 0.98) 47%, rgba(7, 19, 33, 0.84) 74%, rgba(7, 19, 33, 0.72) 100%),
    linear-gradient(0deg, rgba(3, 9, 20, 0.5), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 48px), var(--content));
  min-height: 900px;
  margin-inline: auto;
  padding: 146px 0 66px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
  align-items: start;
  gap: clamp(44px, 5vw, 72px);
}

.hero-content {
  min-width: 0;
  max-width: 740px;
  padding-top: 0;
}

.event-chip {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.event-chip span {
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.event-chip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.event-chip span:last-child {
  color: var(--blue);
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-blue {
  color: var(--blue);
}

.hero h1 {
  width: 100%;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.hero h1 em {
  display: block;
  color: var(--blue);
  font-style: italic;
}

.hero-copy {
  width: 100%;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero-qualifier {
  width: 100%;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-actions > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-video-column {
  position: relative;
  display: grid;
  width: 100%;
  align-self: start;
  justify-items: end;
  padding: 0 18px 28px 0;
  isolation: isolate;
}

.hero-video-column::before {
  position: absolute;
  z-index: -1;
  inset: 38px -4px 0 48px;
  border: 1px solid rgba(96, 168, 218, 0.24);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(96, 168, 218, 0.1), rgba(3, 9, 20, 0.18));
  content: "";
}

.hero-video-column::after {
  position: absolute;
  z-index: -2;
  top: 22%;
  right: 4%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(96, 168, 218, 0.16);
  content: "";
  filter: blur(52px);
}

.hero-video-card {
  width: min(100%, 360px);
  min-width: 0;
  justify-self: end;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(20, 37, 58, 0.96), rgba(3, 9, 20, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

.hero-video-kicker {
  margin: 0;
  padding: 7px 8px 12px;
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-video-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}

.hero-video-stage iframe,
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-video {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transition: transform 280ms ease;
}

.hero-video:hover img {
  transform: scale(1.025);
}

.hero-video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 9, 20, 0.94) 0%, rgba(3, 9, 20, 0.22) 68%),
    linear-gradient(90deg, rgba(3, 9, 20, 0.2), transparent 62%);
}

.hero-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: rgba(189, 68, 42, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -58%);
  transition: background 160ms ease, transform 160ms ease;
}

.hero-video-play::after {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--white);
  content: "";
}

.hero-video:hover .hero-video-play {
  background: var(--terracotta-dark);
  transform: translate(-50%, -58%) scale(1.05);
}

.hero-video-label {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.hero-video-label strong,
.hero-video-label small {
  display: block;
}

.hero-video-label strong {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.12;
}

.hero-video-label small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.67rem;
  line-height: 1.4;
}

.hero-video-note,
.hero-video-message {
  margin: 0;
  padding: 11px 8px 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.63rem;
  line-height: 1.45;
}

.hero-video-message {
  color: var(--gold);
}

.signal-strip {
  position: relative;
  z-index: 4;
  display: grid;
  background: var(--paper);
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: repeat(4, 1fr);
}

.signal-strip > div {
  display: flex;
  min-height: 118px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
}

.signal-strip > div + div {
  border-left: 1px solid var(--line-light);
}

.signal-strip strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}

.signal-strip span {
  width: min-content;
  min-width: 128px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-paper {
  background: var(--paper);
}

.section-warm {
  background: var(--warm);
}

.registration {
  display: grid;
  padding: 112px max(24px, calc((100vw - var(--content)) / 2));
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  gap: clamp(64px, 8vw, 124px);
}

.registration-copy {
  padding-top: 20px;
}

.registration-copy h2 {
  max-width: 710px;
}

.registration-lead {
  max-width: 680px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.registration-copy > h3 {
  margin: 42px 0 20px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown {
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.countdown > p:first-child {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  max-width: 590px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.countdown-grid > span {
  display: flex;
  min-height: 92px;
  padding: 14px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
}

.countdown-grid strong {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.countdown-grid small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.countdown-fallback {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.check-list {
  max-width: 680px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.79);
}

.check-list li::before {
  position: absolute;
  top: 16px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  background: var(--blue);
  color: var(--navy);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 700;
}

.form-card {
  align-self: start;
  padding: 32px;
  background: var(--navy-soft);
  box-shadow: var(--shadow);
}

.form-card-heading {
  margin-bottom: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
}

.form-card-heading span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-card-heading strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 400;
}

.form-card-heading p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.ghl-form-frame {
  min-height: 575px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.ghl-form-frame iframe {
  display: block;
  width: 100%;
  min-height: 575px;
  border: 0;
  border-radius: 0;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  line-height: 1.5;
}

.recognition,
.framework,
.agenda,
.fit,
.faq {
  padding: 112px max(24px, calc((100vw - var(--content)) / 2));
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.recognition-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.recognition-grid article {
  min-height: 230px;
  padding: 34px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.recognition-grid span {
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.recognition-grid h3 {
  margin: 34px 0 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.recognition-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.framework-flow {
  display: grid;
  max-width: var(--content);
  margin: 64px auto 48px;
  grid-template-columns: 1fr auto 1.3fr auto 0.72fr;
  align-items: stretch;
  gap: 18px;
}

.framework-block {
  padding: 34px;
  border: 1px solid rgba(17, 24, 32, 0.18);
}

.framework-block > p {
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.framework-block h3 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.framework-block ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.framework-block li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(17, 24, 32, 0.13);
  color: var(--muted);
  font-size: 0.86rem;
}

.framework-block li:last-child {
  border-bottom: 0;
}

.framework-block.pillars {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.framework-block.pillars > p {
  color: var(--blue);
}

.framework-block.pillars li {
  border-color: var(--line-dark);
  color: rgba(255, 255, 255, 0.74);
}

.framework-block.priority {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.framework-block.priority > p {
  color: var(--navy);
}

.framework-block.priority span {
  font-size: 0.86rem;
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 2rem;
}

.section-action {
  text-align: center;
}

.agenda-list {
  border-top: 1px solid var(--line-light);
}

.agenda-list article {
  display: grid;
  min-height: 200px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 36px;
}

.agenda-list article > span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 4rem;
}

.agenda-list article > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.25fr) minmax(220px, 0.6fr) minmax(260px, 1fr);
  align-items: baseline;
  gap: 34px;
}

.agenda-list article > div > p:first-child {
  color: var(--terracotta);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.agenda-list h3 {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
}

.agenda-list p,
.agenda-list h3 {
  margin-bottom: 0;
}

.agenda-list article > div > p:last-child {
  color: var(--muted);
}

.authority {
  display: grid;
  padding: 0;
  grid-template-columns: 1fr 1fr;
}

.authority-image {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
}

.authority-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 9, 20, 0.64), transparent 55%);
  content: "";
}

.authority-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.authority-image figcaption {
  position: absolute;
  right: 40px;
  bottom: 32px;
  left: 40px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.authority-copy {
  display: flex;
  padding: clamp(60px, 8vw, 120px);
  flex-direction: column;
  justify-content: center;
}

.authority-copy h2 {
  font-size: clamp(2.6rem, 4.6vw, 5rem);
}

.authority-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
}

.authority-thesis {
  max-width: 670px;
  margin: 28px 0;
  padding: 24px 0 24px 30px;
  border-left: 2px solid var(--gold);
  color: var(--blue) !important;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.text-link {
  width: fit-content;
  margin-top: 22px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 8px;
  color: var(--terracotta);
}

.fit-grid {
  display: grid;
  max-width: 1040px;
  margin-inline: auto;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fit-grid article {
  padding: 44px;
  border: 1px solid var(--line-light);
}

.fit-grid article:last-child {
  background: var(--navy-soft);
  border-color: var(--navy-soft);
  color: var(--white);
}

.fit-grid article > p {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 2rem;
}

.fit-grid article:last-child > p {
  color: var(--blue);
}

.fit-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  position: relative;
  padding: 13px 0 13px 25px;
  border-bottom: 1px solid var(--line-light);
}

.fit-grid article:last-child li {
  border-color: var(--line-dark);
  color: rgba(255, 255, 255, 0.76);
}

.fit-grid li::before {
  position: absolute;
  left: 0;
  color: var(--terracotta);
  content: "+";
  font-weight: 700;
}

.fit-grid article:last-child li::before {
  color: var(--blue);
  content: "–";
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(60px, 8vw, 120px);
}

.faq .section-heading {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 25px 46px 25px 0;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 6px;
  color: var(--terracotta);
  content: "+";
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 46px 26px 0;
  color: var(--muted);
}

.closing {
  display: flex;
  min-height: 620px;
  padding: 90px 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(96, 168, 218, 0.14), transparent 42%),
    var(--navy-deep);
  color: var(--white);
  text-align: center;
}

.closing img {
  width: 130px;
  height: 62px;
  margin-bottom: 35px;
  object-fit: contain;
}

.closing > p {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.closing h2 {
  max-width: 920px;
  margin-bottom: 34px;
}

.closing > span {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.69rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

footer {
  display: flex;
  min-height: 84px;
  padding: 22px max(24px, calc((100vw - var(--content)) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

footer a {
  color: var(--navy);
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1060px) {
  .site-header > p {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: 34px;
  }

  .hero-image {
    left: 52%;
  }

  .hero-video-column {
    padding-right: 0;
  }

  .registration {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 48px;
  }

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

  .flow-arrow {
    transform: rotate(90deg);
  }

  .agenda-list article > div {
    grid-template-columns: minmax(100px, 0.35fr) minmax(200px, 0.65fr) 1fr;
    gap: 24px;
  }

  .authority-copy {
    padding: 64px;
  }
}

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

  .event-bar span:first-child,
  .event-bar span[aria-hidden="true"] {
    display: none;
  }

  .site-header {
    top: 34px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    display: none;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 50% 72%, rgba(96, 168, 218, 0.12), transparent 28%),
      linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  }

  .hero-inner {
    min-height: auto;
    padding: 150px 0 78px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 680px;
    padding-top: 0;
  }

  .hero h1,
  .hero-copy,
  .hero-qualifier {
    width: min(680px, 88vw);
  }

  .hero-video-column {
    width: min(390px, 100%);
    justify-self: center;
    justify-items: center;
    padding: 0 18px 26px 0;
  }

  .hero-video-column::before {
    inset: 34px 0 0 42px;
  }

  .hero-video-card {
    width: min(350px, 100%);
    justify-self: center;
  }

  .hero h1 {
    font-size: clamp(3rem, 9vw, 5rem);
  }

  .signal-strip {
    grid-template-columns: 1fr 1fr;
  }

  .signal-strip > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .signal-strip > div:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .registration {
    grid-template-columns: 1fr;
  }

  .form-card {
    max-width: 620px;
  }

  .recognition-grid {
    grid-template-columns: 1fr 1fr;
  }

  .agenda-list article {
    grid-template-columns: 70px 1fr;
  }

  .agenda-list article > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .authority {
    grid-template-columns: 1fr;
  }

  .authority-image {
    min-height: 560px;
  }

  .fit-grid,
  .faq {
    grid-template-columns: 1fr;
  }

  .faq {
    gap: 20px;
  }

  .faq .section-heading {
    margin-bottom: 22px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 68px;
  }

  .event-bar {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.61rem;
  }

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

  .site-header .button-small {
    display: none;
  }

  .brand {
    width: 104px;
  }

  .brand img {
    width: 104px;
    height: 104px;
    transform: translateY(-27px);
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 50% 78%, rgba(96, 168, 218, 0.1), transparent 24%),
      linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  }

  .hero-inner {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 126px 0 58px;
    gap: 38px;
  }

  .event-chip {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .event-chip span {
    padding: 7px 9px;
    font-size: 0.55rem;
  }

  .event-chip span:last-child {
    display: none;
  }

  .hero h1 {
    width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 12.7vw, 4.1rem);
  }

  .hero-copy,
  .hero-qualifier {
    width: 100%;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-qualifier {
    margin-bottom: 22px;
    font-size: 0.82rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions > span {
    text-align: center;
  }

  .hero-video-column {
    width: min(340px, 100%);
    padding: 0 14px 22px 0;
  }

  .hero-video-column::before {
    inset: 28px 0 0 30px;
    border-radius: 26px;
  }

  .hero-video-column::after {
    width: 160px;
    height: 160px;
  }

  .hero-video-card {
    width: min(310px, 100%);
    border-radius: 20px;
    padding: 8px;
  }

  .hero-video-kicker {
    padding: 6px 7px 10px;
    font-size: 0.58rem;
  }

  .hero-video-play {
    width: 56px;
    height: 56px;
  }

  .hero-video-label {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .hero-video-label strong {
    font-size: 1.18rem;
  }

  .hero-video-label small {
    display: none;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip > div {
    min-height: 92px;
    justify-content: flex-start;
  }

  .signal-strip > div + div {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .registration,
  .recognition,
  .framework,
  .agenda,
  .fit,
  .faq {
    padding: 76px 16px;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .registration {
    gap: 46px;
  }

  .countdown-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-card {
    padding: 22px 12px;
  }

  .form-card-heading {
    padding-inline: 10px;
  }

  .form-card-heading strong {
    font-size: 2rem;
  }

  .ghl-form-frame,
  .ghl-form-frame iframe {
    min-height: 575px;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .recognition-grid article {
    min-height: auto;
    padding: 28px;
  }

  .recognition-grid h3 {
    margin-top: 24px;
  }

  .framework-block {
    padding: 26px;
  }

  .agenda-list article {
    padding: 28px 0;
    grid-template-columns: 44px 1fr;
    gap: 18px;
  }

  .agenda-list article > span {
    font-size: 2.8rem;
  }

  .agenda-list h3 {
    font-size: 1.75rem;
  }

  .authority-image {
    min-height: 380px;
  }

  .authority-copy {
    padding: 70px 20px;
  }

  .authority-copy h2 {
    font-size: 2.8rem;
  }

  .authority-image figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .fit-grid article {
    padding: 28px;
  }

  .closing {
    min-height: 560px;
    padding: 72px 20px;
  }

  footer {
    padding: 30px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    background: var(--terracotta);
    box-shadow: 0 -8px 24px rgba(3, 9, 20, 0.18);
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
