: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;
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  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: var(--font-body);
}

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 .topbar__item {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.topbar__left .topbar__dot {
  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;
  gap: clamp(.8rem, 1.5vw, 1.4rem);
  padding: .95rem clamp(1rem, 2.1vw, 2.35rem);
  min-height: 78px;
}

.brand img {
  width: clamp(92px, 8.6vw, 110px);
  height: auto;
}

.nav-links {
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: clamp(.46rem, .82vw, .82rem);
  font-size: clamp(.62rem, .68vw, .76rem);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.nav-links > a,
.nav-dropdown > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .42rem .15rem;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.nav-dropdown > a {
  gap: .35rem;
}

.nav-dropdown > a::before {
  content: "";
  display: inline-block;
  width: .38rem;
  height: .38rem;
  margin-top: -.12rem;
  border-right: 2px solid rgba(255, 255, 255, .82);
  border-bottom: 2px solid rgba(255, 255, 255, .82);
  transform: rotate(45deg);
  order: 2;
}

.nav-dropdown__menu {
  position: absolute;
  left: 50%;
  top: calc(100% + .55rem);
  z-index: 20;
  display: none;
  min-width: 190px;
  overflow: hidden;
  padding: .55rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-top: 3px solid var(--red);
  background:
    linear-gradient(145deg, rgba(22, 22, 22, .98), rgba(0, 0, 0, .98));
  box-shadow: 0 22px 46px rgba(0, 0, 0, .54), 0 0 0 1px rgba(224, 7, 18, .12);
  transform: translateX(-50%);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: grid;
}

.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
  padding: .82rem .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  color: #f6f6f6;
  font-size: .74rem;
  letter-spacing: .08em;
  line-height: 1.2;
}

.nav-dropdown__menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus {
  background: rgba(224, 7, 18, .16);
  color: #fff;
}

.nav-dropdown--programs .nav-dropdown__menu {
  min-width: 245px;
}

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

.nav-links > a:hover::after,
.nav-dropdown > 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: 46px;
  padding: 0 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, #000 0%, #000 44%, rgba(0, 0, 0, .86) 54%, rgba(0, 0, 0, .28) 73%, transparent 100%),
    #030303;
}

.hero--theatre-preview {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .72) 32%, rgba(0, 0, 0, .12) 62%, rgba(0, 0, 0, 0) 100%),
    url("/assets/site/hero-conference-room-ktr-final-v9.jpg") 64% center / cover no-repeat,
    #030303;
}

.hero--portrait-approved {
  min-height: clamp(660px, 49vw, 700px);
  background:
    linear-gradient(90deg, #000 0%, #000 44%, rgba(0, 0, 0, .92) 58%, rgba(0, 0, 0, .86) 100%),
    #030303;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, #000 0%, #000 43%, rgba(0, 0, 0, .9) 52%, rgba(0, 0, 0, .34) 70%, transparent 100%);
  pointer-events: none;
}

.hero--theatre-preview::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .54) 30%, rgba(0, 0, 0, .08) 56%, rgba(0, 0, 0, 0) 100%);
}

.hero--portrait-approved::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .62) 36%, rgba(0, 0, 0, .18) 62%, rgba(0, 0, 0, 0) 100%);
}

.hero--portrait-approved::after {
  inset: 0;
  right: auto;
  bottom: auto;
  z-index: 2;
  width: auto;
  height: auto;
  transform: none;
  background: none;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  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: 0;
}

.hero__copy::before {
  content: "";
  position: absolute;
  left: 1.9rem;
  top: 2rem;
  z-index: -1;
  width: min(36vw, 340px);
  aspect-ratio: 600 / 293;
  background: url("/assets/wix-enhanced/ktr-logo-white.png") center / contain no-repeat;
  opacity: .08;
  filter: grayscale(1) brightness(2.3);
  mix-blend-mode: screen;
}

.hero__copy::after {
  content: none;
}

.hero__copy {
  position: relative;
  z-index: 4;
  width: min(43vw, 590px);
  max-width: 590px;
  padding: 3.4rem 2.35rem 2.2rem;
  background: linear-gradient(90deg, #000 0%, #000 74%, rgba(0, 0, 0, .92) 100%);
  box-shadow: 4rem 0 5rem #000;
}

.hero__portrait {
  position: absolute;
  right: clamp(1.25rem, 5vw, 4.25rem);
  bottom: 2.2rem;
  z-index: 1;
  width: auto;
  height: min(86%, 590px);
  max-width: 53%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(-28px 0 40px rgba(0, 0, 0, .72));
  pointer-events: none;
}

.hero--theatre-preview .hero__portrait {
  display: none;
}

.hero--portrait-approved .hero__copy::before {
  content: none;
  display: none;
}

.hero--portrait-approved .hero__portrait {
  display: block;
  right: clamp(.25rem, 3.4vw, 3.5rem);
  top: 1.4rem;
  bottom: auto;
  height: min(71%, 480px);
  width: min(42%, 540px);
  max-width: none;
  object-position: right top;
  filter: brightness(.98) contrast(1.02) saturate(1.01) drop-shadow(-28px 0 40px rgba(0, 0, 0, .72));
  mix-blend-mode: normal;
  opacity: 1;
}

.hero--portrait-approved .hero__portrait,
.sales-hero--homeflow .sales-hero__photo img {
  filter: brightness(.98) contrast(1.02) saturate(1.01) drop-shadow(-28px 0 40px rgba(0, 0, 0, .72));
  mix-blend-mode: normal;
  opacity: 1;
}

.hero__brand-label {
  position: absolute;
  right: clamp(.25rem, 3.4vw, 3.5rem);
  bottom: 8.55rem;
  z-index: 5;
  width: min(52vw, 720px);
  padding: .62rem 1rem .48rem;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .84) 17%, rgba(0, 0, 0, .9) 82%, transparent);
  color: #f7f7f7;
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.55vw, 1.72rem);
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 12px rgba(224, 7, 18, .35), 0 7px 18px rgba(0, 0, 0, .92);
  text-transform: uppercase;
  pointer-events: none;
}

.hero__brand-label::before,
.hero__brand-label::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero__brand-label::before {
  left: 5%;
  right: 5%;
  top: -.48rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 7, 18, .9), rgba(255, 255, 255, .95), rgba(224, 7, 18, .9), transparent);
  box-shadow: 0 0 22px rgba(224, 7, 18, .55);
}

.hero__brand-label::after {
  left: 12%;
  right: 12%;
  top: -.7rem;
  height: 2rem;
  background: radial-gradient(ellipse at center, rgba(224, 7, 18, .24), transparent 70%);
  filter: blur(8px);
}

.hero__signature {
  display: none !important;
}

.hero__signature span,
.hero__signature small {
  display: block;
}

.hero__signature span {
  white-space: nowrap;
}

.hero__signature small {
  margin-top: .75rem;
  color: #f2f2f2;
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.55vw, 1.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 5px 16px rgba(0, 0, 0, .95);
}

.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: 1rem;
  max-width: 560px;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 5.25vw, 5.75rem);
  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(1rem, 1.35vw, 1.22rem);
  line-height: 1.3;
  margin-bottom: 0;
}

.hero__lead p {
  margin: 0 0 .7rem;
}

.hero__lead p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: #cfcfcf;
  font-size: .98rem;
  line-height: 1.45;
}

.hero__lead b {
  color: #fff;
}

.hero__accent {
  color: var(--red);
  font-weight: 900;
}

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

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

.hero-visual-actions {
  position: absolute;
  right: clamp(.25rem, 3.4vw, 3.5rem);
  bottom: 1.45rem;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, .82fr);
  gap: .85rem;
  width: min(52vw, 720px);
  margin-top: 0;
}

.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;
}

.hero-visual-actions .btn {
  justify-content: space-between;
  min-width: 0;
  padding-inline: clamp(1.15rem, 1.7vw, 1.65rem);
  text-align: left;
}

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

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

.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 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;
  min-width: 0;
  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: var(--font-display);
  font-size: clamp(1.6rem, 2.3vw, 2.6rem);
  line-height: .9;
  overflow-wrap: anywhere;
}

.stats span {
  color: #d6d6d6;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  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;
}

.sizzle {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) 1.35fr;
  align-items: center;
  gap: 2rem;
  padding: 1.35rem 3rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(120, 0, 0, .72), #150000 46%, #050505);
}

.sizzle h2 {
  margin-bottom: .45rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.sizzle p {
  color: #e8e8e8;
  line-height: 1.55;
}

.sizzle .btn {
  margin-top: 1rem;
}


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

.feature--spotlight {
  grid-template-columns: minmax(260px, .82fr) 1.35fr;
  align-items: center;
  gap: 2rem;
  padding: 1.35rem 3rem;
  border-top: 1px solid rgba(224, 7, 18, .7);
  border-bottom: 1px solid rgba(224, 7, 18, .7);
  background: linear-gradient(90deg, rgba(120, 0, 0, .72), #150000 46%, #050505);
}

.feature--spotlight .feature__copy {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.feature--spotlight .eyebrow,
.feature--spotlight h2,
.feature--spotlight p {
  margin: 0;
}

.feature--spotlight h2 {
  max-width: 580px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 3.6vw, 3.9rem);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.feature--spotlight p:not(.eyebrow) {
  max-width: 640px;
  color: #e8e8e8;
  line-height: 1.55;
}

.feature--spotlight .btn {
  margin-top: 1rem;
  white-space: nowrap;
}

.feature__media {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .26);
  background: #080808;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .34);
}

.feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), transparent 30%, rgba(0, 0, 0, .26)),
    linear-gradient(90deg, rgba(224, 7, 18, .14), transparent 36%, rgba(0, 0, 0, .12));
  pointer-events: none;
}

.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.04) contrast(1.06) brightness(1.02);
}

.video {
  position: relative;
  align-self: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #111;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .5);
}

.video video,
.video img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.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 {
  align-self: center;
  padding: 1.65rem 2rem;
  border: 1px solid rgba(224, 7, 18, .7);
  background:
    linear-gradient(90deg, rgba(120, 0, 0, .72), #150000 46%, #050505);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 18px 42px rgba(0, 0, 0, .38);
}

.feature__copy .btn {
  margin-top: 1.1rem;
}

.feature h2,
.book h2,
.meet h2 {
  font-family: var(--font-display);
  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__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
}

.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: 1.45rem 3.8rem 1.75rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .98), rgba(5, 5, 5, .96));
}

