:root {
  --bg: #fbf6ec;
  --bg-soft: #fffaf2;
  --bg-panel: #ffffff;
  --ink: #18130c;
  --muted: #5f5547;
  --muted-2: #887b6a;
  --line: rgba(24, 19, 12, 0.12);
  --line-strong: rgba(24, 19, 12, 0.22);
  --gold: #ffc45e;
  --gold-strong: #f2a720;
  --bronze: #b97824;
  --danger-soft: #fff3ed;
  --shadow: 0 22px 60px rgba(64, 43, 16, 0.14);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

.bg-cream {
  background-color: var(--bg);
}

.text-ink {
  color: var(--ink);
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

.z-\[1\] {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2\.5 {
  gap: 10px;
}

.gap-3 {
  gap: 12px;
}

.gap-3\.5 {
  gap: 14px;
}

.gap-10 {
  gap: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 64px 0 0;
  z-index: 45;
  background: rgba(5, 6, 7, 0.58);
  backdrop-filter: blur(5px);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(255, 196, 94, 0.9);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  color: #f8f2e8;
  border-bottom: 2px solid #ffc45e;
  background: rgba(8, 9, 11, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-logo {
  width: 156px;
  height: auto;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 13px;
  color: #d7cdbf;
  font-size: 0.86rem;
}

.site-nav a,
.site-nav a:visited {
  position: relative;
  padding: 8px 0;
  color: #d7cdbf !important;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-header a,
.site-header a:visited {
  color: #d7cdbf !important;
}

.site-header .nav-cta,
.site-header .nav-cta:visited {
  color: #14110a !important;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-header .site-nav a:hover {
  color: #ffffff !important;
}

.site-header .site-nav a:hover::after,
.site-header .site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header .site-nav a.is-active {
  color: var(--gold) !important;
}

.site-nav .mobile-start-link::after {
  display: none;
}

.footer-grid nav a,
.footer-grid nav a:visited {
  color: #c8bfb1;
  transition: color 160ms ease;
}

.mobile-start-link {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-align: center;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  text-wrap: nowrap;
}

.nav-cta,
.button-primary {
  color: #14110a;
  background: var(--gold);
  box-shadow: 0 12px 32px rgba(242, 167, 32, 0.18);
}

.nav-cta:hover,
.button-primary:hover {
  background: #ffd47f;
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
}

.button-secondary:hover {
  background: #ffffff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fffaf2;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  color: #f8f2e8;
  background: #08090b;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/centre.png");
  background-size: cover;
  background-position: 96% center;
  opacity: 0.88;
  filter: brightness(0.78) saturate(0.96) contrast(1.08);
  transform: translateX(20%) scale(1.08);
  transform-origin: right center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.9) 28%, rgba(8, 9, 11, 0.48) 58%, rgba(8, 9, 11, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 1) 0%, rgba(8, 9, 11, 0.18) 48%, rgba(8, 9, 11, 0.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 60px 0 46px;
}

.hero-content > * {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 3.8rem;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  margin-bottom: 50px;
  color: #fffaf2;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-hook {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.18;
}

.hero-copy {
  max-width: 740px;
  margin-bottom: 26px;
  color: #ded4c6;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.review-avatars {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.review-avatar {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 2px solid rgba(255, 250, 242, 0.9);
  border-radius: 999px;
  background-image: url("assets/reviews.png");
  background-repeat: no-repeat;
  background-size: 378px 210px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}

.review-avatar:first-child {
  margin-left: 0;
}

.hero-proof p {
  max-width: 390px;
  margin: 0;
  color: #ded4c6;
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fffaf2;
  background: rgba(255, 255, 255, 0.08);
}

.hero .button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: 92px 0;
}

.player-section {
  background: var(--bg);
}

.player-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 42px;
}

.section-copy p,
.center-intro p,
.section-heading-row p {
  color: var(--muted);
  font-size: 1.05rem;
}

.video-frame,
.locked-preview {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame video,
.locked-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.locked-preview img {
  position: absolute;
  top: -100px;
  right: 0;
  bottom: 0;
  left: 0;
  height: calc(100% + 100px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.8) saturate(0.96);
}

.locked-preview-overlay {
  position: absolute;
  inset: 210px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  color: #fffaf2;
  background: transparent;
}

.locked-preview-overlay h3 {
  max-width: 640px;
  margin: 0;
  font-size: 2rem;
}

.locked-preview-overlay p {
  max-width: 600px;
  margin: 0;
  color: #ded4c6;
}

.title-carousel {
  width: min(100%, 920px);
  overflow: hidden;
  padding: 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.title-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: titleScroll 55s linear infinite;
}

.title-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 196, 94, 0.34);
  border-radius: 8px;
  color: #fffaf2;
  background: rgba(8, 9, 11, 0.54);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.title-pill span {
  margin-right: 8px;
  color: var(--gold);
}

@keyframes titleScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .title-track {
    animation: none;
    transform: translateX(0);
  }
}

.locked-badge {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 196, 94, 0.55);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(8, 9, 11, 0.72);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compact-list,
.fit-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.compact-list li,
.fit-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--muted);
}

.compact-list li::before,
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--gold-strong);
}

.problem-section,
.build-section,
.faq-section {
  background: var(--bg-soft);
}

.transformation-section {
  background:
    linear-gradient(180deg, rgba(255, 196, 94, 0.12), rgba(255, 250, 242, 0) 54%),
    var(--bg);
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.transformation-panel {
  position: relative;
  padding: 32px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(64, 43, 16, 0.08);
}

.before-panel {
  border-color: rgba(185, 28, 28, 0.42);
  background:
    linear-gradient(180deg, rgba(185, 28, 28, 0.14), rgba(255, 255, 255, 0) 62%),
    #ffffff;
}

.after-panel {
  border-color: rgba(22, 101, 52, 0.42);
  background:
    linear-gradient(180deg, rgba(22, 163, 74, 0.16), rgba(255, 255, 255, 0) 62%),
    #ffffff;
}

.before-panel::after,
.after-panel::after {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 950;
  line-height: 1;
  opacity: 0.95;
}

.before-panel::after {
  content: "×";
  background: #b91c1c;
  box-shadow: 0 14px 34px rgba(185, 28, 28, 0.22);
}

.after-panel::after {
  content: "✓";
  background: #166534;
  box-shadow: 0 14px 34px rgba(22, 101, 52, 0.22);
}

.panel-label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(242, 167, 32, 0.4);
  border-radius: 8px;
  color: #14110a;
  background: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.before-panel .panel-label {
  color: #ffffff;
  border-color: rgba(185, 28, 28, 0.26);
  background: #b91c1c;
}

.after-panel .panel-label {
  color: #ffffff;
  border-color: rgba(22, 101, 52, 0.26);
  background: #166534;
}

.transformation-panel ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.transformation-panel li {
  position: relative;
  min-height: 44px;
  padding: 11px 12px 11px 44px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
}

.transformation-panel li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
  background: var(--gold);
}

.before-panel li::before {
  content: "×";
  background: #dc2626;
}

.after-panel li::before {
  content: "✓";
  background: #16a34a;
}

.before-panel li {
  border: 1px solid rgba(185, 28, 28, 0.12);
}

.after-panel li {
  border: 1px solid rgba(22, 101, 52, 0.14);
}

.transformation-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.96rem;
}

