:root {
  --navy: #001a32;
  --navy-deep: #00101f;
  --navy-soft: #0c2942;
  --red: #c8342d;
  --red-dark: #a82621;
  --paper: #f5f4f0;
  --warm: #ebe8e1;
  --white: #ffffff;
  --ink: #10283e;
  --muted: #607080;
  --line: rgba(0, 26, 50, 0.18);
  --line-light: rgba(255, 255, 255, 0.24);
  --font-display: "IBM Plex Sans Condensed", "IBM Plex Sans Thai", sans-serif;
  --font-body: "IBM Plex Sans Thai", "Leelawadee UI", sans-serif;
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.68;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

::selection {
  color: var(--white);
  background: var(--red);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 18px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.section-shell {
  width: min(1280px, calc(100% - 80px));
  margin-inline: auto;
}

.section-pad {
  padding-top: 132px;
  padding-bottom: 132px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(to bottom, rgba(0, 16, 31, 0.86), rgba(0, 16, 31, 0));
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  color: var(--navy);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 30px rgba(0, 26, 50, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1400px, calc(100% - 64px));
  min-height: 100px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
}

.brand-signal {
  width: 38px;
  height: 50px;
  display: flex;
  align-items: stretch;
  gap: 5px;
  transform: skewY(-14deg);
}

.brand-signal i {
  width: 16px;
  display: block;
  background: var(--red);
}

.brand-signal i:last-child {
  margin-top: 11px;
  background: currentColor;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.header-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.utility-nav {
  margin-bottom: 10px;
  display: flex;
  gap: 24px;
  opacity: 0.68;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 6px;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
  background: var(--red);
  transition: background 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--red-dark);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  animation: hero-zoom 16s ease-out both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 16, 31, 0.97) 0%, rgba(0, 16, 31, 0.87) 27%, rgba(0, 16, 31, 0.5) 52%, rgba(0, 16, 31, 0.13) 78%),
    linear-gradient(0deg, rgba(0, 16, 31, 0.72) 0%, transparent 33%, rgba(0, 16, 31, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 55px;
  padding-bottom: 145px;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-kicker::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(67px, 7.6vw, 116px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.048em;
}

.hero h1 em {
  color: #f05a4f;
  font-weight: 500;
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: stretch;
  border: 0;
  color: var(--white);
  background: var(--red);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease;
}

.button span {
  padding: 15px 25px;
  display: flex;
  align-items: center;
}

.button b {
  width: 58px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button:hover b,
.button:focus-visible b {
  transform: translateX(3px);
}

.link-light {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.hero-facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 112px;
  padding-left: max(40px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 16, 31, 0.82);
  backdrop-filter: blur(10px);
}

.hero-facts > div {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.hero-facts .hero-fact-accent {
  color: var(--white);
  background: var(--red);
}

.hero-fact-accent span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-fact-accent b {
  margin-left: 12px;
  font-weight: 400;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-cue span {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  animation: scroll-line 2s ease-in-out infinite;
}

.overview {
  background: var(--white);
}

.overview-grid {
  display: grid;
  grid-template-columns: 155px 1.3fr 0.7fr;
  align-items: start;
  gap: 64px;
}

.section-marker {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.section-marker span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
}

.section-marker p {
  margin: 4px 0 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.1em;
}

.overview h2,
.section-heading h2,
.journey h2,
.audience h2,
.prepare h2,
.scope h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 4.8vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.038em;
}

.overview h2 em {
  color: var(--red);
  font-weight: 400;
  font-style: normal;
}

.overview-copy {
  padding-top: 42px;
}

.overview-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.overview-copy p:first-child {
  color: var(--ink);
  font-size: 20px;
}

.text-link {
  margin-top: 16px;
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--navy);
  font-size: 13px;
  font-weight: 500;
}

.text-link span {
  color: var(--red);
  font-size: 18px;
}

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

.section-heading {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 100px;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 7px;
  color: var(--muted);
}

.outcome-list {
  border-top: 1px solid var(--navy);
}

.outcome-item {
  min-height: 285px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 70px minmax(260px, 0.7fr) 1fr 60px;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, padding 0.3s ease;
}

.outcome-item:hover {
  padding-inline: 22px;
  background: var(--white);
}

.outcome-no,
.outcome-item > b {
  align-self: start;
  padding-top: 8px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
}

.outcome-item > b {
  align-self: center;
  color: var(--navy);
  font-size: 27px;
  font-weight: 400;
  text-align: right;
}

.outcome-visual {
  position: relative;
  height: 205px;
  overflow: hidden;
  border: 1px solid rgba(0, 26, 50, 0.45);
  background: var(--white);
}

.visual-website {
  padding: 43px 30px 25px;
  background: var(--navy);
}

.mock-browser {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 29px;
  padding: 9px;
  display: flex;
  gap: 5px;
  background: var(--warm);
}

.mock-browser i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.visual-website > span {
  width: 78%;
  height: 17px;
  margin-bottom: 11px;
  display: block;
  background: var(--white);
}

.visual-website > span:nth-of-type(2) {
  width: 54%;
}

.visual-website > span:nth-of-type(3) {
  width: 92px;
  height: 35px;
  margin-top: 27px;
  background: var(--red);
}

.visual-prompt {
  padding: 20px 22px;
  color: var(--white);
  background: var(--navy-soft);
}

.visual-prompt small {
  display: block;
  color: #f36b61;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
}

.visual-prompt p {
  margin: 7px 0 30px;
  font-size: 12px;
  line-height: 1.5;
}

.visual-prompt i {
  width: 72%;
  height: 5px;
  margin-top: 8px;
  display: block;
  background: rgba(255, 255, 255, 0.28);
}

.visual-prompt i:last-child {
  width: 42%;
}

.visual-live {
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: start;
  gap: 13px;
  background: var(--white);
}

.visual-live span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
}

.visual-live b {
  padding: 8px 11px;
  color: var(--white);
  background: var(--red);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.visual-live i {
  position: absolute;
  right: 24px;
  bottom: -72px;
  width: 185px;
  height: 185px;
  border: 36px solid var(--navy);
  border-radius: 50%;
}

.outcome-copy > p {
  margin: 0 0 12px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome-copy h3 {
  margin: 0 0 13px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.outcome-copy > span {
  color: var(--muted);
  font-size: 14px;
}

.journey {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.journey::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.02), 0 0 0 130px rgba(255, 255, 255, 0.015);
}

.journey-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 110px;
}

.journey-heading {
  position: sticky;
  top: 135px;
}

.eyebrow-light {
  color: #ef675e;
}

.journey-heading > p:last-child {
  max-width: 460px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.journey-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.journey-step {
  min-height: 158px;
  padding: 27px 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: padding 0.3s ease, background 0.3s ease;
}

.journey-step:hover {
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.journey-step > span {
  color: #ef675e;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
}

.journey-step div {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 18px;
}

.journey-step small {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-step strong {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
}

.journey-step p {
  grid-column: 2;
  margin: -6px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.agenda {
  background: var(--white);
}

.agenda-heading {
  grid-template-columns: 1fr auto;
}

.agenda-summary {
  display: flex;
  align-items: center;
  gap: 17px;
}

.agenda-summary strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.agenda-summary span {
  padding-left: 17px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.agenda-table {
  border-top: 2px solid var(--navy);
}

.agenda-item {
  position: relative;
  min-height: 143px;
  padding: 26px 12px;
  display: grid;
  grid-template-columns: 170px 55px 1fr 60px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  outline: 0;
  transition: color 0.25s ease, background 0.25s ease, padding 0.25s ease;
}

.agenda-item:hover,
.agenda-item:focus-visible,
.agenda-item.active {
  padding-inline: 28px;
  color: var(--white);
  background: var(--navy);
}

.agenda-item time,
.agenda-item > span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
}

.agenda-item > span {
  color: var(--red);
  font-size: 11px;
}

.agenda-item small {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.agenda-item h3 {
  margin: 4px 0 3px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
}

.agenda-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.agenda-item:hover p,
.agenda-item:focus-visible p,
.agenda-item.active p {
  color: rgba(255, 255, 255, 0.58);
}

.agenda-item > b {
  color: rgba(0, 26, 50, 0.25);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  text-align: right;
}

.agenda-item:hover > b,
.agenda-item:focus-visible > b,
.agenda-item.active > b {
  color: rgba(255, 255, 255, 0.72);
}

.break-item {
  min-height: 103px;
}

.break-item h3 {
  font-size: 20px;
}

.agenda-note {
  max-width: 760px;
  margin: 32px 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

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

.audience-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 110px;
}

.audience-intro {
  position: sticky;
  top: 135px;
}

.audience-intro > p:last-child {
  max-width: 440px;
  margin: 30px 0 0;
  color: var(--muted);
}

.audience-list {
  border-top: 1px solid var(--navy);
}

.audience-item {
  min-height: 175px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.audience-item > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease;
}

.audience-item:hover > span {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.audience-item h3 {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
}

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

.prepare {
  color: var(--white);
  background: var(--navy-soft);
}

.prepare-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 100px;
}

.prepare-copy > p:nth-of-type(2) {
  max-width: 480px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.readiness-score {
  max-width: 450px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.readiness-score > div:first-child {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.readiness-score strong {
  color: #ef675e;
  font-family: var(--font-display);
  font-size: 18px;
}

.score-track {
  height: 5px;
  margin-top: 13px;
  background: rgba(255, 255, 255, 0.18);
}

.score-track i {
  width: 0;
  height: 100%;
  display: block;
  background: var(--red);
  transition: width 0.35s ease;
}

.checklist {
  color: var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 rgba(0, 16, 31, 0.6);
}

.checklist-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.checklist-tabs button {
  min-height: 62px;
  padding: 10px 14px;
  border: 0;
  color: var(--muted);
  background: var(--paper);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.checklist-tabs button + button {
  border-left: 1px solid var(--line);
}

.checklist-tabs button.active {
  color: var(--white);
  background: var(--red);
}

.check-panel {
  padding: 14px 34px;
}

.check-panel label {
  min-height: 95px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.check-panel label:last-child {
  border-bottom: 0;
}

.check-panel input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--navy);
  background: var(--white);
}

.custom-check::after {
  content: "✓";
  opacity: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  transform: scale(0.5);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.check-panel input:checked + .custom-check {
  border-color: var(--red);
  background: var(--red);
}

.check-panel input:checked + .custom-check::after {
  opacity: 1;
  transform: scale(1);
}

.check-panel input:focus-visible + .custom-check {
  outline: 3px solid rgba(200, 52, 45, 0.28);
  outline-offset: 3px;
}

.check-panel label > span:last-child {
  display: flex;
  flex-direction: column;
}

.check-panel strong {
  font-size: 16px;
  font-weight: 500;
}

.check-panel small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.scope {
  background: var(--white);
}

.scope-heading {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  align-items: start;
}

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.scope-column {
  padding: 38px 52px 45px 0;
}

.scope-column + .scope-column {
  padding-right: 0;
  padding-left: 52px;
  border-left: 1px solid var(--line);
}

.scope-label {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scope-label span {
  color: var(--red);
  font-size: 13px;
  font-weight: 500;
}

.scope-label b {
  color: rgba(0, 26, 50, 0.24);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
}

.scope-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-column li {
  position: relative;
  padding: 17px 25px 17px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.scope-column li::after {
  content: "→";
  position: absolute;
  top: 17px;
  right: 0;
  color: var(--red);
}

.scope-no li {
  color: var(--muted);
}

.scope-no li::after {
  content: "—";
  color: rgba(0, 26, 50, 0.35);
}

.final-cta {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.final-cta-media {
  position: absolute;
  inset: 0;
  background: url("assets/executive-ai-workshop-hero.png") center 58% / cover no-repeat;
  transform: scale(1.02);
}

.final-cta-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 16, 31, 0.97) 0%, rgba(0, 16, 31, 0.83) 48%, rgba(0, 16, 31, 0.48) 100%);
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 980px;
  font-size: clamp(52px, 6vw, 88px);
}

.final-cta-content > p:not(.eyebrow) {
  max-width: 630px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
}

.cta-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.copy-button {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.copy-toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(0, 16, 31, 0.28);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.copy-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  color: var(--white);
  background: var(--navy-deep);
}

.footer-top {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand .brand-signal i:last-child {
  background: var(--white);
}

.footer-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
}

.back-top {
  justify-self: end;
  font-size: 13px;
  font-weight: 500;
}

.back-top span {
  margin-left: 12px;
  color: #ef675e;
  font-size: 18px;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.21, 0.67, 0.38, 0.99);
}

.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}

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

@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  50%, 100% { transform: translateY(100%); }
}

@media (max-width: 1120px) {
  .header-inner {
    width: calc(100% - 48px);
  }

  .main-nav {
    gap: 20px;
  }

  .overview-grid {
    grid-template-columns: 120px 1.15fr 0.85fr;
    gap: 42px;
  }

  .outcome-item {
    grid-template-columns: 50px minmax(240px, 0.7fr) 1fr 40px;
    gap: 27px;
  }

  .journey-shell,
  .audience-shell {
    gap: 70px;
  }

  .prepare-shell {
    gap: 60px;
  }
}

@media (max-width: 920px) {
  .section-shell {
    width: min(100% - 48px, 760px);
  }

  .section-pad {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .header-inner {
    min-height: 82px;
  }

  .header-side {
    display: block;
  }

  .utility-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 8px;
    border: 1px solid currentColor;
    color: inherit;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 21px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    padding: 120px 36px 50px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    color: var(--white);
    background: var(--navy-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a,
  .main-nav .nav-cta {
    min-height: 66px;
    padding: 13px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    font-family: var(--font-display);
    font-size: 26px;
  }

  .main-nav .nav-cta {
    margin-top: 22px;
    padding-inline: 18px;
    border: 0;
    background: var(--red);
  }

  body.menu-open .site-header,
  body.menu-open .site-header.scrolled {
    color: var(--white);
    background: transparent;
    box-shadow: none;
  }

  body.menu-open .brand {
    position: relative;
    z-index: 102;
  }

  .hero {
    min-height: 850px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(0, 16, 31, 0.96) 0%, rgba(0, 16, 31, 0.79) 58%, rgba(0, 16, 31, 0.35) 100%), linear-gradient(0deg, rgba(0, 16, 31, 0.8), transparent 55%);
  }

  .hero-content {
    padding-bottom: 255px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(63px, 10.5vw, 88px);
  }

  .hero-facts {
    padding-left: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-facts > div {
    min-height: 92px;
    padding: 18px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .scroll-cue {
    display: none;
  }

  .overview-grid {
    grid-template-columns: 110px 1fr;
  }

  .overview-copy {
    grid-column: 2;
    padding-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .outcome-item {
    grid-template-columns: 48px 1fr 40px;
  }

  .outcome-visual {
    grid-column: 2 / span 2;
    width: min(100%, 430px);
  }

  .outcome-copy {
    grid-column: 2;
  }

  .outcome-item > b {
    grid-column: 3;
    grid-row: 3;
  }

  .journey-shell,
  .audience-shell,
  .prepare-shell {
    grid-template-columns: 1fr;
  }

  .journey-heading,
  .audience-intro {
    position: static;
  }

  .agenda-heading {
    grid-template-columns: 1fr;
  }

  .agenda-summary {
    margin-top: 12px;
  }

  .scope-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top p {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .section-shell,
  .header-inner {
    width: calc(100% - 32px);
  }

  .section-pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 11px;
  }

  .brand-signal {
    width: 29px;
    height: 39px;
    gap: 4px;
  }

  .brand-signal i {
    width: 12px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    margin-top: 5px;
    font-size: 7px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 850px;
    align-items: flex-start;
  }

  .hero-image {
    object-position: 65% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(0, 16, 31, 0.8) 0%, rgba(0, 16, 31, 0.72) 30%, rgba(0, 16, 31, 0.93) 73%, rgba(0, 16, 31, 0.98) 100%);
  }

  .hero-content {
    padding-top: 142px;
    padding-bottom: 250px;
  }

  .hero-kicker,
  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .hero h1 {
    font-size: clamp(54px, 15.4vw, 68px);
    line-height: 0.98;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.65;
  }

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

  .button {
    justify-content: space-between;
  }

  .link-light {
    align-self: flex-start;
  }

  .hero-facts > div {
    min-height: 90px;
    padding: 14px 16px;
  }

  .hero-facts strong {
    font-size: 17px;
  }

  .hero-facts span {
    font-size: 8px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .overview-copy {
    grid-column: auto;
  }

  .overview h2,
  .section-heading h2,
  .journey h2,
  .audience h2,
  .prepare h2,
  .scope h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .outcome-item {
    min-height: 0;
    padding: 28px 0 38px;
    grid-template-columns: 34px 1fr;
    gap: 20px;
  }

  .outcome-item:hover {
    padding-inline: 0;
  }

  .outcome-visual,
  .outcome-copy {
    grid-column: 2;
  }

  .outcome-visual {
    height: 190px;
  }

  .outcome-item > b {
    display: none;
  }

  .outcome-copy h3 {
    font-size: 29px;
  }

  .journey-shell {
    gap: 52px;
  }

  .journey-step {
    min-height: 178px;
    grid-template-columns: 42px 1fr;
  }

  .journey-step div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .journey-step p {
    grid-column: 1;
    margin-top: 7px;
  }

  .agenda-summary strong {
    font-size: 68px;
  }

  .agenda-table {
    border-top-width: 1px;
  }

  .agenda-item {
    min-height: 190px;
    padding: 25px 5px;
    grid-template-columns: 1fr 45px;
    gap: 10px 18px;
  }

  .agenda-item:hover,
  .agenda-item:focus-visible,
  .agenda-item.active {
    padding-inline: 15px;
  }

  .agenda-item time {
    grid-column: 1;
  }

  .agenda-item > span {
    grid-column: 2;
    text-align: right;
  }

  .agenda-item div {
    grid-column: 1;
  }

  .agenda-item > b {
    grid-column: 2;
    grid-row: 2;
  }

  .break-item {
    min-height: 145px;
  }

  .agenda-note {
    text-align: left;
  }

  .audience-shell,
  .prepare-shell {
    gap: 54px;
  }

  .audience-item {
    min-height: 190px;
    padding: 26px 0;
    grid-template-columns: 62px 1fr;
  }

  .audience-item h3 {
    font-size: 24px;
  }

  .checklist {
    box-shadow: 10px 10px 0 rgba(0, 16, 31, 0.65);
  }

  .checklist-tabs button {
    min-height: 56px;
    padding-inline: 5px;
    font-size: 11px;
  }

  .check-panel {
    padding-inline: 18px;
  }

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

  .scope-column,
  .scope-column + .scope-column {
    padding: 30px 0;
    border-left: 0;
  }

  .scope-column + .scope-column {
    border-top: 1px solid var(--navy);
  }

  .final-cta {
    min-height: 700px;
  }

  .final-cta-media {
    background-position: 68% center;
  }

  .final-cta-shade {
    background: rgba(0, 16, 31, 0.87);
  }

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

  .final-cta-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .copy-button {
    align-self: flex-start;
  }

  .copy-toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    text-align: center;
  }

  .footer-top {
    min-height: 170px;
  }

  .footer-bottom {
    min-height: 78px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }
}

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

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

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