:root {
  --blue: #001edb;
  --blue-dark: #07142f;
  --blue-mid: #102c84;
  --orange: #f04a16;
  --orange-light: #ff8a3d;
  --video-gold: #f2a900;
  --white: #ffffff;
  --cream: #fff8f1;
  --soft: #edf3ff;
  --ink: #081229;
  --muted: #52647e;
  --line: rgba(8, 18, 41, 0.14);
  --shadow: 0 24px 80px rgba(7, 20, 47, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
  background: var(--blue-dark);
}

body.modal-open {
  overflow: hidden;
}

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

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
  text-align: center;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 16px;
  background: rgba(7, 20, 47, 0.96);
  color: var(--white);
  border-top: 1px solid rgba(240, 74, 22, 0.45);
}

.sticky-cta span {
  font-size: 13px;
  font-weight: 800;
  flex: 1 1 0;
  min-width: 0;
}
.sticky-cta span:first-of-type {
  text-align: left;
}
.sticky-cta span:last-of-type {
  text-align: right;
}

.sticky-cta a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sticky-cta a {
  min-height: 42px;
  padding: 11px 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.button {
  padding: 15px 24px;
}

.button--orange {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 14px 32px rgba(240, 74, 22, 0.28);
}

.button--outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 15%, rgba(240, 74, 22, 0.26), transparent 28%),
    linear-gradient(135deg, #06102d 0%, var(--blue-mid) 58%, #05102a 100%);
  padding: 70px 0 52px;
}

.hero__grid,
.split,
.authority__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.academy-logo {
  width: min(300px, 100%);
  display: block;
  margin-bottom: 24px;
  border-radius: 12px;
  background: var(--white);
  padding: 14px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 74px);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.8vw, 52px);
  text-transform: uppercase;
}

.lead,
.section-copy {
  color: #dbe7ff;
  font-size: 18px;
}