.difference-section {
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.86) 48%, rgb(113 154 236 / 46%) 100%),
    url("assets/why-this-is-different.png");
  background-position: center;
  background-size: cover;
  color: #f8f2e8;
}

.difference-section .center-intro p {
  color: #c8bfb1;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.difference-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 196, 94, 0.08), rgba(255, 255, 255, 0) 54%),
    #15181e;
}

.difference-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 196, 94, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 900;
}

.difference-grid h3 {
  color: #fffaf2;
}

.difference-grid p {
  margin: 0;
  color: #c8bfb1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

.strong-line {
  color: var(--ink) !important;
  font-weight: 800;
}

.problem-list,
.deliverables {
  display: grid;
  gap: 12px;
}

.problem-list div,
.deliverables div {
  position: relative;
  min-height: 58px;
  padding: 16px 16px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #ffffff;
}

.problem-list div::before,
.deliverables div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--gold);
}

.center-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.system-section {
  overflow: hidden;
  background: var(--bg);
}

.system-head {
  margin-bottom: 24px;
}

.system-line {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
  font-size: 1.08rem;
}

.system-ticker {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.roadmap {
  display: flex;
  width: max-content;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: roadmapTicker 62s linear infinite;
}

.roadmap li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 310px;
  min-height: 86px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(64, 43, 16, 0.08);
}

.roadmap span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #14110a;
  background: var(--gold);
  font-weight: 900;
}

@keyframes roadmapTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .roadmap {
    animation: none;
  }
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading-center {
  display: block;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-center p:last-child {
  max-width: 620px;
  margin: 0 auto;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #ffffff;
}

.filter-button:hover,
.filter-button.is-active {
  color: #14110a;
  border-color: var(--gold);
  background: var(--gold);
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 324px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 196, 94, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--bg-panel);
  box-shadow: 0 18px 38px rgba(64, 43, 16, 0.08);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.episode-card:hover,
.episode-card:focus-visible {
  border-color: rgba(255, 196, 94, 0.55);
  background: #fffaf2;
  transform: translateY(-2px);
}

.episode-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--bronze));
}

.episode-card::after {
  content: attr(data-part);
  position: absolute;
  right: 18px;
  top: 4px;
  color: rgba(24, 19, 12, 0.045);
  font-size: 5rem;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.episode-card.is-featured {
  border-color: rgba(242, 167, 32, 0.55);
  box-shadow: 0 24px 60px rgba(242, 167, 32, 0.16);
}

.episode-card[data-hidden="true"] {
  display: none;
}

.episode-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.episode-part {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.episode-stage {
  color: var(--muted-2);
  font-size: 0.8rem;
}

.episode-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.28rem;
}

.episode-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.94rem;
}

.episode-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
}

.duration {
  color: var(--muted-2);
  font-size: 0.84rem;
}

.episode-play {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(242, 167, 32, 0.65);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 12px 26px rgba(242, 167, 32, 0.24);
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.episode-play::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(242, 167, 32, 0.42);
  border-radius: inherit;
  opacity: 0;
}

.episode-card:hover .episode-play,
.episode-play:hover {
  background: #ffd47f;
  transform: scale(1.05);
}

.episode-play.is-live::after,
.episode-card:hover .episode-play::after {
  animation: playPulse 1.45s ease-out infinite;
}

.play-symbol {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #14110a;
}

@keyframes playPulse {
  0% {
    opacity: 0.85;
    transform: scale(0.82);
  }

  100% {
    opacity: 0;
    transform: scale(1.38);
  }
}

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

.toolkit-section {
  background:
    linear-gradient(180deg, rgba(255, 196, 94, 0.13), rgba(255, 255, 255, 0) 62%),
    var(--bg);
}

.toolkit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: center;
}

.toolkit-panel {
  display: grid;
  gap: 14px;
}

.toolkit-feature {
  position: relative;
  padding: 22px 22px 22px 94px;
  border: 1px solid rgba(255, 196, 94, 0.24);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(64, 43, 16, 0.07);
}

.toolkit-feature span {
  position: absolute;
  left: 22px;
  top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 9px;
  border: 1px solid rgba(242, 167, 32, 0.48);
  border-radius: 8px;
  color: #14110a;
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.toolkit-feature h3 {
  margin-bottom: 7px;
}

.toolkit-feature p {
  margin: 0;
  color: var(--muted);
}

.hosts-section {
  border-top: 2px solid #f6b263;
  border-bottom: 2px solid #f6b263;
  background: #0b0d10;
  color: #f8f2e8;
}

.hosts-section .center-intro p,
.hosts-section .host-panel p:not(.host-role),
.hosts-section .shared-line {
  color: #c8bfb1;
}

.host-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.host-panel {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 196, 94, 0.22);
  border-radius: 8px;
  background: #15181e;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.host-panel img {
  width: 92px;
  height: 92px;
  border: 2px solid rgba(255, 196, 94, 0.52);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.host-panel:hover {
  border-color: rgba(255, 196, 94, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 196, 94, 0.96), rgba(255, 248, 232, 0.98));
  color: #14110a;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 196, 94, 0.38);
  transform: translateY(-3px);
}

.host-panel:nth-child(2):hover {
  background:
    linear-gradient(225deg, rgba(255, 196, 94, 0.96), rgba(255, 248, 232, 0.98));
}

.host-panel:hover img {
  border-color: rgba(20, 17, 10, 0.78);
  box-shadow:
    0 16px 34px rgba(20, 17, 10, 0.24),
    0 0 0 5px rgba(255, 255, 255, 0.48);
  transform: scale(1.03);
}

.host-panel:hover .host-role {
  color: #4f3200;
}

.host-panel:hover h3,
.host-panel:hover p:not(.host-role) {
  color: #14110a;
}

.host-panel:first-child img {
  object-position: center;
}

.host-panel:nth-child(2) img {
  object-position: center;
}

.host-role {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.host-heading h3 {
  margin-bottom: 10px;
}

.host-panel p:not(.host-role),
.shared-line {
  color: var(--muted);
}

.shared-line {
  max-width: 860px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 1.08rem;
}

.testimonials-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0), rgba(255, 196, 94, 0.08)),
    var(--bg-soft);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.proof-card {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(24, 19, 12, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(64, 43, 16, 0.08);
}

.platform-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  color: #0a66c2;
  border-bottom: 1px solid #e6e8eb;
  background: #ffffff;
  font-weight: 900;
}

.platform-mark {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  color: #ffffff;
  background: #0a66c2;
  font-weight: 950;
  line-height: 1;
}

.linkedin-post,
.facebook-post {
  padding: 18px;
}

.profile-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.profile-row > div:last-child {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.profile-row strong {
  color: #1f2328;
  font-size: 0.96rem;
}

.profile-row span,
.profile-row small {
  color: #656d76;
  font-size: 0.78rem;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 950;
}

.avatar-blue {
  background: #0a66c2;
}

.avatar-green {
  background: #128c7e;
}

.avatar-navy {
  background: #1877f2;
}

.avatar-gradient {
  background: linear-gradient(135deg, #feda75, #fa7e1e 32%, #d62976 62%, #4f5bd5);
}

.linkedin-post p,
.facebook-post p {
  margin: 0;
  color: #1f2328;
  font-size: 0.96rem;
  line-height: 1.52;
}

.linkedin-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-bottom: 10px;
  color: #656d76;
  border-bottom: 1px solid #e6e8eb;
  font-size: 0.78rem;
}

.linkedin-buttons,
.facebook-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  padding-top: 10px;
  color: #656d76;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.facebook-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #e6e8eb;
}

