:root {
  --bg: #020202;
  --panel: #080808;
  --panel-2: #111;
  --line: rgba(255, 255, 255, .16);
  --text: #fff;
  --muted: #b8b8b8;
  --red: #e00712;
  --red-dark: #710006;
  --silver: #d8d8d8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 38%, rgba(21, 54, 45, .28), transparent 20rem),
    linear-gradient(90deg, #020202, #070707 52%, #000);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header,
main,
.footer {
  max-width: 1440px;
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 5;
  background: rgba(0, 0, 0, .9);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 44px;
  padding: .55rem 2.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #dcdcdc;
  font-size: .86rem;
}

.topbar,
.topbar__left,
.topbar__right,
.nav,
.nav-links,
.actions {
  align-items: center;
}

.topbar__left,
.topbar__right,
.nav-links,
.actions {
  display: flex;
}

.topbar__left,
.topbar__right {
  gap: 2rem;
}

.topbar__left span {
  display: inline-block;
  width: .55rem;
  height: .55rem;
  margin-right: .55rem;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.topbar__right {
  gap: .85rem;
}

.topbar__right a {
  font-weight: 800;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 1.1rem 2.35rem;
}

.brand img {
  width: 124px;
  height: auto;
}

.nav-links {
  gap: clamp(1rem, 2.2vw, 2rem);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: .75rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .35rem;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .2s ease;
}

.nav-links a:hover::after,
.nav-links .active::after {
  width: 100%;
}

.nav-links .nav-cta {
  padding: 1rem 1.45rem;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(224, 7, 18, .24);
}

.nav-links .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #080808;
  color: #fff;
  min-height: 42px;
  padding: 0 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .96fr);
  min-height: 594px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .94) 46%, rgba(0, 0, 0, .58) 68%, rgba(0, 0, 0, .86) 100%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .22), transparent 7rem),
    radial-gradient(circle at 66% 16%, rgba(224, 7, 18, .4), transparent 11rem),
    #030303;
}

.hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -2rem;
  width: 12rem;
  height: 38rem;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, #111 20%, var(--red) 60%, var(--red-dark));
  opacity: .92;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: 3.2rem 2.35rem 2.2rem;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: #e9e9e9;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 1.05rem;
  max-width: 720px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.8rem, 6.5vw, 6.95rem);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  color: var(--red);
  font-weight: 900;
}

.hero__lead {
  color: #ddd;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.3;
}

.hero__lead b {
  color: #fff;
}

.hero__text {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.actions {
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-height: 54px;
  padding: 0 1.75rem;
  border: 1px solid transparent;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.btn--red {
  background: var(--red);
  color: #fff;
}

.btn--outline {
  border-color: rgba(255, 255, 255, .65);
  background: rgba(0, 0, 0, .45);
}

.hero__media {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 480px;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 100%;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, .2), transparent 7rem),
    radial-gradient(circle at 64% 30%, rgba(224, 7, 18, .16), transparent 12rem),
    linear-gradient(90deg, rgba(0, 0, 0, .55), transparent 26%, rgba(0, 0, 0, .2));
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.05) contrast(1.06);
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: -1px 2.35rem 0;
  border: 1px solid var(--line);
  background: #050505;
}

.stats div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .9rem;
  padding: 1.45rem 1.4rem;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats b {
  grid-row: span 2;
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}

.stats strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.3vw, 2.6rem);
  line-height: .9;
}

.stats span {
  color: #d6d6d6;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.logos {
  padding: 1.35rem 2.35rem 1.6rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.logos p,
.section-title p {
  margin-bottom: 1rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .5em;
  text-transform: uppercase;
}

.logos div {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 7vw, 6rem);
  flex-wrap: wrap;
  color: var(--silver);
}

.logos img {
  width: clamp(90px, 12vw, 150px);
  height: 70px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.9) contrast(.9) drop-shadow(0 3px 0 rgba(255, 255, 255, .12));
  opacity: .9;
}

.feature {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) 1fr;
  gap: 3.6rem;
  padding: 2.2rem 7.8%;
  border-bottom: 1px solid var(--line);
}

.video {
  position: relative;
  align-self: center;
  overflow: hidden;
  min-height: 300px;
  background: #111;
}

.video video,
.video img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.video video {
  display: block;
  background: #000;
}

.video span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  border: 6px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 2.2rem;
  background: rgba(0, 0, 0, .3);
}