.teaches {
  margin: 0 2.35rem;
  padding: 1.5rem 0 1.75rem;
  border: 1px solid rgba(224, 7, 18, .72);
  border-top: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(224, 7, 18, .14), transparent 16rem),
    #030303;
}

.teaches .section-title {
  margin: 0 0 .85rem;
  padding: 0 1.6rem;
}

.teaches h2 {
  max-width: 1180px;
  margin: 0 auto 1.2rem;
  padding: 0 1.6rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.15vw, 3.3rem);
  line-height: .95;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.teaches__intro {
  max-width: 900px;
  margin: 0 auto 1.35rem;
  padding: 0 1.6rem;
  color: #dcdcdc;
  font-size: 1.02rem;
  line-height: 1.55;
  text-align: center;
}

.teaches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.teaches-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 92px;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, .42);
}

.teaches-grid article:last-child {
  border-right: 0;
}

.teaches-grid b {
  color: var(--red);
  font-size: 2.6rem;
  line-height: 1;
}

.teaches-grid p {
  margin: 0;
  color: #f3f3f3;
  font-size: clamp(1rem, 1.45vw, 1.34rem);
  font-weight: 800;
  line-height: 1.2;
}

.speaker-kit {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) 1.35fr;
  align-items: center;
  gap: 2rem;
  margin-top: 1.35rem;
  padding: 1.35rem 3rem;
  border: 1px solid rgba(224, 7, 18, .7);
  background: linear-gradient(90deg, rgba(120, 0, 0, .72), #150000 46%, #050505);
}

.speaker-kit__copy {
  display: block;
}

.speaker-kit__copy .btn {
  margin-top: 1.1rem;
}

.speaker-kit__gallery {
  display: grid;
  grid-template-columns: minmax(116px, 150px) 1fr;
  align-items: stretch;
  gap: .8rem;
}

.speaker-kit__photo {
  position: relative;
  min-height: 150px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .26);
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .22), transparent 38%),
    #080808;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .34);
}

.speaker-kit__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 32%, rgba(0, 0, 0, .22));
  pointer-events: none;
}

.speaker-kit__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
  display: block;
  filter: saturate(1.05) contrast(1.06) brightness(1.02);
  transform: scale(1.01);
}

.speaker-kit h2 {
  margin-bottom: .45rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
}

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

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

.speaker-kit li {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: .7rem .85rem;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .045);
  font-weight: 800;
  line-height: 1.2;
}

.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: 360px;
  overflow: hidden;
  background-color: #060606;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: inset 0 0 0 1px rgba(224, 7, 18, .14), 0 18px 45px rgba(0, 0, 0, .4);
}

.program-grid article:nth-child(1) {
  background-image: url("/assets/site/program-emotional-clean.jpg");
}

.program-grid article:nth-child(2) {
  background-image: url("/assets/site/program-leadership-clean.jpg");
}

.program-grid article:nth-child(3) {
  background-image: url("/assets/site/program-streets-clean.jpg");
}

.program-grid article:nth-child(4) {
  background-image: url("/assets/site/program-human-clean.jpg");
}

.program-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .08) 36%, rgba(0, 0, 0, .78));
  pointer-events: none;
}

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

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

.program-grid h3 {
  margin: .45rem 0 .35rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.55vw, 1.42rem);
  line-height: 1.06;
  letter-spacing: .02em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.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: .8rem;
  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: .8rem;
  line-height: 1.32;
}

.testimonial-heading,
.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%;
}

.testimonial-heading {
  padding: 1.35rem 1.6rem 1rem;
  border-bottom: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(224, 7, 18, .14), transparent 14rem),
    #030303;
}

.testimonial-heading .section-title {
  margin: 0;
}

.testimonial-heading .section-title p {
  line-height: 1.22;
  white-space: normal;
}

.quote {
  color: var(--red);
  font-family: var(--font-display);
  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,
.meet,
.reasons__intro {
  display: grid;
  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 > *,
.meet > *,
.reasons__intro > * {
  min-width: 0;
}

.insider h2,
.meet h2,
.reasons h2,
.final-cta h2 {
  margin-bottom: .45rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  letter-spacing: .02em;
  text-transform: uppercase;
}

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

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

.insider-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, .26);
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .22), transparent 38%),
    #080808;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .34);
}

.insider-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 28%, rgba(0, 0, 0, .28)),
    radial-gradient(circle at 50% 35%, transparent 42%, rgba(0, 0, 0, .28));
  pointer-events: none;
}

.insider-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.08) brightness(1.03);
  transform: scale(1.02);
}

.meet {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(224, 7, 18, .7);
  border-bottom: 1px solid rgba(224, 7, 18, .7);
}

.meet__image {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .26);
  background: #080808;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .34);
}

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

.meet__image::after {
  content: none;
}

.meet__image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.meet h2 {
  color: #fff;
}

.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: var(--font-display);
  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;
}

.reasons {
  display: grid;
  gap: 1rem;
  margin: 1.2rem 3.8rem;
}

.reasons h2 {
  line-height: .95;
}

.reasons__image {
  margin: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,.24);
  background: #080808;
  align-self: center;
  aspect-ratio: 16 / 9;
  max-height: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .34);
}

.reasons__image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.08) contrast(1.08) brightness(1.03);
}

.reason-list {
  display: grid;
  gap: .7rem;
  margin-top: 0;
  padding: 1rem;
  border: 1px solid rgba(224, 7, 18, .7);
  background: linear-gradient(90deg, rgba(120, 0, 0, .56), #120000 46%, #040404);
}

.reason-list details {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
}

.reason-list summary {
  cursor: pointer;
  list-style: none;
  padding: .9rem 1rem;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.reason-list summary span {
  color: var(--red);
}

.reason-list details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #ddd;
}

.reason-list__photo {
  margin: .15rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(224, 7, 18, .7);
  background: #060606;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
}

.reason-list__photo img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(1.04) contrast(1.05) brightness(1.02);
}

.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;
}

.final-cta__contact {
  color: #fff;
  font-weight: 900;
}

.final-cta__photo {
  width: min(100%, 420px);
  margin: 1.25rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  background: #080808;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .36);
}

.final-cta__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.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;
  min-width: 0;
}

.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%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  background: #080808;
  color: #fff;
  min-height: 48px;
  padding: .72rem .8rem;
  border-radius: 0;
  font: inherit;
  line-height: 1.25;
  color-scheme: dark;
}

.contact-form input[type="date"] {
  appearance: none;
  min-height: 52px;
  padding-right: 1rem;
}

.contact-form input[type="date"]::-webkit-date-and-time-value {
  min-height: 1.25em;
  text-align: left;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  margin-left: .35rem;
  filter: invert(1);
  opacity: .78;
}

.contact-form textarea {
  resize: vertical;
}

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

.contact-form__status {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: .9rem 1rem;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
}

.contact-form__status.is-success {
  display: block;
  border-color: rgba(0, 190, 108, .62);
  background: rgba(0, 96, 54, .26);
}

.contact-form__status.is-error {
  display: block;
  border-color: rgba(231, 0, 18, .72);
  background: rgba(231, 0, 18, .18);
}

.contact-page {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.8rem);
  padding: clamp(.9rem, 2.2vw, 1.6rem);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(1rem, 2.2vw, 1.55rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 82% 20%, rgba(224, 7, 18, .28), transparent 30%),
    linear-gradient(135deg, rgba(0, 0, 0, .96), rgba(17, 3, 4, .84) 52%, rgba(0, 0, 0, .96)),
    #050505;
}

.contact-hero__copy {
  text-align: left;
}

.contact-hero h1 {
  max-width: 650px;
  margin-bottom: .55rem;
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
  line-height: .95;
}

.contact-hero p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: #e4e4e4;
  font-size: clamp(.98rem, 1.25vw, 1.08rem);
  line-height: 1.48;
}

.contact-hero__photo {
  margin: 0;
  padding: .45rem;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5), 0 0 36px rgba(224, 7, 18, .2);
}

.contact-hero__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.contact-intake {
  width: min(100%, 980px);
  margin: 0 auto;
}

.contact-booking-photo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .13), rgba(255, 255, 255, .04) 48%, rgba(0, 0, 0, .68)),
    #050505;
}

.contact-booking-photo h2 {
  margin: 0 0 .8rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.3vw, 4.65rem);
  line-height: .92;
  text-transform: uppercase;
}

.contact-booking-photo p:last-child {
  margin-bottom: 0;
}

.contact-booking-photo figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #050505;
}

.contact-booking-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center top;
  background: #050505;
}

.contact-form--full {
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.contact-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem 1rem;
  min-width: 0;
  margin: 0;
  padding: 0 0 1rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.contact-form legend {
  grid-column: 1 / -1;
  margin-bottom: .1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.choice-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}

.choice-grid label,
.privacy-consent label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .6rem;
  min-height: 42px;
  padding: .62rem .75rem;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .045);
  text-align: left;
}

.choice-grid input,
.privacy-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
}

.choice-grid span,
.privacy-consent span {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .04em;
  text-align: left;
}

.privacy-consent {
  display: grid;
  gap: .62rem;
  color: #cfcfcf;
  font-size: .82rem;
  line-height: 1.45;
  text-align: left;
}

.privacy-consent p {
  margin: 0;
}

.privacy-consent a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--red);
}

.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: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.35;
}

.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;
}

.seo-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) 3.8rem;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 18%, rgba(224, 7, 18, .18), transparent 16rem),
    linear-gradient(135deg, #030303, #090909 58%, #020202);
}

.seo-page h1 {
  max-width: 980px;
  font-size: clamp(3.25rem, 6vw, 6rem);
}