.linkedin-buttons span,
.facebook-actions span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
}

.linkedin-buttons span:hover,
.facebook-actions span:hover {
  background: #f3f4f6;
}

.whatsapp-proof {
  padding: 14px;
  background: #d9fdd3;
}

.phone-shell {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(18, 140, 126, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34) 25%, transparent 25%) 0 0 / 28px 28px,
    #efeae2;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 10px 14px;
  color: #ffffff;
  background: #075e54;
}

.chat-header div:last-child {
  display: grid;
  line-height: 1.25;
}

.chat-header span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.chat-window {
  display: grid;
  gap: 10px;
  padding: 22px 14px 16px;
}

.chat-bubble {
  max-width: 86%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  color: #111b21;
  font-size: 0.94rem;
  line-height: 1.42;
  box-shadow: 0 1px 1px rgba(17, 27, 33, 0.12);
}

.chat-bubble.inbound {
  justify-self: start;
  background: #ffffff;
}

.chat-bubble.outbound {
  justify-self: end;
  background: #d9fdd3;
}

.chat-time {
  justify-self: center;
  margin: 6px 0 0;
  padding: 5px 9px;
  border-radius: 999px;
  color: #54656f;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.facebook-bar {
  color: #1877f2;
}

.facebook-bar .platform-mark {
  background: #1877f2;
  font-size: 1.25rem;
}

.facebook-post {
  background: #ffffff;
}

.facebook-thread {
  display: grid;
  gap: 3px;
  margin: 16px 0;
  padding: 12px;
  border-radius: 8px;
  color: #1c1e21;
  background: #f0f2f5;
  font-size: 0.9rem;
}

.facebook-thread span {
  color: #65676b;
}

.instagram-proof {
  padding: 14px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #feda75, #fa7e1e 28%, #d62976 58%, #4f5bd5) border-box;
  border: 2px solid transparent;
}

.instagram-shell {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  background: #ffffff;
}

.instagram-top {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  border-bottom: 1px solid #dbdbdb;
  color: #262626;
  text-align: center;
}

.instagram-top span {
  width: 18px;
  height: 18px;
  border: 2px solid #262626;
  border-radius: 999px;
}

.instagram-top span:last-child {
  justify-self: end;
  border-radius: 5px;
}

.dm-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: end;
  padding: 18px 14px 0;
}

.dm-row p {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid #efefef;
  border-radius: 18px 18px 18px 5px;
  color: #262626;
  background: #ffffff;
  font-size: 0.94rem;
  line-height: 1.42;
}

.dm-row-reply {
  display: flex;
  justify-content: flex-end;
}

.dm-row-reply p {
  max-width: 86%;
  color: #ffffff;
  border-color: #3797f0;
  border-radius: 18px 18px 5px 18px;
  background: #3797f0;
}

.instagram-input {
  min-height: 42px;
  margin: auto 14px 14px;
  padding: 10px 13px;
  border: 1px solid #dbdbdb;
  border-radius: 999px;
  color: #8e8e8e;
  font-size: 0.88rem;
}

.fit-section {
  background: var(--bg);
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.persona-card {
  position: relative;
  min-height: 286px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 196, 94, 0.08), rgba(255, 255, 255, 0) 52%),
    #ffffff;
  box-shadow: 0 16px 34px rgba(64, 43, 16, 0.07);
}

.persona-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid rgba(242, 167, 32, 0.48);
  border-radius: 999px;
  color: #14110a;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
}

.persona-card h3 {
  font-size: 1.08rem;
}

.persona-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.not-for-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.fit-list.positive li::before {
  background: var(--gold-strong);
}

.fit-list.caution li::before {
  background: var(--gold);
}

.included-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0), rgba(255, 196, 94, 0.1)),
    var(--bg-soft);
}

.included-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.included-header p:last-child {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.05rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.included-card {
  position: relative;
  min-height: 314px;
  padding: 24px;
  border: 1px solid rgba(24, 19, 12, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(64, 43, 16, 0.08);
}

.included-card-featured {
  grid-column: span 2;
  color: #f8f2e8;
  border-color: rgba(255, 196, 94, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 196, 94, 0.16), rgba(255, 255, 255, 0) 58%),
    #0b0d10;
}

.included-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 314px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("assets/what-is-included.png");
  background-position: center;
  background-size: cover;
}

.included-card-cta h3 {
  max-width: 560px;
  font-size: 2rem;
}

.included-card-cta p {
  max-width: 600px;
}

.included-card-cta .button {
  width: fit-content;
  margin-top: 10px;
}

.included-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 10px;
  border: 1px solid rgba(242, 167, 32, 0.46);
  border-radius: 8px;
  color: #14110a;
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.included-card h3 {
  margin-bottom: 10px;
}

.included-card p {
  color: var(--muted);
}

.included-card-featured p {
  color: #d7cdbf;
}

.included-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.included-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.93rem;
}

.included-card-featured li {
  color: #ded4c6;
}

.included-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold);
}

.how-section {
  background: url("assets/how-it-works.png");
  background-position: center;
  background-size: cover;
  color: #f8f2e8;
}

.how-section .center-intro p {
  color: #c8bfb1;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  list-style: none;
  background: #15181e;
}

.how-steps li {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 196, 94, 0.08), rgba(255, 255, 255, 0) 52%),
    #15181e;
}

.how-steps li:last-child {
  border-right: 0;
}

.how-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 196, 94, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 950;
}

.how-steps h3 {
  color: #fffaf2;
}

.how-steps p {
  margin: 0;
  color: #c8bfb1;
}

.scroll-cue {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 30px auto 0;
  border: 1px solid rgba(255, 196, 94, 0.55);
  border-radius: 999px;
  background: rgba(255, 196, 94, 0.08);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    0 0 0 0 rgba(255, 196, 94, 0.18);
  animation: scrollCuePulse 1.8s ease-in-out infinite;
}

.scroll-cue span {
  display: block;
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollCueArrow 1.25s ease-in-out infinite;
}

.scroll-cue:hover {
  border-color: var(--gold);
  background: rgba(255, 196, 94, 0.16);
}

@keyframes scrollCuePulse {
  0%,
  100% {
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.24),
      0 0 0 0 rgba(255, 196, 94, 0);
  }

  50% {
    box-shadow:
      0 16px 38px rgba(0, 0, 0, 0.3),
      0 0 0 9px rgba(255, 196, 94, 0.12);
  }
}

@keyframes scrollCueArrow {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-2px) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(4px) rotate(45deg);
  }
}

.access-section {
  padding-bottom: 92px;
  border-top: 2px solid #f6b263;
  border-bottom: 2px solid #f6b263;
  background:
    linear-gradient(0deg, rgba(255, 196, 94, 0.18), rgba(255, 196, 94, 0.18)),
    var(--bg);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 42px;
  align-items: center;
}

.access-form {
  position: relative;
  isolation: isolate;
  padding: 24px;
  border: 2px solid rgba(242, 167, 32, 0.7);
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 28px 76px rgba(64, 43, 16, 0.22),
    0 0 0 8px rgba(255, 196, 94, 0.16),
    0 0 42px rgba(255, 196, 94, 0.18);
  animation: accessFormGlow 1.8s ease-in-out infinite;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.access-form::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 34%),
    radial-gradient(circle at 80% 15%, rgba(255, 196, 94, 0.42), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(20, 17, 10, 0.24), transparent 44%);
  opacity: 0.8;
  filter: blur(10px);
  animation: accessFormHalo 1.8s ease-in-out infinite;
  pointer-events: none;
}