.feature__copy {
  padding: 1rem 0;
}

.feature h2,
.book h2,
.meet h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1;
}

.book h2 {
  max-width: 820px;
  font-size: clamp(2.4rem, 3vw, 3.7rem);
  line-height: .95;
}

.feature p,
.book p,
.meet p {
  color: #ddd;
  line-height: 1.6;
}

.feature ul {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 1.3rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.feature li {
  color: #fff;
}

.feature li::before {
  content: "⊙";
  margin-right: .45rem;
  color: var(--red);
}

.feature__credential {
  display: inline-flex;
  margin: 0 0 1.6rem;
  padding: .6rem .85rem;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, .04);
  color: #f2f2f2;
  font-weight: 800;
}

.programs {
  padding: 2rem 3.8rem 2.2rem;
  border-bottom: 1px solid var(--line);
}

.speaker-kit {
  display: grid;
  grid-template-columns: 1.1fr .9fr auto;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2rem;
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(224, 7, 18, .42);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(54, 0, 0, .72)),
    url("/assets/wix-enhanced/hero-bg.jpg") center / cover;
}

.speaker-kit h2 {
  margin-bottom: .35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.speaker-kit p {
  margin: 0;
  color: #ddd;
  line-height: 1.55;
}

.speaker-kit ul {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  color: #f1f1f1;
  list-style: none;
}

.speaker-kit li::before {
  content: "⊙";
  margin-right: .45rem;
  color: var(--red);
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 1.35rem;
  text-align: center;
}

.section-title span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.section-title p {
  margin: 0;
  color: #fff;
}

.section-title b {
  color: var(--red);
  font-weight: inherit;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.program-grid article {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(224, 7, 18, .22), transparent 7rem),
    linear-gradient(145deg, #141414, #030303 66%);
  border: 1px solid rgba(255, 255, 255, .12);
}

.program-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(224, 7, 18, .14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(0, 0, 0, .88));
}

.program-grid article > div {
  position: absolute;
  inset: 1.35rem 1.4rem 1.25rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.program-grid b {
  display: block;
  color: var(--red);
  font-size: 2.15rem;
}

.program-grid h3 {
  margin: .4rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: .98;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.program-grid p {
  color: #ddd;
  font-size: .95rem;
  line-height: 1.35;
}

.program-grid details {
  margin-top: auto;
}

.program-grid summary {
  cursor: pointer;
  list-style: none;
  color: var(--red);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.program-grid summary::-webkit-details-marker {
  display: none;
}

.program-grid details p {
  margin: .85rem 0 0;
  padding-top: .85rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #f2f2f2;
  font-size: .88rem;
}

.testimonial,
.book,
.insider,
.meet,
.bio-panel {
  display: grid;
  border: 1px solid var(--line);
  border-top: 0;
  margin: 0 2.35rem;
  background: #040404;
}

.testimonial {
  grid-template-columns: auto 220px 1fr;
  align-items: center;
  gap: 1.8rem;
  padding: 1.6rem 8%;
}

.quote {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: .7;
}

.testimonial img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .25);
}

blockquote {
  margin: 0;
}

blockquote p {
  margin-bottom: .9rem;
  color: #f1f1f1;
  font-size: 1.05rem;
  line-height: 1.55;
}

cite {
  display: grid;
  color: #ddd;
  font-style: normal;
}

cite strong {
  color: var(--red);
  font-size: 1.2rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.book {
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 2.4rem;
  padding: 1.2rem 3.8rem 1.6rem;
}

.book > img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, .7));
}

.book__badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 1.4rem;
}

.book__badges img {
  max-width: 180px;
  max-height: 64px;
  object-fit: contain;
}

.rating-badge {
  display: inline-grid;
  gap: .2rem;
  min-width: 190px;
  padding: .8rem 1rem .7rem;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
}

.rating-badge span {
  color: #ffb000;
  font-size: 1.8rem;
  letter-spacing: .03em;
  line-height: 1;
}

.rating-badge strong {
  position: relative;
  width: max-content;
  color: #111;
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: 0;
}

.rating-badge strong::after {
  content: "";
  position: absolute;
  left: 2.1rem;
  right: .15rem;
  bottom: -.18rem;
  height: .38rem;
  border-bottom: 4px solid #ff9900;
  border-radius: 50%;
}