.seo-page h2 {
  margin: 2rem 0 .8rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.seo-page p,
.seo-page li {
  max-width: 920px;
  color: #e2e2e2;
  font-size: 1.05rem;
  line-height: 1.7;
}

.seo-page ul {
  display: grid;
  gap: .55rem;
  margin: 0 0 2rem;
  padding-left: 1.2rem;
}

.keynote-page {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
}

.keynote-hero {
  max-width: 1080px;
}

.keynotes-programs-hero {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .48fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, .15);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, .18), transparent 28%),
    radial-gradient(circle at 18% 84%, rgba(224, 7, 18, .3), transparent 34%),
    linear-gradient(135deg, rgba(0, 0, 0, .96), rgba(17, 3, 4, .85) 50%, rgba(0, 0, 0, .96)),
    #050505;
}

.keynotes-programs-hero__copy {
  min-width: 0;
}

.keynotes-programs-hero__photo {
  margin: 0;
  padding: .5rem;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .055);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .5),
    0 0 36px rgba(224, 7, 18, .22);
}

.keynotes-programs-hero__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center bottom;
  background: #f4f4f4;
  filter: contrast(1.08) saturate(1.05);
}

.meeting-hero {
  max-width: none;
  min-height: clamp(480px, 55vw, 650px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, .78fr);
  gap: clamp(1.3rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, .15);
  background:
    radial-gradient(circle at 74% 23%, rgba(255, 213, 121, .25), transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(224, 7, 18, .34), transparent 35%),
    linear-gradient(135deg, rgba(0, 0, 0, .96), rgba(20, 3, 4, .86) 48%, rgba(0, 0, 0, .96)),
    #050505;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .48);
  overflow: hidden;
}

.meeting-hero p {
  max-width: 820px;
}

.meeting-hero__copy {
  position: relative;
  z-index: 1;
}

.meeting-hero__photo {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #080808;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .54);
}

.meeting-hero__photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(330px, 36vw, 520px);
  object-fit: contain;
  object-position: center;
  background: #080808;
  filter: contrast(1.04) saturate(1.04);
}

.meeting-hero__photo figcaption {
  margin: 0;
  padding: .8rem .95rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .72);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.meeting-hero .keynote-cta__actions {
  margin-bottom: 0;
}

.meeting-photo-stories {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

.meeting-story-card {
  display: grid;
  grid-template-columns: minmax(240px, .56fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.6vw, 1.7rem);
  align-items: center;
  padding: clamp(1rem, 2.6vw, 1.55rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(224, 7, 18, .075) 48%, rgba(0, 0, 0, .62)),
    #060606;
}

.meeting-story-card--image-right,
.meeting-story-card:nth-child(odd) {
  grid-template-columns: minmax(0, 1fr) minmax(240px, .56fr);
}

.meeting-story-card--image-right img,
.meeting-story-card:nth-child(odd) img {
  order: 2;
}

.meeting-story-card img {
  display: block;
  width: 100%;
  height: clamp(245px, 24vw, 340px);
  object-fit: contain;
  object-position: center;
  background: #050505;
  filter: contrast(1.04) saturate(1.04);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .38);
  content-visibility: auto;
}

.meeting-story-card h3 {
  margin: 0 0 .75rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 4.45rem);
  line-height: .92;
  text-transform: uppercase;
}

.meeting-story-card p {
  max-width: 820px;
}

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

.reviews-page {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2.4rem);
}

.reviews-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
  align-items: center;
  min-height: 0;
  padding: clamp(1.35rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, .15);
  background:
    radial-gradient(circle at 90% 8%, rgba(224, 7, 18, .28), transparent 24%),
    linear-gradient(135deg, rgba(0, 0, 0, .98), rgba(18, 2, 3, .9) 54%, rgba(0, 0, 0, .96)),
    #050505;
  overflow: hidden;
}

.reviews-hero p {
  max-width: 860px;
}

.reviews-hero h1 {
  max-width: 1120px;
}

.reviews-top-proof {
  display: block;
}

.reviews-montage {
  display: grid;
  grid-template-columns: minmax(280px, .52fr) minmax(0, .9fr);
  gap: clamp(1rem, 2.7vw, 1.8rem);
  align-items: stretch;
  padding: clamp(1.1rem, 2.8vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .16), rgba(255, 255, 255, .045) 42%, rgba(0, 0, 0, .78)),
    #050505;
  overflow: hidden;
}

.reviews-montage__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.reviews-montage__copy h2 {
  margin-top: 0;
}

.reviews-montage blockquote {
  margin: 0;
}

.reviews-montage blockquote p {
  max-width: none;
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.5;
}

.reviews-montage cite {
  display: block;
  margin-top: auto;
  color: #d6d6d6;
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.reviews-montage__logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
  margin-top: 1.2rem;
}

.reviews-montage__logos img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  padding: .55rem;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #fff;
}

.reviews-montage__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  min-width: 0;
}

.reviews-montage__photos img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #080808;
}

.reviews-montage__photo--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

.reviews-hero__image {
  margin: 0;
  padding: .5rem;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .52);
}

.reviews-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.reviews-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .15);
  background: #050505;
}

.reviews-proof-strip div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 118px;
  padding: clamp(.9rem, 1.8vw, 1.2rem);
  border-right: 1px solid rgba(255, 255, 255, .15);
  text-align: center;
}

.reviews-proof-strip div:last-child {
  border-right: 0;
}

.reviews-proof-strip strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  line-height: .9;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.reviews-proof-strip span {
  display: block;
  margin-top: .5rem;
  color: #d8d8d8;
  font-size: clamp(.62rem, .9vw, .74rem);
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.reviews-accolades {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
  align-items: center;
  padding: clamp(1rem, 2.4vw, 1.65rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(224, 7, 18, .12) 48%, rgba(0, 0, 0, .72)),
    #050505;
}

.reviews-accolades h2 {
  margin: 0 0 .75rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.15vw, 3.45rem);
  line-height: .94;
  text-transform: uppercase;
}

.reviews-accolades p:not(.eyebrow) {
  margin: 0 0 .7rem;
  color: #e4e4e4;
  font-size: clamp(.92rem, 1.05vw, 1rem);
  line-height: 1.7;
}

.reviews-accolades__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  align-items: stretch;
}

.reviews-accolades__media img {
  display: block;
  width: 100%;
  height: clamp(250px, 23vw, 320px);
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #080808;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .36);
}

.reviews-feature {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.4rem);
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background: #fff;
  color: #111;
}

.reviews-feature .keynote-section-title h2 {
  color: #111;
}

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

.reviews-celebrity {
  display: grid;
  gap: clamp(1rem, 2.6vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(224, 7, 18, .12) 42%, rgba(0, 0, 0, .74)),
    #050505;
}

.celebrity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(174px, 1fr));
  gap: clamp(.75rem, 1.8vw, 1rem);
}

.celebrity-card {
  position: relative;
  display: grid;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .12), rgba(255, 255, 255, .035) 48%, rgba(0, 0, 0, .66)),
    #050505;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
}

.celebrity-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 3px;
  background: var(--red);
}

.celebrity-card--wide {
  grid-column: auto;
  grid-row: auto;
}

.celebrity-card img {
  display: block;
  width: 100%;
  height: clamp(232px, 19vw, 286px);
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #050505;
  filter: none;
}

.celebrity-card img[src*="nancy-pelosi-landscape"],
.celebrity-card img[src*="joel-osteen-landscape"] {
  width: 100%;
  height: clamp(232px, 19vw, 286px);
  object-fit: contain;
  object-position: center;
  background: #050505;
}

.celebrity-card--wide img {
  min-height: 0;
}

.celebrity-card figcaption {
  position: relative;
  z-index: 2;
  min-height: 40px;
  padding: .72rem .85rem .78rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .82);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.35rem);
}

.reviews-grid--kit {
  align-items: stretch;
}

.reviews-feature .review-card {
  border-color: rgba(0, 0, 0, .12);
  background: #fff;
  color: #111;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .1);
}

.reviews-feature .review-card__media img {
  border-color: rgba(0, 0, 0, .1);
  background: #fff;
}

.reviews-feature .review-card__media img:first-child {
  background: #080808;
}

.reviews-feature .review-card__media img[src*="logo-cbs"],
.reviews-feature .review-card__media img[src*="logo-clean"] {
  background: transparent;
}

.reviews-feature .review-card__media--logo-only img {
  background: transparent;
}

.reviews-feature .review-card blockquote p {
  color: #171717;
}

.reviews-feature .review-card__stars {
  color: #111;
}

.reviews-feature .review-card cite {
  color: #4a4a4a;
}

.review-card {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  min-height: 100%;
  padding: clamp(1.1rem, 2.4vw, 1.65rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .065), rgba(224, 7, 18, .08) 52%, rgba(0, 0, 0, .6)),
    #060606;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(224, 7, 18, 0));
}

.review-card--lead {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .2), rgba(255, 255, 255, .055) 45%, rgba(0, 0, 0, .72)),
    #050505;
}

.review-card--with-proof {
  display: grid;
  grid-template-columns: minmax(220px, .36fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.6vw, 1.8rem);
  align-items: center;
}

.review-card__proof {
  display: grid;
  gap: .95rem;
  align-items: center;
}

.review-card__headshot {
  width: min(100%, 184px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .22);
  background: #111;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .38);
}

.review-card__logo {
  width: min(100%, 300px);
  max-height: 130px;
  object-fit: contain;
  padding: .8rem;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #fff;
}

.review-card__quote {
  min-width: 0;
}

.review-card--with-media {
  gap: .95rem;
}

.review-card__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(98px, .42fr);
  gap: .75rem;
  align-items: stretch;
  margin-bottom: .15rem;
}

.review-card__media img {
  width: 100%;
  height: clamp(132px, 12vw, 152px);
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
    rgba(0, 0, 0, .34);
}

.review-card__media img:first-child {
  object-fit: contain;
  padding: .25rem;
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .08), rgba(255, 255, 255, .03)),
    #080808;
}

.review-card__media img[src*="logo-cbs"],
.review-card__media img[src*="logo-clean"] {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025)),
    rgba(0, 0, 0, .28);
}

.review-card__media--logo-only {
  grid-template-columns: 1fr;
}

.review-card__media--logo-only img {
  height: 118px;
  object-fit: contain;
  padding: .8rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025)),
    rgba(0, 0, 0, .28);
}