.access-form:focus-within {
  border-color: rgba(255, 196, 94, 0.86);
  box-shadow:
    0 34px 86px rgba(64, 43, 16, 0.28),
    0 0 0 9px rgba(255, 196, 94, 0.24),
    0 0 56px rgba(255, 196, 94, 0.26);
}

.access-form label {
  display: block;
  margin-bottom: 14px;
  font-weight: 850;
}

.checkout-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.checkout-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.checkout-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--gold-strong);
}

.form-row {
  display: flex;
  gap: 10px;
}

.name-row {
  margin-bottom: 10px;
}

.access-form .button-primary {
  animation: formCtaPulse 1.8s ease-in-out infinite;
}

.form-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
}

.form-row input::placeholder {
  color: var(--muted-2);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes formCtaPulse {
  0%,
  100% {
    box-shadow:
      0 12px 32px rgba(242, 167, 32, 0.18),
      0 0 0 0 rgba(255, 196, 94, 0);
    transform: translateY(0);
  }

  50% {
    box-shadow:
      0 14px 34px rgba(242, 167, 32, 0.26),
      0 0 0 6px rgba(255, 196, 94, 0.22);
    transform: translateY(-1px);
  }
}

@keyframes accessFormGlow {
  0%,
  100% {
    border-color: rgba(242, 167, 32, 0.86);
    box-shadow:
      0 28px 76px rgba(64, 43, 16, 0.22),
      0 0 0 8px rgba(255, 196, 94, 0.17),
      0 0 44px rgba(255, 196, 94, 0.2);
  }

  33% {
    border-color: rgba(20, 17, 10, 0.74);
    box-shadow:
      0 30px 78px rgba(20, 17, 10, 0.24),
      0 0 0 8px rgba(20, 17, 10, 0.1),
      0 0 38px rgba(20, 17, 10, 0.12);
  }

  66% {
    border-color: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 30px 80px rgba(64, 43, 16, 0.2),
      0 0 0 8px rgba(255, 255, 255, 0.72),
      0 0 48px rgba(255, 255, 255, 0.72);
  }
}

@keyframes accessFormHalo {
  0%,
  100% {
    opacity: 0.84;
    transform: scale(1);
  }

  33% {
    opacity: 0.58;
    transform: scale(1.015);
  }

  66% {
    opacity: 0.98;
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  .access-form,
  .access-form::before,
  .access-form .button-primary {
    animation: none;
  }
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

summary {
  min-height: 58px;
  padding: 18px 48px 18px 18px;
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.session-journey-section {
  background:
    linear-gradient(180deg, rgba(255, 196, 94, 0.1), rgba(255, 250, 242, 0) 52%),
    var(--bg);
}

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

.session-stage-card {
  position: relative;
  min-height: 282px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(64, 43, 16, 0.08);
}

.session-stage-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--bronze));
}

.session-stage-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.session-stage-meta span {
  color: var(--muted-2);
  font-size: 0.84rem;
  font-weight: 850;
}

.session-stage-meta strong {
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #14110a;
  background: var(--gold);
  font-size: 0.76rem;
  line-height: 1;
  text-transform: uppercase;
}

.session-stage-card h3 {
  max-width: 340px;
  font-size: 1.42rem;
}

.session-stage-card p {
  margin: 0;
  color: var(--muted);
}

.session-stage-card-featured {
  color: #f8f2e8;
  border-color: rgba(255, 196, 94, 0.4);
  background:
    linear-gradient(145deg, rgba(255, 196, 94, 0.16), rgba(255, 255, 255, 0) 58%),
    #0b0d10;
}

.session-stage-card-featured h3 {
  color: #fffaf2;
}

.session-stage-card-featured p {
  margin-bottom: 22px;
  color: #d7cdbf;
}

.session-stage-card-featured .session-stage-meta span {
  color: #c8bfb1;
}

.final-cta-section {
  padding-top: 0 !important;
  background: var(--bg-soft);
}

.final-cta-box {
  position: relative;
  padding: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 94, 0.28);
  border-radius: 8px;
  color: #f8f2e8;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.86) 48%, rgba(8, 9, 11, 0.46) 100%),
    url("assets/cta-footer.png");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.final-cta-box h2 {
  max-width: 760px;
  color: #fffaf2;
}

.final-cta-box p:not(.section-kicker) {
  max-width: 760px;
  color: #d7cdbf;
  font-size: 1.08rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.final-cta-box .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fffaf2;
  background: rgba(255, 255, 255, 0.08);
}

.final-cta-box .button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.offer-page section {
  padding: 76px 0;
}

.offer-decision-section {
  padding: 54px 0 34px !important;
  color: #f8f2e8;
  background:
    linear-gradient(135deg, rgba(255, 196, 94, 0.1), rgba(255, 255, 255, 0) 42%),
    #08090b;
}

.offer-decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 34px;
  align-items: center;
}

.offer-decision-copy {
  max-width: 760px;
}

.offer-decision-copy h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fffaf2;
  font-size: 3.15rem;
  line-height: 1.02;
}

.offer-decision-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #d7cdbf;
  font-size: 1.1rem;
}

.offer-recommendation {
  padding: 24px;
  border: 1px solid rgba(255, 196, 94, 0.34);
  border-radius: 8px;
  background: #15181e;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.offer-panel-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 8px;
  color: #14110a;
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-recommendation h2 {
  color: #fffaf2;
  font-size: 1.7rem;
}

.offer-recommendation p {
  margin: 0 0 20px;
  color: #d7cdbf;
}

.offer-recommendation .button {
  width: 100%;
}

.offer-choice-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.offer-choice-strip span {
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 196, 94, 0.26);
  border-radius: 8px;
  color: #f8f2e8;
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 850;
}

.offers-section {
  padding-top: 58px !important;
  background:
    linear-gradient(180deg, rgba(255, 196, 94, 0.1), rgba(255, 250, 242, 0) 48%),
    var(--bg);
}

.offer-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: end;
  margin-bottom: 26px;
}

.offer-section-head h2 {
  margin-bottom: 0;
}

.offer-section-head p:last-child {
  margin: 0;
  color: var(--muted);
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 520px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(64, 43, 16, 0.08);
}

.offer-card-featured {
  color: #f8f2e8;
  border-color: rgba(255, 196, 94, 0.62);
  background:
    linear-gradient(160deg, rgba(255, 196, 94, 0.16), rgba(255, 255, 255, 0) 52%),
    #0b0d10;
  box-shadow: 0 28px 70px rgba(64, 43, 16, 0.24);
}

.offer-card-ribbon {
  position: static;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #14110a;
  background: var(--gold);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(255, 196, 94, 0);
  animation: bestSellerGlow 1.8s ease-in-out infinite;
}

@keyframes bestSellerGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(255, 196, 94, 0),
      0 0 0 0 rgba(255, 196, 94, 0);
    transform: translateY(0);
  }

  50% {
    box-shadow:
      0 0 0 5px rgba(255, 196, 94, 0.18),
      0 0 20px rgba(255, 196, 94, 0.44);
    transform: translateY(-1px);
  }
}