.bridge-line {
  margin: 10px 0 18px;
  color: var(--orange-light);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.section-bridge {
  max-width: 600px;
  margin: 2.5rem auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

.section-bridge--bold {
  color: var(--orange-light);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 28px 0;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.micro-proof span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__photo,
.authority__image {
  min-height: 560px;
  border: 4px solid rgba(240, 74, 22, 0.85);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(7, 20, 47, 0.08), rgba(7, 20, 47, 0.35)),
    url("../images/speaking.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero__photo {
  background:
    linear-gradient(180deg, rgba(7, 20, 47, 0.08), rgba(7, 20, 47, 0.35)),
    url("../images/karim-hero-klc.jpg") 50% 18% / cover no-repeat;
}

.proof-bar {
  background: var(--orange);
  color: var(--white);
  padding: 22px 0;
}

.proof-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proof-bar strong,
.proof-bar span {
  display: block;
  text-align: center;
}

.proof-bar strong {
  font-size: 26px;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.proof-bar span {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.paid-proof {
  background:
    linear-gradient(90deg, var(--blue-dark) 0 16px, transparent 16px calc(100% - 16px), var(--blue-dark) calc(100% - 16px)),
    var(--cream);
}

.paid-proof .narrow p {
  color: var(--muted);
  font-size: 18px;
}

.proof-feature {
  max-width: 860px;
  margin-top: 32px;
  text-align: center;
}

.proof-figure {
  margin: 0;
}

.proof-feature-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border: 6px solid var(--orange);
  border-radius: 18px;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.proof-figure figcaption {
  display: flex;
  width: min(100%, 240px);
  min-height: 78px;
  align-items: center;
  justify-content: center;
  margin: 10px auto 0;
  border: 1px solid #d8e2f3;
  border-radius: 9px;
  background: var(--white);
  color: var(--blue-dark);
  padding: 12px 18px;
}

.proof-figure figcaption small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.proof-figure .brand-logo--ford {
  max-width: 160px;
  max-height: 50px;
}

.proof-photo {
  min-height: 178px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0, 30, 219, 0.12), rgba(7, 20, 47, 0.48)),
    url("../images/speaking.jpg") center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.proof-photo--large {
  min-height: 310px;
  border: 6px solid var(--orange);
  border-radius: 18px;
  background-image:
    linear-gradient(180deg, rgba(0, 30, 219, 0.02), rgba(7, 20, 47, 0.20)),
    url("../images/honda-dr-karim-ellis.jpg");
  background-position: center;
}
.proof-photo--honda{background-image:linear-gradient(180deg,rgba(0,30,219,.02),rgba(7,20,47,.20)),url("../images/honda-dr-karim-ellis.jpg");background-position:center}
.proof-photo--usps{background-image:linear-gradient(180deg,rgba(255,255,255,.22),rgba(255,255,255,.08)),url("../images/usps-dr-karim-ellis.jpg");background-position:center;background-blend-mode:screen,normal}
.proof-photo--guardian{background-image:linear-gradient(180deg,rgba(0,30,219,.02),rgba(7,20,47,.16)),url("../images/guardian-life-jamaica-dr-karim-ellis.jpg");background-position:center 48%}
.proof-photo--okdot{background-image:linear-gradient(180deg,rgba(0,30,219,.02),rgba(7,20,47,.14)),url("../images/oklahoma-dot-dr-karim-ellis.jpg");background-position:center}
.proof-photo--kroger{background-image:linear-gradient(180deg,rgba(0,30,219,.02),rgba(7,20,47,.14)),url("../images/kroger-dr-karim-ellis.jpg");background-position:center}
.proof-photo--purdue{background-image:linear-gradient(180deg,rgba(0,30,219,.02),rgba(7,20,47,.22)),url("../images/purdue-university-dr-karim-ellis.jpg");background-position:center}

.proof-photo span {
  border-radius: 999px;
  background: rgba(7, 20, 47, 0.82);
  padding: 9px 14px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-logo {
  display: grid;
  height: 96px;
  place-items: center;
  margin-top: 10px;
  border: 1px solid #d8e2f3;
  border-radius: 9px;
  background: var(--white);
  color: var(--blue-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
}

.proof-logo--honda {
}

.proof-logo--usps {
  text-align: center;
}

.proof-logo--okdot {
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.brand-logo--ford {
  max-width: 250px;
  max-height: 66px;
}

.brand-logo--honda {
  max-width: 260px;
  max-height: 44px;
}

.brand-logo--guardian {
  max-width: 300px;
  max-height: 72px;
}

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

.brand-logo--purdue {
  width: min(96%, 390px);
  max-height: 78px;
}

.brand-logo--usps {
  max-width: 250px;
  max-height: 48px;
}

.logo-lockup {
  --logo-blue: #0b5599;
  display: inline-flex;
  width: min(100%, 320px);
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--logo-blue);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.logo-lockup--honda {
  color: #d90000;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-lockup--kroger {
  color: #005dab;
  font-family: Arial Rounded MT Bold, Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.logo-lockup--guardian {
  color: #33258b;
  flex-direction: column;
  gap: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.guardian-sail {
  width: 68px;
  height: 28px;
  display: block;
  border-radius: 8px 68px 28px 28px;
  background:
    linear-gradient(135deg, rgba(151, 25, 117, 0.95) 0 18%, transparent 18%),
    linear-gradient(145deg, #f58426 0 32%, #ffcf14 32% 58%, #ffc20e 58% 100%);
  transform: skewX(-13deg) rotate(9deg);
}

.logo-lockup--okdot {
  color: #00579f;
  gap: 8px;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 34px;
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.okdot-mark {
  width: 46px;
  height: 46px;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, var(--white) 0 16%, transparent 17%),
    linear-gradient(0deg, transparent 0 28%, var(--white) 29% 35%, transparent 36% 46%, var(--white) 47% 53%, transparent 54% 64%, var(--white) 65% 71%, transparent 72%),
    #00579f;
}

.logo-lockup--purdue {
  color: #000;
  flex-direction: column;
  gap: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo-lockup--purdue small {
  width: 78%;
  border-top: 3px solid #c8a557;
  padding-top: 4px;
  color: #c8a557;
  font-size: 12px;
  letter-spacing: 0.5em;
  text-align: center;
}

.logo-lockup--usps {
  color: #111;
  gap: 12px;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-align: left;
  text-transform: uppercase;
}

.usps-eagle {
  width: 54px;
  height: 38px;
  display: block;
  flex: 0 0 auto;
  background:
    linear-gradient(145deg, transparent 0 24%, var(--white) 25% 32%, transparent 33% 100%),
    linear-gradient(155deg, transparent 0 30%, var(--white) 31% 37%, transparent 38% 100%),
    #005a9c;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.brand-mark--ford {
  min-width: 128px;
  min-height: 46px;
  border: 3px solid #174a9c;
  border-radius: 999px;
  color: #174a9c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.08em;
  text-transform: none;
  transform: skew(-7deg);
}

.brand-mark--honda {
  color: #d31f2f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-mark--kroger {
  color: #005dab;
  font-family: Arial Rounded MT Bold, Arial, sans-serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: none;
}

.brand-mark--guardian {
  color: #1e5aa8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
}

.brand-mark--usps {
  color: #1f3d7a;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-mark--okdot {
  color: #163f7a;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.18;
  max-width: 250px;
  text-transform: uppercase;
}

.brand-mark--purdue {
  color: #8e6f3e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.proof-feature p {
  margin: 10px 0 0;
  color: var(--muted);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 860px;
  margin-top: 26px;
}

.social-proof-grid article {
  padding: 0;
}

.proof-note {
  max-width: 860px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--muted);
  padding: 18px 20px;
  text-align: center;
}

.proof-note strong {
  color: var(--blue-dark);
}

.credibility-note {
  margin: 20px 0 0;
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbe7ff;
  padding: 16px 18px;
  font-weight: 700;
}

.story-proof {
  background: var(--white);
}

.story-proof--light {
  background: var(--soft);
}

.story-proof__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.story-proof__grid--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.story-proof__image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-proof__image img {
  display: block;
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.story-proof__image--tall img {
  height: 430px;
}

.story-proof__image figcaption {
  border-top: 4px solid var(--orange);
  padding: 13px 15px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-proof__copy {
  text-align: left;
}

.story-proof__copy .eyebrow {
  color: var(--orange);
}

.story-proof__copy p {
  color: var(--muted);
  font-size: 16px;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.proof-tags span {
  border-radius: 999px;
  background: var(--blue-dark);
  color: var(--white);
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-tags span:first-child {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.trust-strip {
  padding: 72px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 74, 22, 0.22), transparent 28%),
    linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: var(--white);
  text-align: center;
}

.trust-strip h2 {
  max-width: 820px;
  margin: 0 auto 12px;
  font-size: clamp(30px, 4.4vw, 48px);
  text-transform: uppercase;
}

.trust-strip p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #dbe7ff;
  font-size: 17px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.trust-grid img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.trust-grid div {
  padding: 16px;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-grid span {
  margin-top: 5px;
  color: #dbe7ff;
  font-size: 13px;
}

.section.speakoff-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 74, 22, 0.18), transparent 26%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  color: var(--white);
}

.speakoff-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.speakoff-copy .eyebrow {
  color: var(--orange-light);
}

.speakoff-copy {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(7, 20, 47, 0.88);
  padding: 30px;
  box-shadow: var(--shadow);
}

.speakoff-copy h2 {
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.speakoff-copy .speakoff-bridge {
  margin: 14px 0 18px;
  border-left: 4px solid var(--orange);
  padding-left: 16px;
  color: #dbe7ff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.speakoff-copy p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
}

.speakoff-video {
  text-align: center;
}

.speakoff-video__thumb {
  min-height: 390px;
  display: grid;
  position: relative;
  place-items: center;
  overflow: hidden;
  border: 5px solid var(--orange);
  border-radius: 18px;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.speakoff-video__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.95) contrast(1.06);
  transition: opacity 180ms ease, transform 180ms ease;
}

.speakoff-video__thumb:hover img,
.speakoff-video__thumb:focus img {
  opacity: 0.84;
  transform: scale(1.03);
}

.speakoff-video__label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(7, 20, 47, 0.88);
  color: var(--white);
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speakoff-video p {
  margin: 12px 0 0;
  color: #dbe7ff;
  font-size: 13px;
}

.section {
  padding: 82px 0;
  background: var(--white);
}

.problem {
  background: var(--cream);
}

.problem .narrow p,
.details .section-copy,
.faq .section-copy {
  color: var(--muted);
}

.pain-grid,
.gps-grid,
.night-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.pain-grid article,
.deliverables,
.gps-grid article,
.night-list article,
.faq-list details,
.final__box {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pain-grid article {
  padding: 24px;
}

.pain-grid span {
  display: block;
  color: var(--orange);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.pain-grid p,
.deliverables span,
.gps-grid p,
.night-list p,
.faq-list p {
  color: var(--muted);
}

.consequence {
  margin-top: 34px;
  border-left: 5px solid var(--orange);
  border-radius: 14px;
  background: var(--blue-dark);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.consequence .eyebrow {
  color: var(--orange-light);
}

.consequence h3 {
  margin: 0;
  color: var(--white);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.consequence p:not(.eyebrow) {
  color: #dbe7ff;
  font-size: 18px;
  line-height: 1.75;
}

.fit-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(240, 74, 22, 0.14), transparent 25%),
    var(--blue-dark);
  color: var(--white);
}

.fit-section .section-copy {
  color: #dbe7ff;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.fit-grid article {
  min-height: 118px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 20px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

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

.origin__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.origin__photo {
  margin: 0;
}

.origin__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.origin__copy {
  max-width: 760px;
}

.origin__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.origin__turn {
  border-left: 4px solid var(--orange);
  padding-left: 18px;
  color: var(--blue-dark);
  font-weight: 800;
}

.details {
  background: var(--soft);
}

.price-anchor {
  margin: 20px 0 0;
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  background: var(--white);
  padding: 16px 18px;
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
  box-shadow: 0 12px 30px rgba(7, 20, 47, 0.08);
}

.deliverables {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.deliverables div {
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.deliverables div:last-child {
  border-bottom: 0;
}

.deliverables strong,
.deliverables span {
  display: block;
}

.deliverables strong {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.guarantee {
  grid-column: 1 / -1;
  margin-top: 24px;
  border: 1px solid #d8e2f3;
  border-left: 5px solid var(--orange);
  border-radius: 14px;
  background: var(--white);
  padding: clamp(24px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.guarantee h3 {
  max-width: 900px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(26px, 3.2vw, 40px);
  text-transform: uppercase;
}

.guarantee p:not(.eyebrow) {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.authority {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 10%, rgba(240, 74, 22, 0.25), transparent 24%),
    var(--blue-dark);
}

.les-endorsement {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 15%, rgba(240, 74, 22, 0.18), transparent 26%),
    linear-gradient(135deg, var(--blue-dark), #10224d);
}

.testimonial-reel,
.mentor-reel,
.authority {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-reel {
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 74, 22, 0.16), transparent 28%),
    linear-gradient(135deg, #10162f, var(--blue-dark));
}

.audience-reel,
.mentor-reel {
  padding: clamp(54px, 6vw, 68px) 0;
}

.les-endorsement__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.les-video {
  display: grid;
  order: 2;
  justify-items: center;
  gap: 12px;
}

.les-video__thumb {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 9 / 16;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 4px solid var(--video-gold);
  border-radius: 22px;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.les-video__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(1.02) contrast(1.06);
  transition: opacity 180ms ease, transform 180ms ease;
}

.les-video__thumb:hover img,
.les-video__thumb:focus img {
  opacity: 0.9;
  transform: scale(1.035);
}

.les-video p {
  margin: 0;
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.les-endorsement__copy h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 46px);
}

.les-endorsement__copy {
  order: 1;
}

.les-endorsement__copy .section-copy {
  max-width: 680px;
  color: #dbe7ff;
  font-size: 22px;
}

.testimonial-reel .les-video {
  order: 1;
}

.testimonial-reel .les-endorsement__copy {
  order: 2;
}

.mentor-reel .les-video {
  order: 1;
}

.mentor-reel .les-endorsement__copy {
  order: 2;
}

.authority__grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 74px);
  align-items: start;
}

.authority__grid > .reel-card--secondary {
  order: 2;
  position: relative;
  top: auto;
  opacity: 1;
  transform: none;
}

.authority__copy {
  order: 1;
  max-width: 760px;
}

.authority-proof {
  text-align: center;
}

.authority-proof__intro .section-copy {
  max-width: 760px;
  margin-inline: auto;
  color: #dbe7ff;
}

.authority-proof .authority-wall {
  margin-top: 30px;
  text-align: left;
}

.authority__image {
  background-image:
    linear-gradient(180deg, rgba(7, 20, 47, 0.08), rgba(7, 20, 47, 0.36)),
    url("../images/hero.jpg");
}

.reel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: start;
}

.reel-card__thumb {
  width: min(100%, 340px);
  display: block;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--video-gold);
  border-radius: 24px;
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.reel-card--secondary {
  opacity: 0.86;
  transform: scale(0.9);
  transform-origin: top center;
}

.reel-card--secondary .reel-card__thumb {
  box-shadow: none;
}

.reel-card__top {
  display: grid;
  gap: 12px;
  padding: 24px 24px 20px;
  text-align: center;
  background:
    radial-gradient(circle at center bottom, rgba(240, 74, 22, 0.28), transparent 12%),
    var(--blue-dark);
}

.reel-card__top strong {
  color: var(--white);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: clamp(36px, 3.1vw, 48px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}

.reel-card__top span {
  color: var(--orange-light);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-card__video {
  position: relative;
  aspect-ratio: 9 / 16;
  display: block;
  overflow: hidden;
  background: #000;
}

.reel-card__video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.05) contrast(1.05);
  transition: opacity 180ms ease, transform 180ms ease;
}

.reel-card__video--link:hover img,
.reel-card__video--link:focus img {
  opacity: 0.86;
  transform: scale(1.03);
}

.reel-card__big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  border: 4px solid var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.reel-card__big-play::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 26px solid var(--white);
}

.reel-card__caption {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
}

.reel-card__mic {
  display: grid;
  min-height: 56px;
  place-items: center;
  border-right: 1px solid rgba(240, 74, 22, 0.58);
  color: var(--orange-light);
  font-size: 32px;
}

.reel-card__caption p {
  margin: 0;
  color: var(--white);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 700;
  line-height: 1.24;
}

.reel-card__caption em {
  color: var(--orange-light);
  font-style: normal;
}

.reel-card__fallback {
  display: inline-flex;
  justify-content: center;
  margin-top: 12px;
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 26, 0.82);
  backdrop-filter: blur(8px);
}

.video-modal__dialog {
  position: relative;
  width: min(100%, 920px);
  max-height: calc(100vh - 44px);
  padding: 22px;
  overflow: auto;
  border: 2px solid rgba(240, 74, 22, 0.9);
  border-radius: 18px;
  background: var(--blue-dark);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.video-modal__dialog h2 {
  margin: 0 46px 16px 0;
  color: var(--white);
  font-size: 22px;
}

.video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.video-modal__frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-modal__frame.is-vertical {
  width: min(100%, 420px);
  margin-inline: auto;
  aspect-ratio: 9 / 16;
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__fallback {
  display: inline-flex;
  margin-top: 14px;
  color: var(--orange-light);
  font-weight: 800;
}

.authority-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.authority-wall article {
  min-height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.authority-wall strong,
.authority-wall span {
  display: block;
}

.authority-wall strong {
  color: var(--orange-light);
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.authority-wall span {
  margin-top: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.gps {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.gps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gps-grid article {
  padding: 30px;
  text-align: center;
}

.gps-grid strong {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
}

.video-results {
  border-top: 4px solid var(--orange);
  background: var(--soft);
  text-align: center;
}

.playlist-proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  text-align: left;
}

.playlist-proof__video {
  display: grid;
  justify-items: center;
}

.playlist-proof__thumb {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 9 / 16;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 4px solid var(--video-gold);
  border-radius: 22px;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.playlist-proof__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(1.02) contrast(1.06);
  transition: opacity 180ms ease, transform 180ms ease;
}

.playlist-proof__thumb:hover img,
.playlist-proof__thumb:focus img {
  opacity: 0.9;
  transform: scale(1.035);
}

.playlist-proof__copy {
  max-width: 680px;
}

.playlist-proof__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.video-results .narrow p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.video-results .audience-note {
  max-width: 760px;
  margin: 16px auto 0;
  border: 1px solid #d8e2f3;
  border-radius: 999px;
  background: var(--white);
  padding: 11px 18px;
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 800;
}

.video-results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin-top: 30px;
}

.video-result-card {
  overflow: hidden;
  border: 1px solid #d8e2f3;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.video-result-card__thumb {
  display: grid;
  position: relative;
  min-height: 196px;
  place-items: center;
  background: var(--blue-dark);
  overflow: hidden;
  transition: background 180ms ease, transform 180ms ease;
}

.video-result-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.92) contrast(1.08);
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-result-card__thumb:hover,
.video-result-card__thumb:focus {
  background: var(--blue-mid);
}

.video-result-card__thumb:hover img,
.video-result-card__thumb:focus img {
  opacity: 0.76;
  transform: scale(1.04);
}

.video-result-card__thumb:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: -5px;
}

.play-triangle {
  position: relative;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 32px solid var(--orange-light);
  filter: drop-shadow(0 0 18px rgba(240, 74, 22, 0.3));
}

.video-result-card__body {
  padding: 20px 18px 22px;
}

.video-result-card__body h3 {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.video-result-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.inline-cta {
  max-width: 760px;
  margin-top: 34px;
  border: 1px solid #d8e2f3;
  border-radius: 14px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.inline-cta p {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.nights {
  background: var(--blue-dark);
  color: var(--white);
}

.night-list {
  grid-template-columns: repeat(3, 1fr);
}

.night-list article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.night-list span {
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.night-list p {
  color: #dbe7ff;
}

.faq {
  background: var(--cream);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.final {
  padding: 86px 0 112px;
  background:
    radial-gradient(circle at 75% 20%, rgba(240, 74, 22, 0.24), transparent 28%),
    linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: var(--white);
}

.final__box {
  max-width: 840px;
  padding: 46px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.final p {
  color: #dbe7ff;
}

.final .final-assurance,
.final .after-payment {
  max-width: 680px;
  margin: 18px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  color: var(--white);
  font-weight: 800;
}

.final__box .button {
  margin-top: 26px;
}

.final .after-payment {
  margin-top: 24px;
  color: #dbe7ff;
  font-size: 15px;
  font-weight: 700;
}

.final small {
  display: block;
  margin-top: 14px;
  color: #dbe7ff;
}

@media (max-width: 940px) {
  .hero__grid,
  .split,
  .authority__grid,
  .proof-bar__grid,
  .pain-grid,
  .authority-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .gps-grid,
  .night-list,
  .social-proof-grid,
  .story-proof__grid,
  .story-proof__grid--reverse,
  .speakoff-grid,
  .les-endorsement__grid,
  .playlist-proof,
  .origin__grid,
  .trust-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .video-results__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reel-card {
    align-self: center;
  }

  .les-video {
    order: 1;
  }

  .les-endorsement__copy {
    order: 2;
    text-align: center;
  }

  .les-endorsement__copy h2,
  .les-endorsement__copy .section-copy {
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .sticky-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }

  .sticky-cta a,
  .button {
    width: 100%;
  }

  .hero {
    padding-top: 42px;
  }

  .hero__grid,
  .split,
  .authority__grid,
  .proof-bar__grid,
  .pain-grid,
  .authority-wall {
    grid-template-columns: 1fr;
  }

  .video-results__grid {
    grid-template-columns: 1fr;
  }

  .academy-logo {
    width: 230px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .hero__photo,
  .authority__image {
    min-height: 360px;
  }

  .story-proof__image img,
  .story-proof__image--tall img {
    height: 270px;
  }

  .speakoff-video__thumb {
    min-height: 280px;
  }

  .story-proof__copy {
    text-align: center;
  }

  .proof-tags {
    justify-content: center;
  }

  .section {
    padding: 62px 0;
  }

  .final {
    padding-bottom: 142px;
  }

  .final__box {
    padding: 30px 22px;
  }
}


/* paragraph-spacing-fix */
.origin__copy p,
.story-proof__copy p,
.speakoff-copy p,
.playlist-proof__copy p,
.authority__copy p,
.authority-proof__intro p,
.section-copy,
.container.narrow p {
  margin-bottom: 1.4em;
}
.origin__copy p:last-child,
.story-proof__copy p:last-child,
.speakoff-copy p:last-child,
.playlist-proof__copy p:last-child,
.authority__copy p:last-child,
.authority-proof__intro p:last-child,
.container.narrow p:last-child {
  margin-bottom: 0;
}


/* list-spacing-fix: give bullet lists and heading-to-text pairs room to breathe (readable + scannable) */
.final ul li,
.final__box li,
.details ul li,
.night-list article li,
.narrow ul li {
  margin-bottom: 0.7em;
  line-height: 1.55;
}
.final ul li:last-child,
.final__box li:last-child,
.details ul li:last-child,
.night-list article li:last-child,
.narrow ul li:last-child {
  margin-bottom: 0;
}
.problem .narrow h3,
.details h3 {
  margin-bottom: 0.6em;
}

/* price-anchor-gap-fix */
.details .price-anchor {
  margin-bottom: 0.5em;
}


/* video-thumb-crop-fix: show full YouTube 4:3 thumbnails without awkward cropping + click prompt */
.video-result-card__thumb {
  aspect-ratio: 4 / 3;
  min-height: 0;
}
.video-result-card__thumb img {
  object-fit: cover;
  object-position: center;
}
.video-results__prompt {
  display: block;
  width: fit-content;
  max-width: 90%;
  margin: 40px auto 30px;
  padding: 14px 26px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: linear-gradient(135deg, #f04a16, #ff8a3d);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(240, 74, 22, 0.32);
}


/* video-card-title-fix: loosen card title line spacing so columns don't feel cramped */
.video-result-card__body h3 {
  line-height: 1.35;
  margin-bottom: 10px;
}
.video-result-card__body {
  padding: 22px 20px 24px;
}