.review-card__stars {
  margin: 0 0 .85rem;
  max-width: none;
  color: var(--red);
  font-size: 1rem;
  letter-spacing: .18em;
  line-height: 1;
}

.review-card blockquote {
  margin: 0;
}

.review-card blockquote p {
  max-width: none;
  margin: 0 0 .85rem;
  color: #fff;
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  line-height: 1.48;
}

.review-card blockquote p:last-child {
  margin-bottom: 1.2rem;
}

.review-card cite {
  display: block;
  margin-top: auto;
  color: #d6d6d6;
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.reviews-outcomes {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .6fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .13), rgba(255, 255, 255, .04) 42%, rgba(0, 0, 0, .68)),
    #050505;
}

.reviews-outcomes h2 {
  margin-top: 0;
}

.reviews-outcomes__photo {
  width: min(100%, 220px);
  margin: 0 0 .9rem;
}

.reviews-outcomes__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
}

.reviews-outcomes__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}

.reviews-outcomes__list span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: .85rem .95rem;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, .44);
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.reviews-logos {
  border: 1px solid rgba(255, 255, 255, .15);
}

.reviews-kit-logos {
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .15);
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .08), rgba(255, 255, 255, .035) 48%, rgba(0, 0, 0, .72)),
    #050505;
  text-align: left;
}

.reviews-kit-logos > p,
.reviews-kit-logos__header p {
  margin: 0 0 1.45rem;
  max-width: none;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 3.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .92;
  text-transform: uppercase;
}

.reviews-kit-logos__header {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
  align-items: center;
  margin-bottom: 1rem;
}

.reviews-kit-logos__header figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #050505;
}

.reviews-kit-logos__header img {
  display: block;
  width: 100%;
  height: clamp(150px, 14vw, 210px);
  max-width: none;
  object-fit: contain;
  object-position: center top;
  background: #050505;
}

.reviews-kit-logos__header p {
  margin-bottom: 0;
}

.reviews-kit-logos > div:not(.reviews-kit-logos__header) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
  gap: clamp(1.15rem, 2.4vw, 1.8rem);
  align-items: center;
  justify-items: center;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}

.reviews-kit-logos > div:not(.reviews-kit-logos__header) img {
  width: 100%;
  max-width: 210px;
  height: clamp(104px, 8vw, 132px);
  object-fit: contain;
  padding: 0;
  border: 0;
  background: transparent;
  filter: none;
}

.reviews-kit-logos > div:not(.reviews-kit-logos__header) img.reviews-kit-logos__ktr {
  grid-column: 1 / -1;
  max-width: 360px;
  height: clamp(220px, 22vw, 320px);
  margin-top: .35rem;
}

.reviews-cta {
  margin-top: 0;
}

.meeting-cta__photo {
  width: min(100%, 520px);
  margin: 1.25rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #050505;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .42);
}

.meeting-cta__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: #050505;
}

.ktr-photos-page {
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.ktr-photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(.9rem, 2vw, 1.25rem);
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.ktr-photo-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #050505;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.ktr-photo-gallery img {
  display: block;
  width: 100%;
  height: clamp(290px, 30vw, 430px);
  object-fit: contain;
  object-position: center;
  background: #050505;
}

.journey-photo--childhood {
  object-fit: contain;
  object-position: center top;
  background: #050505;
}

.keynote-hero h1 {
  max-width: 1040px;
  margin-bottom: 1.1rem;
}

.keynote-hero p {
  max-width: 960px;
}

.keynote-hero strong,
.keynote-cta > strong {
  display: block;
  max-width: 980px;
  margin-top: 1.2rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3.35rem);
  line-height: .98;
  text-transform: uppercase;
}

.keynote-section-title {
  max-width: 1000px;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.keynote-section-title h2,
.keynote-difference h2,
.keynote-extend h2,
.keynote-cta h2 {
  max-width: 980px;
  margin-top: 0;
  color: #fff;
}

.keynote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.4rem);
}

.keynote-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.1rem, 2.5vw, 1.65rem);
  border: 1px solid rgba(255, 255, 255, .15);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .065), rgba(224, 7, 18, .08) 52%, rgba(0, 0, 0, .55)),
    #060606;
}

.keynote-card--feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
  margin-bottom: clamp(1rem, 2.4vw, 1.4rem);
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .18), rgba(255, 255, 255, .045) 44%, rgba(0, 0, 0, .62)),
    #050505;
}

.keynote-card__label {
  margin: 0 0 .65rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.keynote-card h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: .92;
  text-transform: uppercase;
}

.keynote-card h4 {
  margin: .75rem 0 .9rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.keynote-card p {
  margin: 0 0 1rem;
}

.keynote-card ul,
.keynote-event-list {
  display: grid;
  gap: .65rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.keynote-card li,
.keynote-event-list li {
  position: relative;
  max-width: none;
  padding-left: 1rem;
  color: #e2e2e2;
  font-size: .98rem;
  line-height: 1.45;
}

.keynote-card li::before,
.keynote-event-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58rem;
  width: .34rem;
  height: .34rem;
  background: var(--red);
}

.keynote-difference,
.keynote-extend,
.keynote-cta {
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .13), rgba(255, 255, 255, .045) 45%, rgba(0, 0, 0, .58)),
    #060606;
}

.keynote-difference {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
}

.keynote-tools {
  display: grid;
  gap: .75rem;
}

.keynote-tools span {
  display: block;
  padding: .9rem 1rem;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .38);
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.keynote-extend {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .3)),
    url("/assets/site/ktr-reasons-stage-audience.png") center 14% / cover no-repeat,
    #060606;
}

.keynote-extend > div {
  max-width: 820px;
}

.keynote-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 1.35rem 0 1.5rem;
}

.keynote-event-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem 1rem;
  margin: 0;
}

.sales-page {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.2rem);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 clamp(2.4rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 18%, rgba(224, 7, 18, .22), transparent 18rem),
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, .1), transparent 20rem),
    linear-gradient(135deg, #030303, #090909 58%, #020202);
}

.sales-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(30, 0, 2, .9) 47%, rgba(0, 0, 0, .96) 100%),
    #050505;
}

.sales-hero--homeflow {
  min-height: clamp(660px, 49vw, 700px);
  padding: 0;
  background:
    linear-gradient(90deg, #000 0%, #000 44%, rgba(0, 0, 0, .92) 58%, rgba(0, 0, 0, .86) 100%),
    #030303;
}

.sales-hero--homeflow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: none;
  width: auto;
  height: auto;
  background: none;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.sales-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .62) 31%, rgba(0, 0, 0, .18) 58%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.sales-hero__copy,
.sales-hero__photo {
  position: relative;
  z-index: 1;
}

.sales-hero__copy {
  position: relative;
  z-index: 4;
  display: block;
  width: min(43vw, 590px);
  max-width: 590px;
  min-width: 0;
  padding: 3.4rem 2.35rem 2.2rem;
  background: linear-gradient(90deg, #000 0%, #000 74%, rgba(0, 0, 0, .92) 100%);
  box-shadow: 4rem 0 5rem #000;
}

.sales-hero__brandline {
  width: auto;
  max-width: 520px;
  margin: 0 0 1.05rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(.86rem, 1.05vw, 1.05rem);
  font-weight: 900;
  letter-spacing: .22em;
  line-height: 1.25;
  text-transform: uppercase;
}

.sales-hero h1 {
  max-width: 590px;
  margin-bottom: 1rem;
  font-size: clamp(3.35rem, 5.25vw, 5.75rem);
  line-height: .9;
}

.sales-hero h1 strong {
  color: var(--red);
}

.sales-hero__lead {
  color: #ddd;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.3;
  margin-bottom: 0;
}

.sales-hero__lead p {
  max-width: 520px;
  margin: 0 0 .7rem;
  color: #ddd;
}

.sales-hero__lead p:last-child {
  margin-bottom: 0;
  color: #cfcfcf;
  font-size: .98rem;
  line-height: 1.45;
}

.sales-hero__lead b {
  color: #fff;
}

.sales-hero__photo {
  position: absolute;
  right: clamp(.25rem, 3.4vw, 3.5rem);
  top: 1.4rem;
  bottom: auto;
  z-index: 1;
  margin: 0;
  width: min(42%, 540px);
  height: min(71%, 480px);
  pointer-events: none;
}

.sales-hero__photo::before,
.sales-hero__photo::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.sales-hero__photo::before {
  left: 10%;
  right: 2%;
  bottom: -1.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 7, 18, .9), rgba(255, 255, 255, .95), rgba(224, 7, 18, .9), transparent);
  box-shadow: 0 0 22px rgba(224, 7, 18, .55);
}

.sales-hero__photo::after {
  right: 4%;
  bottom: -1.6rem;
  width: min(34vw, 480px);
  height: 2.4rem;
  background: radial-gradient(ellipse at center, rgba(224, 7, 18, .28), transparent 68%);
  filter: blur(8px);
}

.sales-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
  filter: brightness(.98) contrast(1.02) saturate(1.01) drop-shadow(-28px 0 40px rgba(0, 0, 0, .72));
  mix-blend-mode: normal;
  opacity: 1;
}

.sales-hero__photo figcaption {
  position: absolute;
  right: 0;
  bottom: -3.7rem;
  z-index: 5;
  width: min(52vw, 720px);
  padding: .62rem 1rem .48rem;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .84) 17%, rgba(0, 0, 0, .9) 82%, transparent);
  color: #f7f7f7;
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.55vw, 1.72rem);
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 12px rgba(224, 7, 18, .35), 0 7px 18px rgba(0, 0, 0, .92);
  text-transform: uppercase;
}

.sales-hero--homeflow > .hero-visual-actions,
.hero--portrait-approved > .hero-visual-actions {
  right: clamp(.25rem, 3.4vw, 3.5rem);
  width: min(52vw, 720px);
}

.sales-hero__signature {
  display: none !important;
}

.sales-hero__signature span,
.sales-hero__signature small {
  display: block;
}

.sales-hero__signature span {
  white-space: nowrap;
}

.sales-hero__signature small {
  margin-top: .75rem;
  color: #f2f2f2;
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.65rem);
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}