.offer-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.offer-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 167, 32, 0.48);
  border-radius: 999px;
  color: #14110a;
  background: var(--gold);
  font-weight: 950;
}

.offer-type {
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-card-featured .offer-type {
  color: var(--gold);
}

.offer-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.offer-card p,
.offer-card li,
.offer-best-for {
  color: var(--muted);
}

.offer-card-featured p,
.offer-card-featured li,
.offer-card-featured .offer-best-for {
  color: #d7cdbf;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.offer-price span {
  color: var(--ink);
  font-size: 2.7rem;
  font-weight: 950;
  line-height: 1;
}

.offer-price small {
  color: var(--muted-2);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.offer-card-featured .offer-price span {
  color: #fffaf2;
}

.offer-card-featured .offer-price small {
  color: var(--gold);
}

.offer-card-summary {
  margin-bottom: 18px;
}

.offer-best-for {
  margin-bottom: 18px;
  padding: 13px;
  border: 1px solid rgba(255, 196, 94, 0.26);
  border-radius: 8px;
  background: rgba(255, 196, 94, 0.1);
  font-size: 0.91rem;
  font-weight: 760;
}

.offer-card-featured .offer-best-for {
  background: rgba(255, 196, 94, 0.12);
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 23px;
  font-size: 0.94rem;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold);
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.offer-selection-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.94rem;
}

.comparison-section {
  background: var(--bg-soft);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(64, 43, 16, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table th {
  color: #14110a;
  background: rgba(255, 196, 94, 0.22);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.comparison-table th:nth-child(4),
.comparison-table td:nth-child(4) {
  background: rgba(255, 196, 94, 0.12);
  font-weight: 850;
}

.comparison-table td {
  color: var(--muted);
}

.comparison-table td:first-child {
  color: var(--ink);
  font-weight: 850;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.best-seller-section {
  color: #f8f2e8;
  background: #0b0d10;
}

.best-seller-section .section-copy p:not(.section-kicker) {
  color: #c8bfb1;
}

.best-seller-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: center;
}

.best-seller-grid h2 {
  color: #fffaf2;
}

.best-seller-stack {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.best-seller-stack div {
  display: grid;
  place-items: center;
  min-height: 106px;
  padding: 12px;
  border: 1px solid rgba(255, 196, 94, 0.34);
  border-radius: 8px;
  color: #fffaf2;
  background:
    linear-gradient(180deg, rgba(255, 196, 94, 0.12), rgba(255, 255, 255, 0) 62%),
    #15181e;
  text-align: center;
  font-weight: 850;
}

.offer-faq-section {
  background: var(--bg);
}

.delivery-hero-section {
  padding-top: 104px;
  background:
    linear-gradient(135deg, rgba(255, 196, 94, 0.16), rgba(255, 250, 242, 0) 48%),
    var(--bg);
}

.delivery-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: 36px;
}

.delivery-copy {
  max-width: 820px;
}

.delivery-copy h1 {
  color: var(--ink);
}

.delivery-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.delivery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.delivery-note {
  max-width: 700px;
  font-size: 0.95rem !important;
}

.delivery-access-panel,
.delivery-support-card {
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.delivery-access-panel h2,
.delivery-support-card h3 {
  margin-bottom: 16px;
}

.delivery-access-panel ol {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.delivery-access-panel li {
  margin-bottom: 12px;
  padding-left: 4px;
}

.drive-contents-section {
  background: var(--bg-soft);
}

.drive-folder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.drive-folder-grid article {
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(64, 43, 16, 0.08);
}

.drive-folder-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #14110a;
  background: var(--gold);
  font-weight: 950;
}

.drive-folder-grid p,
.delivery-support-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.delivery-help-section {
  background: var(--bg);
}

.delivery-help-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.52fr);
  align-items: center;
  gap: 32px;
}

.site-footer {
  padding: 34px 0;
  border-top: 2px solid #ffc45e;
  background: #050607;
  color: #f8f2e8;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
}

.footer-brand-block {
  max-width: 430px;
}

.footer-logo {
  width: 158px;
  height: auto;
  margin-bottom: 12px;
}

.footer-grid p,
.footer-disclaimer {
  margin: 0;
  color: #c8bfb1;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #c8bfb1;
}

.footer-grid nav a:hover {
  color: var(--gold);
}

.footer-cta {
  min-width: 132px;
}

.review-toast {
  position: fixed;
  z-index: 70;
  left: 18px;
  bottom: 18px;
  width: min(390px, calc(100vw - 36px));
  transform: translateX(calc(-100% - 24px));
  opacity: 0;
  pointer-events: none;
  transition:
    transform 420ms ease,
    opacity 320ms ease;
}

.review-toast.is-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.review-toast-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 42px 13px 13px;
  border: 1px solid rgba(255, 196, 94, 0.32);
  border-radius: 8px;
  color: #18130c;
  background:
    linear-gradient(135deg, rgba(255, 196, 94, 0.16), rgba(255, 255, 255, 0) 36%),
    rgba(255, 250, 242, 0.96);
  box-shadow:
    0 24px 70px rgba(20, 17, 10, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.62) inset;
  text-decoration: none;
  backdrop-filter: blur(16px);
}

.review-toast-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
}

.review-toast-content {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.review-toast-eyebrow {
  color: #9b6419;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-toast-content strong {
  color: #18130c;
  font-size: 0.94rem;
  line-height: 1.2;
}

.review-toast-role {
  color: #6b5d4b;
  font-size: 0.78rem;
  line-height: 1.2;
}

.review-toast-summary {
  margin-top: 5px;
  color: #34291b;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.32;
}

.review-toast-quote {
  display: -webkit-box;
  overflow: hidden;
  color: #5f5547;
  font-size: 0.8rem;
  line-height: 1.36;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.review-toast-close {
  position: absolute;
  top: 9px;
  right: 9px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(24, 19, 12, 0.12);
  border-radius: 999px;
  color: #6b5d4b;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.review-toast-close:hover {
  color: #18130c;
  background: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .review-toast {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    gap: 10px;
  }

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

  .host-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-hook {
    font-size: 1.55rem;
  }

  .offer-decision-copy h1 {
    font-size: 2.9rem;
  }

  .best-seller-stack {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    width: 100vw;
    max-width: 100vw;
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 10px 18px;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    z-index: 60;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100vh - 92px);
    overflow: auto;
    padding: 16px;
    border: 1px solid rgba(255, 196, 94, 0.5);
    border-radius: 8px;
    background: rgba(8, 9, 11, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  }

  .site-nav.is-open {
    display: flex;
    animation: mobileMenuIn 180ms ease-out;
  }

  .site-nav::before {
    content: "Navigation";
    padding: 0 2px 8px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
  }

  .site-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 1rem;
    font-weight: 820;
  }

  .site-nav a:hover {
    border-color: rgba(255, 196, 94, 0.4);
    background: rgba(255, 196, 94, 0.1);
  }

  .site-nav a[href="#access"]:not(.mobile-start-link) {
    display: none;
  }

  .site-nav .mobile-start-link {
    display: inline-flex;
    justify-content: center;
    min-height: 52px;
    margin-top: 8px;
    border: 1px solid rgba(255, 196, 94, 0.85);
    border-radius: 8px;
    color: #14110a !important;
    background: var(--gold);
    font-weight: 850;
    box-shadow: 0 12px 32px rgba(242, 167, 32, 0.2);
  }

  .menu-button span:not(.sr-only) {
    transition:
      transform 160ms ease,
      opacity 160ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @keyframes mobileMenuIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-media {
    position: relative;
    height: 250px;
    background-position: 70% center;
    opacity: 1;
    filter: brightness(0.86) saturate(0.95) contrast(1.04);
    transform: none;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(8, 9, 11, 1) 0%, rgba(8, 9, 11, 0.1) 34%, rgba(8, 9, 11, 0.28) 100%);
  }

  .hero-content {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    padding: 30px 0 34px;
  }

  .hero-content > *,
  .section-shell,
  .section-copy,
  .center-intro,
  .offer-decision-copy,
  .offer-section-head,
  .included-header,
  .final-cta-box,
  .faq-list {
    max-width: calc(100vw - 36px);
  }

  h1 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .hero h1 {
    margin-bottom: 18px;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-hook {
    font-size: 1.35rem;
  }

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

  .section-shell {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  section:not(.hero) {
    padding: 68px 0;
  }

  .player-grid,
  .split-section,
  .section-heading-row,
  .access-layout,
  .host-grid,
  .difference-grid,
  .toolkit-layout,
  .included-header,
  .transformation-grid,
  .not-for-panel,
  .session-journey-grid,
  .social-proof-grid,
  .offer-decision-grid,
  .offer-section-head,
  .best-seller-grid,
  .delivery-hero-grid,
  .delivery-help-grid {
    grid-template-columns: 1fr;
  }

  .offer-page section {
    padding: 62px 0;
  }

  .offer-decision-section {
    padding: 36px 0 26px !important;
  }

  .offer-decision-copy h1 {
    font-size: 2.1rem;
    line-height: 1.08;
  }

  .offer-decision-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

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

  .host-panel {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 18px;
  }

  .host-panel img {
    width: 72px;
    height: 72px;
  }

  .host-copy {
    display: contents;
  }

  .host-heading {
    grid-column: 2;
  }

  .host-heading h3 {
    margin-bottom: 0;
  }

  .host-role {
    margin-bottom: 5px;
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .host-description {
    grid-column: 1 / -1;
    margin: 8px 0 0;
  }

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

  .how-steps li {
    min-height: 210px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .how-steps li:nth-child(2n) {
    border-right: 0;
  }

  .how-steps li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

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

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

  .included-card-featured {
    grid-column: span 2;
  }

  .section-heading-row {
    gap: 10px;
  }

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

  .form-row {
    flex-direction: column;
  }

  .form-row .button {
    width: 100%;
  }

  .locked-preview {
    min-height: 640px;
  }

  .locked-preview img {
    position: absolute;
    top: -100px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100% + 100px);
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
  }

  .locked-preview-overlay {
    inset: 210px 0 0;
    justify-content: center;
    padding: 24px 18px;
    background: transparent;
  }

  .locked-preview-overlay h3 {
    font-size: 1.65rem;
  }

  .title-carousel {
    width: 100%;
    padding: 8px 0;
  }

  .title-track {
    animation-duration: 42s;
  }

  .title-pill {
    min-height: 32px;
    font-size: 0.78rem;
  }
}

@media (max-width: 620px) {
  .review-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .review-toast-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 38px 11px 11px;
  }

  .review-toast-avatar {
    width: 44px;
    height: 44px;
  }

  .review-toast-eyebrow {
    font-size: 0.62rem;
  }

  .review-toast-summary {
    font-size: 0.8rem;
  }

  .review-toast-quote {
    -webkit-line-clamp: 1;
  }

  .brand-logo {
    width: 132px;
  }

  h1 {
    font-size: 2.22rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-hook {
    font-size: 1.18rem;
  }

  .hero-actions,
  .filters,
  .final-cta-actions {
    flex-direction: column;
    max-width: calc(100vw - 36px);
  }

  .hero-actions > *,
  .final-cta-actions > *,
  .offer-recommendation .button,
  .offer-card .button {
    max-width: 100%;
  }

  .final-cta-box {
    padding: 30px 20px;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .review-avatar {
    width: 38px;
    height: 38px;
    margin-left: -9px;
    background-size: 342px 190px;
  }

  .button,
  .filter-button {
    width: 100%;
  }

  .button {
    min-height: 46px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.94rem;
  }

  .roadmap li {
    min-width: 270px;
  }

  .episode-grid,
  .included-grid,
  .persona-grid,
  .how-steps,
  .session-journey-grid,
  .social-proof-grid,
  .offer-cards,
  .offer-choice-strip,
  .best-seller-stack,
  .drive-folder-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: auto;
  }

  .phone-shell,
  .instagram-shell {
    min-height: 360px;
  }

  .session-stage-card {
    min-height: auto;
  }

  .session-stage-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 18px;
  }

  .offer-page section {
    padding: 48px 0;
  }

  .offer-decision-section {
    padding: 28px 0 22px !important;
  }

  .offer-decision-copy h1 {
    font-size: 1.86rem;
    line-height: 1.1;
  }

  .offer-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .offer-price span {
    font-size: 2.35rem;
  }

  .offer-card-summary {
    min-height: auto;
  }

  .best-seller-stack div {
    min-height: 70px;
  }

  .how-steps li,
  .how-steps li:nth-child(2n),
  .how-steps li:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .how-steps li:last-child {
    border-bottom: 0;
  }

  .persona-card {
    min-height: auto;
  }

  .included-card,
  .included-card-featured {
    grid-column: auto;
    min-height: auto;
  }

  .included-card-cta {
    min-height: 300px;
  }

  .included-card-cta h3 {
    font-size: 1.65rem;
  }

  .included-card-cta .button {
    width: 100%;
  }

  .episode-card {
    min-height: auto;
  }

  .episode-footer {
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid nav {
    flex-direction: column;
    gap: 12px;
  }

  .footer-cta {
    width: 100%;
  }

  .difference-grid article {
    min-height: auto;
  }

  .toolkit-feature {
    padding: 20px;
  }

  .toolkit-feature span {
    position: static;
    margin-bottom: 14px;
  }
}

@media (max-width: 420px) {
  .section-shell,
  .hero-content,
  .hero-content > *,
  .section-copy,
  .center-intro,
  .offer-decision-copy,
  .faq-list {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  h1 {
    font-size: 2rem;
    line-height: 1.06;
  }

  h2 {
    font-size: 1.55rem;
    line-height: 1.12;
  }

  .offer-decision-copy h1 {
    font-size: 1.7rem;
  }

  .hero-copy,
  .offer-decision-copy p:not(.eyebrow),
  .section-copy p,
  .center-intro p,
  .section-heading-row p {
    font-size: 0.98rem;
  }

  .button {
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 380px) {
  .button {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.84rem;
  }
}

/* Refined social proof wall */
.testimonials-section {
  position: relative;
  overflow: hidden;
  border-top: 2px solid #f6b263;
  border-bottom: 2px solid #f6b263;
  color: #f8f2e8;
  background:
    linear-gradient(180deg, rgba(255, 196, 94, 0.08), rgba(255, 255, 255, 0) 42%),
    #14110a;
}

.testimonial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 40px;
  align-items: end;
  margin-bottom: 18px;
}

.testimonial-heading p:last-child {
  color: #c8bfb1;
  font-size: 1.05rem;
}

.source-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.source-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 196, 94, 0.2);
  border-radius: 999px;
  color: #f8f2e8;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.source-tabs button:hover,
.source-tabs button.is-active {
  color: #14110a;
  border-color: rgba(255, 196, 94, 0.86);
  background: var(--gold);
  transform: translateY(-1px);
}

.source-tabs .fa-layer-group {
  color: var(--gold);
}

.source-tabs .fa-linkedin-in {
  color: #0a66c2;
}

.source-tabs .fa-whatsapp {
  color: #25d366;
}

.source-tabs .fa-facebook-f {
  color: #1877f2;
}

.source-tabs .fa-instagram {
  color: #d62976;
}

.source-tabs button:hover i,
.source-tabs button.is-active i {
  color: #14110a;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.86fr) minmax(280px, 0.94fr);
  grid-template-areas:
    "linkedin whatsapp instagram"
    "linkedin facebook instagram";
  gap: 18px;
  align-items: stretch;
}

.social-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 196, 94, 0.16);
}

.social-card.is-social-hidden {
  display: none;
}

.social-linkedin {
  grid-area: linkedin;
  background: #edf3f8;
}

.social-whatsapp {
  grid-area: whatsapp;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(37, 211, 102, 0.22), rgba(255, 255, 255, 0.78)),
    #e9fbe9;
}

.social-facebook {
  grid-area: facebook;
  background: #f0f2f5;
}

.social-instagram {
  grid-area: instagram;
  padding: 16px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, #feda75, #fa7e1e 28%, #d62976 58%, #4f5bd5) border-box;
  border: 2px solid transparent;
}

.social-window-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  gap: 7px;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid #d7dde4;
  background: #f8fafc;
}

.social-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff5f57;
}