.insider {
  grid-template-columns: minmax(260px, .82fr) 1.35fr;
  align-items: center;
  gap: 2rem;
  padding: 1.35rem 3rem;
  background: linear-gradient(90deg, rgba(120, 0, 0, .7), #150000 46%, #050505);
}

.insider h2,
.final-cta h2 {
  margin-bottom: .45rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.insider p,
.final-cta p {
  color: #e8e8e8;
}

.insider-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
}

.insider-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .28);
  background: #090909;
}

.meet {
  grid-template-columns: minmax(280px, 560px) 1fr;
  align-items: center;
  gap: 3rem;
  padding: 1.2rem 3.8rem 0;
}

.meet__image {
  position: relative;
  min-height: 270px;
  overflow: hidden;
}

.meet__image::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: -1rem;
  width: 4px;
  height: 80%;
  transform: rotate(17deg);
  background: var(--red);
}

.meet__image img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: contain;
  object-position: center bottom;
  background: radial-gradient(circle at center, #171717, #030303 70%);
}

.meet h2 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 6rem);
  text-shadow: 4px 0 0 var(--red);
}

.bio-panel {
  display: block;
  padding: 2.1rem 3.8rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98), rgba(45, 0, 0, .42)),
    #050505;
}

.bio-panel h2 {
  max-width: 920px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1;
}

.bio-panel p:not(.eyebrow) {
  max-width: 960px;
  color: #e2e2e2;
  line-height: 1.7;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) 1.28fr;
  align-items: start;
  gap: 2rem;
  min-height: 190px;
  margin: 0 2.35rem;
  padding: 2.4rem 4rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(150, 0, 0, .66), rgba(0, 0, 0, .5)),
    url("/assets/wix-enhanced/red-bg.jpg") center / cover;
  border: 1px solid var(--line);
  border-top: 0;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .35);
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(0, 0, 0, .82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.contact-form label {
  display: grid;
  gap: .35rem;
}

.contact-form span {
  color: #eee;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  background: #080808;
  color: #fff;
  min-height: 48px;
  padding: .72rem .8rem;
  border-radius: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form__wide,
.contact-form button {
  grid-column: 1 / -1;
}

.footer {
  display: grid;
  grid-template-columns: 1.35fr 1fr .8fr .8fr;
  gap: 2rem;
  padding: 2.2rem 3rem 1.6rem;
  border-top: 1px solid var(--line);
  background: #020202;
}

.footer img {
  width: 135px;
}

.footer h2 {
  margin: 0 0 .9rem;
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.footer a,
.footer span,
.footer p {
  display: block;
  color: #d6d6d6;
  font-size: .9rem;
  line-height: 1.55;
}

.footer nav {
  display: flex;
  gap: .9rem;
}

.footer .copyright {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: .5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: #aaa;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer .copyright a {
  display: inline;
  margin-left: 1rem;
  font-size: inherit;
}

@media (max-width: 1080px) {
  .topbar {
    display: none;
  }

  .nav {
    padding: 1rem 1.3rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 76px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, .98);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links .nav-cta {
    text-align: center;
  }

  .hero,
  .feature,
  .book,
  .insider,
  .meet,
  .final-cta,
  .speaker-kit {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding: 3rem 1.4rem 0;
  }

  .hero__media {
    min-height: 420px;
  }

  .stats,
  .program-grid,
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature,
  .programs {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .testimonial,
  .book,
  .insider,
  .meet,
  .bio-panel,
  .final-cta {
    margin-left: 1.4rem;
    margin-right: 1.4rem;
  }
}

@media (max-width: 720px) {
  .brand img {
    width: 112px;
  }

  h1 {
    font-size: clamp(4.2rem, 18vw, 6rem);
  }

  .stats,
  .program-grid,
  .testimonial,
  .footer {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .logos div {
    gap: 1.5rem;
  }

  .testimonial,
  .book,
  .insider,
  .meet,
  .bio-panel {
    padding: 1.3rem;
  }

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

  .testimonial img {
    width: 180px;
    height: 180px;
  }

  .final-cta {
    padding: 2rem 1.3rem;
  }

  .contact-form,
  .insider-gallery {
    grid-template-columns: 1fr;
  }

  .footer .copyright {
    display: block;
  }

  .footer .copyright a {
    margin: .4rem 1rem 0 0;
  }
}