.sales-proof-strip {
  position: relative;
  margin: 0 clamp(1rem, 3vw, 3.8rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .15);
  border-top: 0;
  background: #050505;
  box-shadow: 0 -22px 46px rgba(224, 7, 18, .11), 0 18px 40px rgba(0, 0, 0, .36);
}

.sales-proof-strip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--red), rgba(255, 255, 255, .88), var(--red), transparent);
  box-shadow: 0 0 24px rgba(224, 7, 18, .42);
}

.sales-proof-strip div {
  min-width: 0;
  padding: clamp(1rem, 2.3vw, 1.55rem);
  border-right: 1px solid rgba(255, 255, 255, .15);
  text-align: center;
}

.sales-proof-strip div:last-child {
  border-right: 0;
}

.sales-proof-strip strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3.45rem);
  line-height: .9;
  text-transform: uppercase;
}

.sales-proof-strip span {
  display: block;
  margin-top: .55rem;
  color: #d8d8d8;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.sales-brand-band {
  margin: 0 clamp(1rem, 3vw, 3.8rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(224, 7, 18, .72);
  border-top: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(224, 7, 18, .14), transparent 16rem),
    #030303;
}

.sales-brand-band span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.05vw, 2.25rem);
  line-height: .95;
  text-align: center;
  text-transform: uppercase;
}

.sales-brand-band span:last-child {
  border-right: 0;
  color: var(--red);
}

.sales-intro,
.sales-analysis,
.sales-revenue-case,
.sales-why,
.sales-gains,
.sales-final {
  margin-left: clamp(1rem, 3vw, 3.8rem);
  margin-right: clamp(1rem, 3vw, 3.8rem);
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(224, 7, 18, .09) 48%, rgba(0, 0, 0, .64)),
    #060606;
}

.sales-intro,
.sales-analysis,
.sales-why {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.sales-revenue-case {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(300px, 1.1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, .13), transparent 16rem),
    linear-gradient(135deg, rgba(224, 7, 18, .18), rgba(0, 0, 0, .78) 48%, rgba(255, 255, 255, .055)),
    #050505;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.sales-revenue-case__headline,
.sales-revenue-case__story {
  min-width: 0;
}

.sales-famine-callout {
  margin-bottom: clamp(1.15rem, 2.3vw, 1.7rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(224, 7, 18, .62);
  background:
    radial-gradient(circle at 92% 10%, rgba(224, 7, 18, .2), transparent 13rem),
    linear-gradient(135deg, rgba(0, 0, 0, .72), rgba(90, 0, 0, .38)),
    #070707;
  box-shadow: inset 4px 0 0 var(--red), 0 18px 38px rgba(0, 0, 0, .3);
}

.sales-famine-callout h3 {
  color: var(--red);
  font-size: clamp(1.7rem, 3vw, 3.1rem);
}

.sales-famine-callout p {
  color: #f2f2f2;
}

.sales-famine-callout strong {
  display: block;
  margin-top: .9rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.25vw, 2.35rem);
  line-height: .98;
  text-transform: uppercase;
}

.sales-revenue-case__headline p:last-child {
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 800;
  line-height: 1.48;
}

.sales-revenue-case__story {
  display: grid;
  grid-template-columns: minmax(120px, 190px) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
  padding: clamp(1rem, 2vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, .42);
}

.sales-revenue-case__portrait {
  margin: 0;
  padding: .7rem;
  border: 1px solid rgba(224, 7, 18, .45);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(235, 235, 235, .88));
  box-shadow: 0 18px 34px rgba(0, 0, 0, .3);
}

.sales-revenue-case__portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.sales-revenue-case__portrait figcaption {
  margin-top: .7rem;
  color: #050505;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.sales-revenue-case__portrait figcaption span {
  display: block;
  margin-top: .22rem;
  color: var(--red);
  font-size: .68rem;
  letter-spacing: .09em;
}

.sales-revenue-case__story strong {
  display: block;
  margin: 1rem 0 1.15rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.35vw, 2.5rem);
  line-height: .98;
  text-transform: uppercase;
}

.sales-revenue-case__proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.sales-revenue-case__proof article {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(224, 7, 18, .08)),
    rgba(0, 0, 0, .36);
}

.sales-revenue-case__proof span {
  display: block;
  margin-bottom: .7rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: .85;
}

.sales-revenue-case__proof h3 {
  font-size: clamp(1.35rem, 2.1vw, 2.1rem);
}

.sales-revenue-case__proof p {
  margin-bottom: 0;
}

.sales-page h2 {
  margin: 0 0 .85rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: .92;
  text-transform: uppercase;
}

.sales-page h3 {
  margin: 0 0 .65rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  line-height: .96;
  text-transform: uppercase;
}

.sales-page p {
  color: #e2e2e2;
  line-height: 1.65;
}

.sales-analysis strong,
.sales-dual strong,
.sales-peer strong,
.sales-gains strong {
  display: block;
  margin-top: 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.sales-analysis__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.sales-analysis__logos figure,
.sales-gains__grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: .9rem 1rem;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, .38);
}

.sales-analysis__logos figure {
  margin: 0;
  min-height: 104px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(230, 230, 230, .94)),
    #fff;
}

.sales-analysis__logos img {
  display: block;
  max-width: 82%;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .16));
}

.sales-gains__grid span {
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.sales-home-spotlight {
  margin-left: clamp(1rem, 3vw, 3.8rem);
  margin-right: clamp(1rem, 3vw, 3.8rem);
  display: grid;
  grid-template-columns: minmax(260px, .82fr) 1.35fr;
  align-items: center;
  gap: 2rem;
  padding: 1.35rem 3rem;
  border: 1px solid rgba(224, 7, 18, .7);
  background: linear-gradient(90deg, rgba(120, 0, 0, .72), #150000 46%, #050505);
}

.sales-home-spotlight__copy {
  min-width: 0;
}

.sales-home-spotlight h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.9rem);
}

.sales-home-spotlight__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.sales-home-spotlight__grid article {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  align-items: center;
  gap: .85rem;
  min-height: 96px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .085), rgba(224, 7, 18, .1)),
    rgba(0, 0, 0, .34);
}

.sales-home-spotlight__grid b {
  color: var(--red);
  font-size: 2.1rem;
  line-height: 1;
}

.sales-home-spotlight__grid span {
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.sales-celebrity {
  margin-left: clamp(1rem, 3vw, 3.8rem);
  margin-right: clamp(1rem, 3vw, 3.8rem);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(300px, .86fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, .16), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(224, 7, 18, .12) 46%, rgba(0, 0, 0, .7)),
    #050505;
}

.sales-celebrity__cards {
  display: grid;
  gap: .8rem;
}

.sales-celebrity__cards article {
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr);
  gap: .75rem 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(0, 0, 0, .42);
}

.sales-celebrity__cards span {
  grid-row: span 2;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2.45rem;
  line-height: .9;
}

.sales-celebrity__cards h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.1vw, 2.1rem);
}

.sales-celebrity__cards p {
  margin: 0;
}

.sales-problems {
  margin-left: clamp(1rem, 3vw, 3.8rem);
  margin-right: clamp(1rem, 3vw, 3.8rem);
  display: grid;
  gap: clamp(1rem, 2.3vw, 1.5rem);
}

.sales-problem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(.75rem, 1.5vw, 1rem);
}

.sales-problem-grid article {
  position: relative;
  min-width: 0;
  padding: clamp(1rem, 1.8vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(180deg, rgba(224, 7, 18, .15), rgba(255, 255, 255, .035) 36%, rgba(0, 0, 0, .66)),
    #060606;
  overflow: hidden;
}

.sales-problem-grid span {
  display: block;
  margin-bottom: .75rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: .9;
}

.sales-problem-grid b {
  display: block;
  margin: 1rem 0 .45rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.sales-problem-grid p {
  margin-bottom: .75rem;
  font-size: .92rem;
  line-height: 1.48;
}

.sales-problem-grid strong {
  display: block;
  margin-top: 1rem;
  color: #fff;
  font-size: .8rem;
  letter-spacing: .04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.sales-dual {
  margin-left: clamp(1rem, 3vw, 3.8rem);
  margin-right: clamp(1rem, 3vw, 3.8rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.35rem);
}

.sales-dual article {
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 90% 8%, rgba(224, 7, 18, .2), transparent 30%),
    linear-gradient(135deg, rgba(0, 0, 0, .95), rgba(22, 0, 2, .82) 54%, rgba(0, 0, 0, .88)),
    #050505;
}

.sales-peer {
  margin-left: clamp(1rem, 3vw, 3.8rem);
  margin-right: clamp(1rem, 3vw, 3.8rem);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .68fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(224, 7, 18, .72);
  background:
    radial-gradient(circle at 12% 20%, rgba(224, 7, 18, .24), transparent 34%),
    linear-gradient(135deg, rgba(30, 0, 2, .94), rgba(0, 0, 0, .88) 56%, rgba(20, 0, 2, .94)),
    #050505;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 24px 68px rgba(0, 0, 0, .38);
}

.sales-peer__copy {
  min-width: 0;
}

.sales-peer__moments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.sales-peer__moments span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: .85rem .95rem;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .085), rgba(224, 7, 18, .1)),
    rgba(0, 0, 0, .38);
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.sales-peer__moments span::before {
  content: "";
  flex: 0 0 auto;
  width: .46rem;
  height: .46rem;
  margin-right: .6rem;
  background: var(--red);
}

.sales-why__cards {
  display: grid;
  gap: .8rem;
}

.sales-why__cards article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, .36);
}

.sales-why__cards h3 {
  font-size: clamp(1.25rem, 2vw, 1.95rem);
}

.sales-why__cards p {
  margin-bottom: 0;
}

.sales-gains__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: 1.3rem 0;
}

.sales-final {
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(150, 0, 0, .66), rgba(0, 0, 0, .72)),
    url("/assets/wix-enhanced/red-bg.jpg") center / cover;
}

.sales-final h2 {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 6.4rem);
}

.sales-final p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.meet-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: stretch;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.meet-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .16), rgba(255, 255, 255, .05) 34%, rgba(0, 0, 0, .58)),
    #050505;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.meet-hero__copy h1 {
  margin-bottom: .85rem;
}