.social-window-bar span:nth-child(2) {
  background: #febc2e;
}

.social-window-bar span:nth-child(3) {
  background: #28c840;
}

.social-window-bar strong {
  justify-self: center;
  color: #687684;
  font-size: 0.78rem;
  font-weight: 800;
}

.linkedin-ui,
.facebook-ui,
.instagram-phone {
  background: #ffffff;
}

.linkedin-ui {
  margin: 18px;
  overflow: hidden;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
}

.linkedin-ui-top,
.facebook-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid #e6e8eb;
  color: #0a66c2;
  font-weight: 950;
}

.linkedin-ui-top em,
.facebook-top em {
  margin-left: auto;
  color: #667085;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  color: #ffffff;
  font-size: 1rem;
}

.linkedin-icon {
  background: #0a66c2;
}

.whatsapp-icon {
  background: #25d366;
  color: #062f20;
}

.facebook-icon {
  background: #1877f2;
}

.instagram-icon {
  color: #ffffff;
  background: linear-gradient(145deg, #feda75, #fa7e1e 28%, #d62976 58%, #4f5bd5);
}

.social-profile-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 18px 18px 0;
}

.social-profile-row button {
  border: 0;
  color: #666;
  background: transparent;
  font-weight: 900;
}

.social-avatar,
.story-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 950;
}