.meet-hero__copy h2 {
  margin-top: 1.6rem;
}

.meet-hero__copy p:last-child {
  margin-bottom: 0;
}

.meet-hero__image {
  position: relative;
  min-height: 420px;
  max-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 28%, rgba(0, 0, 0, .34)),
    #080808;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
}

.meet-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, .38)),
    linear-gradient(90deg, rgba(224, 7, 18, .2), transparent 38%);
  pointer-events: none;
}

.meet-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 47% 24%;
  filter: saturate(1.02) contrast(1.04) brightness(.98);
}

.meet-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(1.8rem, 4vw, 3rem) 0;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .16);
}

.meet-proof div {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .13), rgba(255, 255, 255, .035)),
    #070707;
}

.meet-proof strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: .9;
  text-transform: uppercase;
}

.meet-proof span {
  display: block;
  margin-top: .6rem;
  color: #d8d8d8;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.meet-bio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
  margin: clamp(2rem, 4vw, 3.4rem) 0 0;
}

.meet-bio__copy,
.meet-bio__panel {
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .065), rgba(224, 7, 18, .09) 54%, rgba(0, 0, 0, .52)),
    #060606;
}

.meet-bio__copy {
  padding: clamp(1.35rem, 3vw, 2.35rem);
}

.meet-bio__copy h2 {
  max-width: 920px;
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.25rem, 4.4vw, 4.85rem);
}

.meet-bio__copy p:not(.eyebrow) {
  max-width: 980px;
  margin: 0 0 .95rem;
  color: #e4e4e4;
}

.meet-bio__lead {
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}

.meet-bio__copy p:last-child,
.meet-bio__more p:last-child {
  margin-bottom: 0;
}

.meet-bio__more {
  margin-top: 1.2rem;
}

.meet-bio__more summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 50px;
  padding: 0 1.35rem;
  border: 1px solid rgba(224, 7, 18, .85);
  background: rgba(224, 7, 18, .12);
  color: #fff;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  list-style: none;
  text-transform: uppercase;
}

.meet-bio__more summary::-webkit-details-marker {
  display: none;
}

.meet-bio__more summary span {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1;
}

.meet-bio__more[open] summary span {
  transform: rotate(45deg);
}

.meet-bio__more > div {
  display: grid;
  gap: .95rem;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.meet-bio__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.15rem, 2.4vw, 1.7rem);
}

.meet-bio__panel h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: .95;
  text-transform: uppercase;
}

.meet-bio__panel ul {
  display: grid;
  gap: .8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meet-bio__panel li {
  position: relative;
  max-width: none;
  padding-left: 1.05rem;
  color: #e2e2e2;
  font-size: .98rem;
  line-height: 1.45;
}

.meet-bio__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58rem;
  width: .38rem;
  height: .38rem;
  background: var(--red);
}

.journey-timeline {
  position: relative;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 0;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    linear-gradient(135deg, rgba(224, 7, 18, .16), rgba(255, 255, 255, .045) 34%, rgba(0, 0, 0, .58)),
    #050505;
  overflow: hidden;
}

.journey-timeline::before {
  content: "KTR";
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  top: .25rem;
  color: rgba(255, 255, 255, .035);
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 16rem);
  line-height: 1;
  pointer-events: none;
}

.journey-timeline__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.journey-timeline__intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.45rem, 5vw, 5.35rem);
}

.journey-timeline__intro p:last-child {
  max-width: 860px;
  margin: 0;
}

.journey-timeline__photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #050505;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .34);
}

.journey-timeline__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center top;
  background: #050505;
}

.journey-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: clamp(1.8rem, 3.5vw, 3rem) 0 0;
  padding: 0;
  list-style: none;
}

.journey-steps::before {
  content: "";
  position: absolute;
  left: 2.05rem;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(180deg, var(--red), rgba(255, 255, 255, .26), rgba(224, 7, 18, .55));
}

.journey-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 4.1rem minmax(0, 1fr);
  gap: 1.15rem;
  max-width: 1120px;
  padding: 0 0 1.45rem;
}

.journey-steps li:last-child {
  padding-bottom: 0;
}

.journey-steps__marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 4.1rem;
  height: 4.1rem;
  border: 1px solid rgba(224, 7, 18, .86);
  background: #070707;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 0 0 8px rgba(0, 0, 0, .54);
}

.journey-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 285px);
  align-items: center;
  gap: clamp(1rem, 2.4vw, 1.5rem);
  padding: clamp(.95rem, 2.1vw, 1.2rem);
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .02)),
    rgba(0, 0, 0, .44);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .25);
}

.journey-card--text-only {
  display: block;
}

.journey-card__copy {
  min-width: 0;
}

.journey-card__media {
  display: grid;
  gap: .8rem;
}

.journey-card__media--pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.journey-card__media figure {
  margin: 0;
  overflow: hidden;
  height: 168px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #080808;
}

.journey-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.97) contrast(1.04) brightness(.96);
}

.journey-photo--humble {
  object-position: 50% 45%;
}

.journey-photo--hard-knock {
  object-position: 50% 40%;
}

.journey-photo--grind,
.journey-photo--celebrity,
.journey-photo--mission {
  object-position: 50% 50%;
}

.journey-photo--proof {
  object-position: 55% 50%;
}

.journey-photo--voices {
  object-position: 50% 48%;
}

.journey-steps__era {
  margin: 0 0 .35rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.journey-steps h3 {
  margin: 0 0 .45rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.7vw, 2.85rem);
  line-height: .98;
  text-transform: uppercase;
}

.journey-card__copy > p:last-child {
  margin: 0;
  color: #d9d9d9;
  font-size: 1rem;
  line-height: 1.6;
}

.meet-closing {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
  align-items: stretch;
  gap: clamp(1.2rem, 3vw, 2rem);
  margin: clamp(2.2rem, 5vw, 4rem) 0 0;
}

.meet-closing__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(224, 7, 18, .12) 58%, rgba(0, 0, 0, .56)),
    #060606;
}

.meet-closing__copy h2 {
  max-width: 780px;
  margin: 0 0 .9rem;
  color: #fff;
  font-size: clamp(2.15rem, 4.4vw, 4.75rem);
}

.meet-closing__copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 1.35rem;
  color: #e4e4e4;
}

.meet-closing__copy .btn {
  min-width: 180px;
}

.meet-closing__image {
  margin: 0;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #080808;
}

.meet-closing__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: 54% 42%;
  filter: saturate(.98) contrast(1.04) brightness(.96);
}