.linkedin-avatar {
  background: linear-gradient(145deg, #0a66c2, #004182);
}

.facebook-avatar {
  background: linear-gradient(145deg, #1877f2, #0b5fca);
}

.social-profile-row div:nth-child(2) {
  display: grid;
  line-height: 1.22;
}

.social-profile-row strong {
  color: #1f2328;
  font-size: 0.98rem;
}

.social-profile-row span,
.social-profile-row small {
  color: #667085;
  font-size: 0.8rem;
}

.social-post-copy {
  margin: 16px 18px 0;
  color: #202124;
  font-size: 1.02rem;
  line-height: 1.55;
}

.linkedin-media-preview {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  margin: 18px;
  padding: 16px;
  border: 1px solid #d8e6f3;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 102, 194, 0.08), rgba(255, 255, 255, 0)),
    #f8fbff;
}

.linkedin-media-preview span {
  display: block;
  margin-bottom: 6px;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.linkedin-media-preview strong {
  color: #19202a;
  font-size: 0.94rem;
  line-height: 1.35;
}

.linkedin-media-preview em {
  width: 1px;
  background: #d8e6f3;
}

.engagement-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 18px;
  padding: 0 0 12px;
  border-bottom: 1px solid #e6e8eb;
  color: #667085;
  font-size: 0.82rem;
}

.engagement-row span:last-child {
  margin-left: auto;
}

.reaction-stack {
  display: flex;
}

.reaction-stack span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: -5px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: #eef6ff;
  font-size: 0.72rem;
}

.reaction-stack span:first-child {
  margin-left: 0;
}

.action-row {
  display: grid;
  gap: 4px;
  padding: 8px 16px 16px;
  color: #667085;
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.linkedin-action-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.action-row span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
}

.action-row span:hover {
  background: #f2f4f7;
}

.social-dm-panel {
  display: grid;
  gap: 10px;
  margin: 18px;
  padding: 16px;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  background: #f8fafc;
}

.messenger-panel {
  border-color: #dbeafe;
  background: #f8fbff;
}

.dm-bubble {
  max-width: 88%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  color: #1f2328;
  font-size: 0.92rem;
  line-height: 1.42;
}

.dm-bubble.received {
  justify-self: start;
  border-bottom-left-radius: 5px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(24, 19, 12, 0.08);
}

.dm-bubble.sent {
  justify-self: end;
  color: #ffffff;
  border-bottom-right-radius: 5px;
  background: #0a66c2;
}

.messenger-panel .dm-bubble.sent {
  background: #1877f2;
}

.linkedin-comment-strip {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  margin: 0 18px 18px;
  padding: 14px;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.mini-comment-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #ffffff;
  background: #38434f;
  font-weight: 950;
}

.guide-comment-avatar {
  overflow: hidden;
  border: 2px solid #ffffff;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  box-shadow: 0 5px 14px rgba(24, 19, 12, 0.14);
}

.guide-comment-avatar.is-elena {
  background-image: url("assets/elena.png");
}

.guide-comment-avatar.is-david {
  background-image: url("assets/david.png");
}

.linkedin-comment-strip p {
  margin: 0;
  color: #38434f;
  font-size: 0.9rem;
  line-height: 1.42;
}

.linkedin-comment-strip strong {
  color: #202124;
}

.phone-device {
  width: min(100%, 310px);
  padding: 12px;
  border-radius: 30px;
  background: #111b21;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 50px rgba(17, 27, 33, 0.22);
}

.phone-speaker {
  width: 64px;
  height: 5px;
  margin: 2px auto 10px;
  border-radius: 999px;
  background: #2a3942;
}

.whatsapp-ui {
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36) 25%, transparent 25%) 0 0 / 28px 28px,
    #efeae2;
}

.whatsapp-header {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 10px 12px;
  color: #ffffff;
  background: #075e54;
}

.whatsapp-header div {
  display: grid;
  line-height: 1.18;
}

.whatsapp-header span,
.whatsapp-header small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
}

.whatsapp-chat {
  display: grid;
  gap: 10px;
  padding: 18px 12px 12px;
}

.chat-notice {
  justify-self: center;
  max-width: 210px;
  margin: 0 0 4px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #54656f;
  background: rgba(255, 248, 220, 0.92);
  font-size: 0.68rem;
  line-height: 1.25;
  text-align: center;
}

.message-bubble {
  max-width: 86%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  color: #111b21;
  box-shadow: 0 1px 1px rgba(17, 27, 33, 0.12);
  font-size: 0.93rem;
  line-height: 1.42;
}

.message-bubble.received {
  justify-self: start;
  background: #ffffff;
}

.message-bubble.sent {
  justify-self: end;
  background: #d9fdd3;
}

.message-bubble span {
  display: block;
  margin-top: 4px;
  color: #667781;
  font-size: 0.68rem;
  text-align: right;
}

.whatsapp-input,
.instagram-reply {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 12px;
  border-radius: 999px;
  color: #8696a0;
  background: #ffffff;
  font-size: 0.82rem;
}

.whatsapp-input strong {
  color: #00a884;
  font-size: 1.25rem;
}

.facebook-ui {
  min-height: 100%;
  overflow: hidden;
}

.facebook-top {
  color: #1877f2;
}

.comment-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 16px 18px 0;
  padding: 13px;
  border-radius: 14px;
  color: #1c1e21;
  background: #f0f2f5;
  font-size: 0.92rem;
}

.comment-card .mini-comment-avatar {
  width: 34px;
  height: 34px;
}

.comment-card span {
  color: #65676b;
  line-height: 1.42;
}

.comment-card strong {
  display: block;
  color: #1c1e21;
}

.instagram-phone {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
}

.instagram-header {
  display: grid;
  grid-template-columns: 32px 1fr 22px;
  gap: 10px;
  align-items: center;
  min-height: 56px;
  padding: 0 14px;
  border-bottom: 1px solid #efefef;
  color: #262626;
  text-align: center;
}

.instagram-header span {
  justify-self: end;
  width: 18px;
  height: 18px;
  border: 2px solid #262626;
  border-radius: 6px;
}

.instagram-thread {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: end;
  padding: 22px 14px 12px;
}

.story-avatar {
  align-self: start;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(145deg, #feda75, #fa7e1e 28%, #d62976 58%, #4f5bd5) border-box;
  border: 3px solid transparent;
  color: #d62976;
}

.ig-bubble {
  grid-column: 2;
  max-width: 92%;
  margin: 0;
  padding: 12px 14px;
  font-size: 0.94rem;
  line-height: 1.42;
  overflow-wrap: normal;
  word-break: normal;
}

.ig-bubble.received {
  justify-self: start;
  border: 1px solid #efefef;
  border-radius: 20px 20px 20px 6px;
  color: #262626;
  background: #ffffff;
}

.ig-bubble.sent {
  justify-self: end;
  border-radius: 20px 20px 6px 20px;
  color: #ffffff;
  background: #3797f0;
}

.ig-voice-note {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  width: 160px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #efefef;
}

.ig-voice-note span {
  width: 4px;
  border-radius: 999px;
  background: #8e8e8e;
}

.ig-voice-note span:nth-child(1) {
  height: 10px;
}

.ig-voice-note span:nth-child(2) {
  height: 18px;
}

.ig-voice-note span:nth-child(3) {
  height: 13px;
}

.ig-voice-note span:nth-child(4) {
  height: 23px;
}

.ig-voice-note span:nth-child(5) {
  height: 12px;
}

.instagram-reply {
  margin: auto 14px 14px;
  border: 1px solid #dbdbdb;
}

@media (max-width: 1080px) {
  .social-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "linkedin whatsapp"
      "facebook instagram";
  }

  .social-linkedin {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .testimonial-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 620px) {
  .source-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .source-tabs button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    justify-content: center;
    gap: 0;
    border-radius: 999px;
    font-size: 0;
  }

  .source-tabs button i {
    font-size: 1rem;
  }

  .social-proof-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "linkedin"
      "whatsapp"
      "facebook"
      "instagram";
  }

  .linkedin-ui {
    margin: 12px;
  }

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

  .linkedin-media-preview em {
    width: auto;
    height: 1px;
  }

  .social-profile-row {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    padding: 16px 14px 0;
  }

  .social-post-copy,
  .comment-card,
  .linkedin-media-preview,
  .engagement-row {
    margin-right: 14px;
    margin-left: 14px;
  }

  .phone-device {
    width: 100%;
  }
}

/* Continuous social proof marquee */
.social-proof-marquee {
  --social-proof-fade: 12%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 8px 0 20px;
  background: #14110a;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--social-proof-fade),
    #000 calc(100% - var(--social-proof-fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--social-proof-fade),
    #000 calc(100% - var(--social-proof-fade)),
    transparent 100%
  );
}

.social-proof-marquee .social-proof-grid {
  display: flex !important;
  width: max-content;
  grid-template-areas: none !important;
  grid-template-columns: none !important;
  gap: 18px;
  align-items: stretch;
  padding: 0 18px;
  animation: socialProofMarquee 58s linear infinite;
  will-change: transform;
}

.social-proof-marquee:hover .social-proof-grid {
  animation-play-state: paused;
}

.social-proof-marquee .social-card {
  flex: 0 0 380px;
  min-height: 620px;
}

.social-proof-marquee .social-linkedin {
  flex-basis: 470px;
}

.social-proof-marquee .social-whatsapp {
  flex-basis: 360px;
}

.social-proof-marquee .social-facebook {
  flex-basis: 370px;
}

.social-proof-marquee .social-instagram {
  flex-basis: 390px;
}

@keyframes socialProofMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.avatar-photo {
  overflow: hidden;
  border: 2px solid #ffffff;
  background-image: url("assets/reviews.png");
  background-repeat: no-repeat;
  background-size: 900% 500%;
  box-shadow: 0 8px 20px rgba(20, 17, 10, 0.16);
}

.avatar-photo-03 {
  background-position: 25% 0;
}

.avatar-photo-08 {
  background-position: 87.5% 0;
}

.avatar-photo-14 {
  background-position: 50% 25%;
}

.avatar-photo-17 {
  background-position: 87.5% 25%;
}

.avatar-photo-18 {
  background-position: 100% 25%;
}

.avatar-photo-21 {
  background-position: 25% 50%;
}

.avatar-photo-35 {
  background-position: 87.5% 75%;
}

.whatsapp-contact-avatar {
  position: relative;
  width: 38px;
  height: 38px;
}

.whatsapp-contact-avatar::after {
  content: "\f232";
  position: absolute;
  right: -4px;
  bottom: -4px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 2px solid #075e54;
  border-radius: 999px;
  color: #ffffff;
  background: #25d366;
  font: var(--fa-font-brands);
  font-size: 0.72rem;
}

.story-avatar.avatar-photo {
  color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .social-proof-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .social-proof-marquee .social-proof-grid {
    animation: none;
    scroll-snap-type: x mandatory;
  }

  .social-proof-marquee .social-card {
    scroll-snap-align: center;
  }
}

@media (max-width: 620px) {
  .social-proof-marquee {
    --social-proof-fade: 8%;
    padding-top: 2px;
  }

  .social-proof-marquee .social-proof-grid {
    gap: 14px;
    padding: 0 14px;
    animation-duration: 48s;
  }

  .social-proof-marquee .social-card,
  .social-proof-marquee .social-linkedin,
  .social-proof-marquee .social-whatsapp,
  .social-proof-marquee .social-facebook,
  .social-proof-marquee .social-instagram {
    flex-basis: min(84vw, 340px);
    min-height: auto;
  }

  @keyframes socialProofMarquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-50% - 7px));
    }
  }
}