.media-page {
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.media-page h1 {
  margin-bottom: .7rem;
}

.media-page > p {
  max-width: 920px;
  margin-bottom: 1.35rem;
}

.media-feature {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  margin: clamp(2.25rem, 4vw, 3.5rem) 0 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
}

.media-kicker {
  margin: 0 0 .75rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.media-feature h2 {
  margin-top: 0;
}

.media-feature p:last-child {
  margin-bottom: 0;
}

.media-authority {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin: clamp(1.35rem, 3vw, 2.2rem) 0;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(135deg, rgba(224, 7, 18, .14), rgba(255, 255, 255, .045) 48%, rgba(0, 0, 0, .7)), #050505;
}

.media-authority h2 {
  margin: 0 0 .85rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4.8vw, 5.4rem);
  line-height: .9;
  text-transform: uppercase;
}

.media-authority__copy > p {
  max-width: 44rem;
}

.media-authority__article {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.media-authority__article span {
  display: block;
  margin-bottom: .35rem;
  color: rgba(255, 255, 255, .64);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.media-authority__article h3 {
  margin: 0 0 .45rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.media-authority__article p {
  margin: 0 0 .9rem;
  color: rgba(255, 255, 255, .76);
}

.media-authority__article .btn {
  min-height: 42px;
  padding: .75rem 1rem;
  font-size: .74rem;
}

.media-authority__copy p:last-child {
  margin-bottom: 0;
}

.media-authority__photos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
  align-items: stretch;
}

.media-authority__photos img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #080808;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
  content-visibility: auto;
}

.media-authority__photo--wide {
  grid-column: span 3;
}

.media-authority__cover {
  grid-column: span 2;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.9rem, 1.45vw, 1.25rem);
  align-items: start;
}

.media-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #070707;
  min-width: 0;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.media-card__body {
  padding: .9rem 1rem 1.05rem;
}

.media-card__body h2 {
  margin: 0 0 .45rem;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.media-card__body p {
  margin: 0;
  color: #cfcfcf;
  font-size: .82rem;
  line-height: 1.45;
}

@media (max-width: 1240px) {
  .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;
  }

  .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .nav-dropdown__menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0 0 .35rem .75rem;
    padding: .35rem 0 .35rem .85rem;
    border: 0;
    border-left: 2px solid rgba(224, 7, 18, .72);
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown__menu a {
    justify-content: flex-start;
    padding: .7rem .45rem;
    border-bottom: 0;
    font-size: .82rem;
    letter-spacing: .06em;
  }

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

  .meet-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

	  .meeting-hero {
	    grid-template-columns: 1fr;
	  }

	  .reviews-hero,
	  .reviews-montage,
	  .reviews-cta,
	  .reviews-outcomes {
	    grid-template-columns: 1fr;
	  }

	  .reviews-hero__image {
	    max-width: 520px;
	  }

	  .reviews-proof-strip,
	  .celebrity-grid,
	  .reviews-grid,
	  .reviews-kit-logos div {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

	  .celebrity-card--wide {
	    grid-column: span 2;
	    grid-row: auto;
	  }

	  .celebrity-card--wide img {
	    min-height: 320px;
	  }

	  .review-card--lead {
	    grid-column: 1 / -1;
	  }

	  .keynotes-programs-hero {
	    grid-template-columns: 1fr;
	  }

  .keynotes-programs-hero__photo {
    max-width: 420px;
  }

  .meeting-hero__photo {
    transform: none;
  }

  .meeting-hero__photo img {
    max-height: none;
    object-position: center;
  }

  .meeting-hero__photo figcaption {
    padding: .65rem .75rem;
    font-size: .66rem;
    letter-spacing: .06em;
  }

  .keynote-grid,
  .meeting-grid,
  .keynote-card--feature,
  .keynote-difference,
  .sales-hero,
  .sales-intro,
  .sales-analysis,
  .sales-home-spotlight,
  .sales-celebrity,
  .sales-peer,
  .sales-why {
    grid-template-columns: 1fr;
  }

  .sales-problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-dual {
    grid-template-columns: 1fr;
  }

  .meeting-story-card:nth-child(odd) img {
    order: 0;
  }

  .meeting-story-card--image-right img {
    order: 2;
  }

  .meeting-professionals-page .meeting-story-card,
  .meeting-professionals-page .meeting-story-card--image-left,
  .meeting-professionals-page .meeting-story-card:nth-child(odd) {
    grid-template-columns: minmax(230px, .56fr) minmax(0, 1fr);
  }

  .meeting-professionals-page .meeting-story-card--image-right {
    grid-template-columns: minmax(0, 1fr) minmax(230px, .56fr);
  }

  .meeting-professionals-page .meeting-story-card--image-left img {
    order: 0;
  }

  .meeting-professionals-page .meeting-story-card--image-right img {
    order: 2;
  }

  .keynote-event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-proof-strip,
  .sales-brand-band,
  .sales-revenue-case__proof,
  .sales-peer__moments,
  .sales-gains__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-hero--homeflow {
    min-height: auto;
  }

  .sales-hero__photo {
    height: min(64vw, 560px);
  }

  .sales-hero__photo img {
    height: calc(100% - 3.65rem);
  }

  .sales-hero__photo figcaption {
    right: 0;
    width: min(55vw, 540px);
    font-size: clamp(1rem, 1.9vw, 1.35rem);
  }

  .sales-hero__signature {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(92vw, 620px);
    margin: -2.4rem auto 0;
  }

  .sales-home-spotlight {
    padding: 1.25rem;
  }

  .hero__copy {
    width: min(76vw, 640px);
    padding: 3rem 1.4rem 0;
  }

  .hero {
    background:
      linear-gradient(90deg, #000 0%, #000 54%, rgba(0, 0, 0, .78) 68%, rgba(0, 0, 0, .16) 100%),
      #030303;
  }

  .hero--theatre-preview {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .68) 38%, rgba(0, 0, 0, .14) 70%, rgba(0, 0, 0, 0) 100%),
      url("/assets/site/hero-conference-room-ktr-final-v9.jpg") 66% center / cover no-repeat,
      #030303;
  }

  .hero--portrait-approved {
    background:
      radial-gradient(circle at 78% 42%, rgba(206, 12, 18, .14), transparent 26rem),
      linear-gradient(90deg, #000 0%, #000 54%, rgba(0, 0, 0, .9) 71%, #000 100%),
      #030303;
  }

  .hero__portrait {
    right: 1.3rem;
    bottom: 1.6rem;
    height: min(78%, 540px);
    max-width: 50%;
  }

  .hero--portrait-approved .hero__portrait {
    right: 0;
    top: 1.55rem;
    bottom: auto;
    height: min(84%, 570px);
    max-width: 50%;
  }

  .hero__signature {
    right: .65rem;
    bottom: 4.35rem;
    width: min(56vw, 560px);
    font-size: clamp(3.45rem, 5.8vw, 5.4rem);
  }

  .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;
  }

  .speaker-kit__copy {
    grid-template-columns: 1fr;
  }

  .speaker-kit__copy .btn {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .speaker-kit ul {
    grid-template-columns: 1fr;
  }

  .media-feature {
    grid-template-columns: 1fr;
  }

  .media-feature .btn {
    justify-self: start;
  }

  .meet-hero {
    grid-template-columns: 1fr;
  }

  .meet-hero__image {
    width: min(100%, 420px);
    min-height: 460px;
    max-height: 520px;
    justify-self: start;
  }

  .meet-hero__image img {
    min-height: 460px;
    object-position: 47% 22%;
  }

  .journey-steps li {
    max-width: none;
  }

  .journey-card {
    grid-template-columns: 1fr;
  }

  .journey-card__media {
    max-width: 360px;
  }

  .teaches-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .teaches-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
  }

  .teaches-grid article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .24);
  }

  .teaches-grid article:nth-child(n + 3) {
    border-bottom: 0;
  }
}

@media (min-width: 1100px) and (max-width: 1240px) {
  .nav {
    justify-content: center;
    align-items: center;
    gap: .85rem;
    padding: .82rem clamp(.7rem, 1.5vw, 1.35rem);
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand img {
    width: clamp(74px, 9vw, 100px);
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    inset: auto;
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: .38rem clamp(.65rem, 1.2vw, 1rem);
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: clamp(.72rem, 1.05vw, .84rem);
    letter-spacing: .02em;
  }

  .nav-links a {
    padding: .45rem 0;
  }

  .hero--portrait-approved {
    min-height: 660px;
  }

  .hero--portrait-approved .hero__portrait {
    right: -1.25rem;
    top: 2.4rem;
    height: min(78%, 535px);
    max-width: 56%;
  }

  .hero__copy {
    width: min(63vw, 570px);
    padding-top: 2.5rem;
  }

  .hero-visual-actions {
    grid-template-columns: minmax(220px, 1fr) minmax(190px, .82fr);
    width: min(78vw, 680px);
  }

  .hero__signature {
    right: .25rem;
    bottom: 3.4rem;
    width: min(53vw, 520px);
  }

  .contact-hero {
    grid-template-columns: 1fr minmax(220px, 300px);
  }

  .contact-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.4rem);
  }

  .contact-form fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.menu-open {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

@media (max-width: 720px) {
  .topbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .45rem .9rem;
    min-height: 0;
    padding: .52rem .8rem;
    text-align: center;
    font-size: .72rem;
  }

  .topbar__left,
  .topbar__right {
    justify-content: center;
    gap: .65rem;
    width: 100%;
  }

  .topbar__right span {
    display: none;
  }

  .brand img {
    width: 112px;
  }

  .nav-links {
    inset: 132px 1rem auto;
    font-size: .94rem;
  }

  .nav-links a {
    padding: .82rem .25rem;
  }

  h1 {
    font-size: clamp(3.9rem, 16vw, 5.85rem);
  }

  .hero {
    min-height: 760px;
    background:
      linear-gradient(90deg, #000 0%, #000 68%, rgba(0, 0, 0, .5) 100%),
      #030303;
  }

  .hero--theatre-preview {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .68) 58%, rgba(0, 0, 0, .18) 100%),
      url("/assets/site/hero-conference-room-ktr-final-v9.jpg") 70% center / cover no-repeat,
      #030303;
  }

  .hero--portrait-approved {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 0;
    background:
      radial-gradient(circle at 82% 71%, rgba(206, 12, 18, .16), transparent 18rem),
      linear-gradient(180deg, #000 0%, #000 62%, #050505 100%),
      #030303;
  }

  .hero__portrait {
    right: -5rem;
    bottom: 1.8rem;
    height: 50%;
    max-width: none;
    opacity: .62;
  }

  .hero--portrait-approved .hero__portrait {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: flex-end;
    width: min(86vw, 390px);
    height: auto;
    max-width: 86vw;
    margin: -2.6rem 0 0;
    opacity: 1;
    filter: drop-shadow(-18px 0 32px rgba(0, 0, 0, .72));
  }

  .hero__brand-label {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: flex-end;
    width: min(86vw, 390px);
    margin: -1.05rem 0 .25rem;
    padding: .58rem .45rem .42rem;
    font-size: 1.06rem;
    letter-spacing: .15em;
  }

  .contact-page {
    padding: .9rem;
  }

  .contact-hero,
  .contact-form fieldset,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 1rem;
  }

  .contact-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .contact-hero__photo {
    width: min(100%, 310px);
  }

  .hero__signature {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: center;
    width: min(96vw, 520px);
    margin: -2.3rem auto 1.8rem;
    font-size: clamp(3.25rem, 12.6vw, 5.2rem);
  }

  .hero__signature small {
    font-size: 1.02rem;
    letter-spacing: .14em;
  }

  .hero::before {
    background:
      linear-gradient(90deg, #000 0%, #000 70%, rgba(0, 0, 0, .22) 100%);
  }

  .hero--theatre-preview::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .58) 62%, rgba(0, 0, 0, .16) 100%);
  }

  .hero--portrait-approved::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .6) 63%, rgba(0, 0, 0, .16) 100%);
  }

  .hero__copy {
    width: min(92vw, 430px);
    padding: 2.8rem 1.35rem 2rem;
    box-shadow: 2rem 0 3rem #000;
  }

  .hero__copy::after {
    max-width: 350px;
    font-size: .86rem;
    line-height: 1.5;
  }


  .stats,
  .program-grid,
  .testimonial,
  .footer,
  .sales-proof-strip,
  .sales-brand-band,
  .sales-problem-grid,
  .sales-home-spotlight__grid,
  .sales-peer__moments,
  .sales-gains__grid,
  .sales-revenue-case__proof,
  .sales-analysis__logos {
    grid-template-columns: 1fr;
  }

  .sales-page {
    gap: 1rem;
    padding-left: 0;
    padding-right: 0;
  }

  .sales-hero {
    min-height: auto;
    padding: 0;
  }

  .sales-hero--homeflow {
    display: flex;
    flex-direction: column;
    background:
      radial-gradient(circle at 82% 71%, rgba(206, 12, 18, .16), transparent 18rem),
      linear-gradient(180deg, #000 0%, #000 62%, #050505 100%),
      #030303;
  }

  .sales-hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .6) 63%, rgba(0, 0, 0, .16) 100%);
  }

  .sales-hero__copy {
    width: min(92vw, 430px);
    max-width: 430px;
    padding: 2.55rem 1.35rem 1.75rem;
    box-shadow: 2rem 0 3rem #000;
  }

  .sales-hero h1 {
    font-size: clamp(3.05rem, 14vw, 5.35rem);
  }

  .sales-hero__brandline {
    width: 100%;
    text-align: center;
  }

  .sales-hero__photo {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    align-self: flex-end;
    width: min(86vw, 390px);
    height: auto;
    max-width: 86vw;
    margin: -4rem 0 0;
    padding-bottom: 0;
  }

  .sales-hero__photo::before {
    left: 5%;
    right: 5%;
    bottom: 2.95rem;
  }

  .sales-hero__photo::after {
    right: 6%;
    bottom: 2.65rem;
    width: 88%;
  }

  .sales-hero__photo img {
    height: auto;
  }

  .sales-hero__photo figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -1.05rem;
    padding: .58rem .45rem .42rem;
    font-size: 1.06rem;
    letter-spacing: .15em;
  }

  .hero-visual-actions {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: flex-end;
    grid-template-columns: 1fr;
    width: min(86vw, 390px);
    margin: .35rem 0 1.15rem;
    gap: .75rem;
  }

  .hero-visual-actions .btn {
    justify-content: center;
    text-align: center;
  }

  .sales-revenue-case__story {
    grid-template-columns: 1fr;
  }

  .sales-revenue-case__portrait {
    width: min(100%, 230px);
    justify-self: center;
  }

  .sales-proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .sales-proof-strip div:last-child {
    border-bottom: 0;
  }

  .sales-intro,
  .sales-analysis,
  .sales-revenue-case,
  .sales-why,
  .sales-peer,
  .sales-celebrity,
  .sales-gains,
  .sales-final,
  .sales-dual article {
    padding: 1.1rem;
  }

  .sales-page h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .sales-brand-band span {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    font-size: clamp(1.3rem, 9vw, 2.2rem);
  }

  .sales-brand-band span:last-child {
    border-bottom: 0;
  }

  .stats {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .testimonial-heading {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1rem;
  }

  .testimonial-heading .section-title p {
    font-size: .68rem;
    letter-spacing: .24em;
  }

  .program-grid article {
    min-height: 300px;
  }

  .program-grid h3 {
    max-width: 90%;
    font-size: 1.22rem;
  }

  .speaker-kit {
    grid-template-columns: 1fr;
    gap: .9rem;
    padding: 1rem;
  }

  .speaker-kit h2 {
    font-size: 1.8rem;
  }

  .speaker-kit p {
    font-size: .92rem;
  }

  .speaker-kit__gallery {
    grid-template-columns: 96px 1fr;
  }

  .speaker-kit__photo {
    min-height: 116px;
  }

  .sizzle,
  .reasons {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .reasons__intro {
    padding: 1rem;
  }

  .sizzle h2,
  .reasons h2 {
    font-size: 2.1rem;
  }

  .reasons__image {
    min-height: 220px;
  }

  .teaches h2 {
    white-space: normal;
  }

  .teaches {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .teaches .section-title {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .teaches-grid article {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: .75rem;
    min-height: 74px;
    padding: .95rem 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
  }

  .teaches-grid article:nth-child(odd) {
    border-right: 0;
  }

  .teaches-grid article:nth-child(n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, .24);
  }

  .teaches-grid article:last-child {
    border-bottom: 0;
  }

  .teaches-grid b {
    font-size: 2.05rem;
  }

  .stats div {
    grid-template-columns: 2rem minmax(0, 1fr);
    padding: 1.1rem 1rem;
    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;
  }

	  .seo-page {
	    padding-left: 1rem;
	    padding-right: 1rem;
	  }

	  .reviews-hero {
	    min-height: 0;
	    padding: 1rem;
	  }

	  .reviews-proof-strip,
	  .celebrity-grid,
	  .reviews-grid,
	  .reviews-accolades,
	  .reviews-montage,
	  .reviews-outcomes__list,
	  .review-card--with-proof {
	    grid-template-columns: 1fr;
	  }

	  .reviews-accolades__media {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

	  .reviews-accolades__media img {
	    height: 190px;
	  }

	  .reviews-kit-logos__header {
	    grid-template-columns: 1fr;
	  }

	  .reviews-kit-logos__header img {
	    height: 170px;
	  }

	  .reviews-kit-logos > div:not(.reviews-kit-logos__header) {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	    gap: .85rem;
	  }

	  .reviews-kit-logos > div:not(.reviews-kit-logos__header) img {
	    height: 96px;
	    max-width: 170px;
	  }

	  .reviews-montage__logos {
	    grid-template-columns: repeat(3, minmax(0, 1fr));
	  }

	  .reviews-montage__photos {
	    grid-template-columns: 1fr;
	  }

	  .reviews-montage__photo--wide {
	    aspect-ratio: 4 / 3;
	  }

	  .meeting-cta__photo {
	    grid-column: auto;
	    grid-row: auto;
	  }

	  .reviews-celebrity {
	    padding: 1rem;
	  }

	  .celebrity-card--wide {
	    grid-column: auto;
	  }

	  .celebrity-card img,
	  .celebrity-card--wide img {
	    height: 252px;
	    min-height: 0;
	  }

	  .reviews-proof-strip div {
	    border-right: 0;
	    border-bottom: 1px solid rgba(255, 255, 255, .15);
	  }

	  .reviews-proof-strip div:last-child {
	    border-bottom: 0;
	  }

	  .review-card--lead {
	    grid-column: auto;
	  }

	  .review-card__proof {
	    grid-template-columns: 92px minmax(0, 1fr);
	    gap: .75rem;
	  }

	  .review-card__headshot {
	    width: 92px;
	  }

	  .review-card__logo {
	    width: 100%;
	    max-height: 92px;
	    padding: .55rem;
	  }

	  .review-card,
	  .reviews-outcomes,
	  .reviews-kit-logos {
	    padding: 1rem;
	  }

	  .media-feature,
	  .media-card__body {
	    padding: 1rem;
	  }

  .media-gallery {
    grid-template-columns: 1fr;
  }

  .media-card__body h2 {
    font-size: .94rem;
  }

  .media-card__body p {
    font-size: .9rem;
  }

  .meet-hero {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .meet-hero__copy {
    padding: 1.1rem;
  }

  .meet-hero__image {
    width: 100%;
    min-height: 320px;
    max-height: 350px;
  }

  .meet-hero__image img {
    min-height: 320px;
    object-position: 47% 22%;
  }

  .meet-proof {
    grid-template-columns: 1fr;
    margin: 1.25rem 0;
  }

  .meet-proof div {
    padding: 1rem;
  }

  .keynote-page {
    gap: 1.25rem;
  }

  .keynote-card,
  .keynote-difference,
  .keynote-extend,
  .keynote-cta {
    padding: 1.1rem;
  }

  .keynote-card h3 {
    font-size: clamp(2rem, 13vw, 3rem);
  }

  .keynote-card h4 {
    font-size: clamp(1.12rem, 7vw, 1.6rem);
  }

  .keynote-event-list {
    grid-template-columns: 1fr;
  }

  .keynote-cta__actions .btn {
    width: 100%;
    min-height: 50px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .meet-bio {
    gap: 1rem;
  }

  .meet-bio__copy,
  .meet-bio__panel {
    padding: 1.1rem;
  }

  .meet-bio__copy h2 {
    font-size: clamp(2rem, 13.2vw, 3rem);
  }

  .journey-timeline {
    padding: 1.1rem;
  }

  .journey-card {
    gap: .9rem;
    padding: 1rem;
  }

  .journey-card__media,
  .journey-card__media--pair {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .journey-card__media figure {
    height: 158px;
  }

  .journey-steps::before {
    left: 1.5rem;
  }

  .journey-steps li {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: .85rem;
  }

  .journey-steps__marker {
    width: 3rem;
    height: 3rem;
    font-size: 1.05rem;
    box-shadow: 0 0 0 6px rgba(0, 0, 0, .54);
  }

  .journey-steps li > div {
    padding: .9rem .95rem 1rem;
  }

  .meet-closing {
    gap: 1rem;
  }

  .meet-closing__copy {
    padding: 1.1rem;
  }

  .meet-closing__copy h2 {
    font-size: clamp(2rem, 14vw, 3rem);
  }

  .meet-closing__image,
  .meet-closing__image img {
    min-height: 260px;
  }
}

@media (min-width: 430px) and (max-width: 720px) {
  .hero-visual-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
    width: min(86vw, 390px);
    max-width: none;
    gap: .65rem;
    margin-top: 0;
    margin-bottom: .95rem;
  }

  .sales-hero > .hero-visual-actions {
    margin-top: .4rem;
  }

  .hero-visual-actions .btn {
    min-height: 50px;
    justify-content: space-between;
    padding-inline: .9rem;
    font-size: .72rem;
    letter-spacing: .055em;
    line-height: 1.08;
    text-align: left;
  }

  .hero-visual-actions .btn span {
    flex: 0 0 auto;
  }
}

@media (max-width: 760px) {
  .sales-revenue-case {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1rem;
  }

  .sales-revenue-case__headline,
  .sales-revenue-case__story,
  .sales-revenue-case__proof {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
  }

  .sales-revenue-case__headline {
    display: grid;
    gap: .85rem;
  }

  .sales-revenue-case__headline .eyebrow {
    margin: 0;
    letter-spacing: .18em;
    line-height: 1.25;
  }

  .sales-famine-callout {
    margin: 0;
    padding: 1rem;
  }

  .sales-famine-callout h3 {
    font-size: clamp(1.55rem, 9vw, 2.25rem);
    line-height: .95;
  }

  .sales-famine-callout p,
  .sales-revenue-case__headline p,
  .sales-revenue-case__story p,
  .sales-revenue-case__proof p {
    font-size: .98rem;
    line-height: 1.5;
  }

  .sales-famine-callout strong,
  .sales-revenue-case__story strong {
    font-size: clamp(1.35rem, 8vw, 2rem);
    line-height: 1;
  }

  .sales-revenue-case h2 {
    font-size: clamp(2rem, 10.5vw, 3rem);
    line-height: .95;
  }

  .sales-revenue-case__story {
    grid-template-columns: 1fr !important;
    padding: 1rem;
  }

  .sales-revenue-case__portrait {
    width: min(100%, 220px);
    justify-self: center;
  }

  .sales-revenue-case__story .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 1rem;
    text-align: center;
  }

  .sales-revenue-case__proof {
    grid-template-columns: 1fr !important;
    gap: .75rem;
  }

  .sales-revenue-case__proof article {
    padding: 1rem;
  }
}
