@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg-top: #a7c6e7;
  --bg-mid: #c7d7e6;
  --bg-bottom: #e7dccf;
  --header-offset: 112px;
  --section-gutter: 1.25rem;
  --orange-1: #ffd287;
  --orange-2: #fba62f;
  --orange-3: #eb8714;
  --ink: #1a1615;
  --ink-soft: #4d4744;
  --ink-muted: #6d645f;
  --white: #ffffff;
  --line: rgba(26, 22, 21, 0.12);
  --radius-lg: 30px;
  --radius-xl: 42px;
  --radius-pill: 999px;
  --max-width: 1120px;
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Instrument Sans", "Segoe UI", sans-serif;
  --shadow-soft: 0 20px 60px rgba(33, 25, 22, 0.08);
  --shadow-strong: 0 30px 80px rgba(144, 72, 10, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(
      180deg,
      var(--bg-top) 0%,
      #bad0e4 22%,
      var(--bg-mid) 50%,
      var(--bg-bottom) 78%,
      #f7f5f1 78.2%,
      #f7f5f1 100%
    );
  overflow-x: hidden;
}

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

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

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

a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.15rem var(--section-gutter);
}

.header-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(33, 25, 22, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition:
    padding 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled .header-shell {
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(33, 25, 22, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: clamp(34px, 3.2vw, 42px);
  max-width: min(52vw, 242px);
  object-fit: contain;
}

.menu-toggle {
  display: none;
  position: relative;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
  align-self: center;
  justify-self: end;
  flex: 0 0 auto;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 1.08rem;
  height: 2.5px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transition:
    top 240ms ease,
    transform 240ms ease,
    opacity 240ms ease;
}

.menu-toggle span:nth-child(1) {
  top: calc(50% - 7px);
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  top: calc(50% + 5px);
  transform: translateX(-50%);
}

.header-cta {
  justify-self: end;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.7vw, 1.7rem);
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  opacity: 0.92;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.45rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    padding 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-position 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  position: relative;
  overflow: hidden;
  padding: 0.95rem 2rem 0.95rem 4.35rem;
  border-color: rgba(255, 226, 170, 0.24);
  background:
    radial-gradient(67.54% 100.03% at 50% 0%, #ffc85f 0%, #fba62f 24%, #d97a12 64%, #b95f07 100%);
  color: var(--white);
  box-shadow:
    0 6px 24px rgba(217, 122, 18, 0.24),
    0 14px 52px rgba(185, 95, 7, 0.38);
  z-index: 1;
}

.button-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -22%;
  width: 92px;
  height: 100%;
  opacity: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 28px 18px rgba(255, 255, 255, 0.42);
  transform: skewX(-20deg);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: buttonShine 2.2s linear infinite;
}

.button-primary::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  left: 1.15rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    left 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms ease,
    background-color 220ms ease;
}

.button-primary:hover {
  padding: 0.95rem 4.35rem 0.95rem 2rem;
  filter: brightness(1.1);
  box-shadow:
    0 8px 28px rgba(217, 122, 18, 0.28),
    0 18px 56px rgba(185, 95, 7, 0.44);
}

.button-primary:hover::after {
  left: calc(100% - 3.5rem);
  transform: translateY(-50%) rotate(360deg);
}

.button-small {
  min-height: 54px;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.button-hero {
  min-width: min(100%, 360px);
  margin-top: 1rem;
}

@keyframes buttonShine {
  0% {
    opacity: 0;
    left: -24%;
  }

  24% {
    opacity: 0.16;
  }

  50% {
    opacity: 0.38;
    left: 46%;
  }

  76% {
    opacity: 0.16;
  }

  100% {
    opacity: 0;
    left: 104%;
  }
}

@keyframes heroTextSheen {
  0%,
  14% {
    background-position: 140% 50%;
    opacity: 0;
  }

  28% {
    opacity: 0.9;
  }

  72% {
    opacity: 0.9;
  }

  100% {
    background-position: -48% 50%;
    opacity: 0;
  }
}

@keyframes heroIntroReveal {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translate3d(0, 34px, 0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.page {
  padding-bottom: 0;
}

.hero,
.problem,
.integration,
.feature-section,
.course-modules,
.differentials,
.included,
.audience,
.transformation,
.authority,
.testimonials,
.offer,
.scarcity,
.final-cta,
.faq {
  padding-left: var(--section-gutter);
  padding-right: var(--section-gutter);
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: calc(4rem + var(--header-offset));
  padding-bottom: 5rem;
  background:
    linear-gradient(180deg, rgba(159, 194, 228, 0.94) 0%, rgba(180, 210, 236, 0.82) 46%, rgba(201, 222, 240, 0.7) 100%);
  overflow: clip;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(236, 248, 255, 0.26), transparent 40%),
    linear-gradient(180deg, rgba(148, 188, 226, 0.46) 0%, rgba(173, 207, 236, 0.32) 48%, rgba(202, 223, 241, 0.36) 100%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  mix-blend-mode: multiply;
  filter: hue-rotate(158deg) saturate(1.45) contrast(0.9) brightness(1.12);
  transform: scale(1.08);
}

.hero-copy {
  width: min(100%, 1040px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-logo-wrap {
  width: min(100%, 640px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.5rem;
}

.hero-logo {
  width: clamp(210px, 62vw, 560px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(20, 17, 15, 0.2));
}

.hero-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 17, 15, 0.72);
  box-shadow:
    0 16px 34px rgba(20, 17, 15, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(1.08);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(255, 247, 238, 0.92);
}

h1,
.problem-title {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.07em;
}

h1 {
  width: fit-content;
  max-width: 100%;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.92;
}

h1 span,
.problem-title span {
  display: block;
}

h1 span {
  white-space: nowrap;
}

.hero-title {
  position: relative;
  width: 100%;
  text-align: center;
}

.hero-title-line {
  position: relative;
  z-index: 0;
  width: fit-content;
  padding-inline: 0.02em;
  margin-inline: auto;
  overflow: visible;
  isolation: isolate;
  color: var(--ink);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 20px 32px rgba(26, 22, 21, 0.08);
}

.hero-title-line::before {
  content: attr(data-text);
  position: absolute;
  inset: -0.03em 0 -0.09em;
  z-index: -1;
  color: rgba(251, 166, 47, 0.22);
  filter: blur(10px);
  transform: translateY(0.025em);
  opacity: 0.9;
  pointer-events: none;
}

.hero-title-line::after {
  content: attr(data-text);
  position: absolute;
  inset: -0.03em 0 -0.11em;
  z-index: 1;
  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 37%,
      rgba(255, 249, 235, 0.24) 44%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(255, 213, 128, 0.82) 54%,
      rgba(255, 255, 255, 0.16) 60%,
      rgba(255, 255, 255, 0) 68%,
      rgba(255, 255, 255, 0) 100%
    );
  background-size: 230% 100%;
  background-position: 140% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  pointer-events: none;
  animation: heroTextSheen 5.2s ease-in-out infinite;
}

.hero-subtitle {
  margin: 0;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 1.18rem;
  line-height: 1.44;
  text-wrap: balance;
}

.hero-impact {
  margin: 0;
  max-width: none;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.hero-bullets {
  list-style: none;
  width: fit-content;
  max-width: min(100%, 860px);
  margin: 0.85rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.hero-bullets li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 0;
  max-width: none;
  width: 100%;
  padding: 0.82rem 1.2rem 0.82rem 4.1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(248, 242, 232, 0.46));
  box-shadow:
    0 16px 38px rgba(44, 34, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  color: var(--ink);
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.hero-bullets li::before {
  content: "\2714";
  position: absolute;
  left: 1rem;
  top: 50%;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #8a4f09;
  font-size: 1.02rem;
  font-weight: 800;
  transform: translateY(-50%);
  box-shadow: 0 8px 20px rgba(92, 59, 19, 0.12);
}

.hero-bullets li:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 42px rgba(44, 34, 27, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-logo-wrap,
.hero-kicker,
.hero-title-line,
.hero-subtitle,
.hero-impact,
.hero-bullets li,
.button-hero {
  --intro-delay: 0ms;
  --intro-duration: 1.2s;
  opacity: 0;
  filter: blur(16px);
  transform: translate3d(0, 28px, 0);
  animation: heroIntroReveal var(--intro-duration) cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--intro-delay);
  will-change: opacity, transform, filter;
}

.hero-logo-wrap {
  --intro-delay: 20ms;
  --intro-duration: 1.02s;
}

.hero-kicker {
  --intro-delay: 170ms;
  --intro-duration: 1.05s;
}

.hero-title-line:nth-child(1) {
  --intro-delay: 180ms;
  --intro-duration: 1.26s;
}

.hero-title-line:nth-child(2) {
  --intro-delay: 320ms;
  --intro-duration: 1.3s;
}

.hero-subtitle {
  --intro-delay: 500ms;
  --intro-duration: 1.24s;
}

.hero-impact {
  --intro-delay: 660ms;
  --intro-duration: 1.18s;
}

.hero-bullets li:nth-child(1) {
  --intro-delay: 800ms;
}

.hero-bullets li:nth-child(2) {
  --intro-delay: 910ms;
}

.hero-bullets li:nth-child(3) {
  --intro-delay: 1020ms;
}

.hero-bullets li:nth-child(4) {
  --intro-delay: 1130ms;
}

.button-hero {
  --intro-delay: 1270ms;
  --intro-duration: 1.14s;
}

.problem {
  position: relative;
  padding-top: 0;
  padding-bottom: 7rem;
  background:
    linear-gradient(125deg, #ffcf7b 0%, #fba62f 48%, #e98513 100%);
  overflow: clip;
}

.problem::before,
.problem::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.problem::before {
  top: -8rem;
  right: -6rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(255, 236, 198, 0.5) 0%, rgba(255, 236, 198, 0) 68%);
  filter: blur(10px);
}

.problem::after {
  bottom: -10rem;
  left: -8rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(176, 73, 9, 0.18) 0%, rgba(176, 73, 9, 0) 70%);
  filter: blur(14px);
}

.problem-shell {
  position: relative;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 1.8rem 2.4rem;
  align-items: center;
  padding: clamp(4.4rem, 7vw, 6.3rem) 0;
}

.problem-shell::before {
  display: none;
}

.problem-title {
  grid-column: 1;
}

.problem-title {
  max-width: min(100%, 13.6ch);
  font-size: clamp(2.45rem, 4.7vw, 3.85rem);
  line-height: 0.9;
  text-wrap: pretty;
}

.problem-title .reveal-line {
  width: fit-content;
  max-width: 100%;
}

.problem-title > .reveal-line:not(.problem-title-manual) {
  display: none !important;
  height: 0 !important;
  overflow: hidden;
  pointer-events: none;
}

.problem-title > .problem-title-manual {
  width: fit-content;
  max-width: 100%;
}

.problem-title > .problem-title-manual > span {
  display: block;
  white-space: nowrap;
}

.problem-grid {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border: 0;
}

.problem-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 138px;
  padding: 1.05rem 1.1rem 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.78), rgba(255, 241, 219, 0.46));
  border: 1px solid rgba(255, 252, 245, 0.56);
  box-shadow:
    0 18px 42px rgba(86, 39, 4, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(12px) saturate(1.06);
  -webkit-backdrop-filter: blur(12px) saturate(1.06);
  border-radius: 28px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.problem-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.8rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: #8a3000;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(86, 39, 4, 0.1);
}

.problem-card strong {
  max-width: 11ch;
  font-size: clamp(1.08rem, 1.85vw, 1.3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 48px rgba(86, 39, 4, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.integration {
  position: relative;
  padding-top: 0;
  padding-bottom: 7rem;
  background:
    linear-gradient(180deg, rgba(249, 245, 238, 0.98), rgba(241, 232, 220, 0.98));
  overflow: clip;
}

.integration-shell {
  position: relative;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.8rem 3.4rem;
  align-items: center;
  padding: clamp(4.8rem, 7vw, 6.5rem) 0;
}

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

.integration-shell::before {
  inset: 0;
  background:
    linear-gradient(rgba(26, 22, 21, 0.04), rgba(26, 22, 21, 0.04)) 0 0 / 100% 1px no-repeat,
    linear-gradient(rgba(26, 22, 21, 0.04), rgba(26, 22, 21, 0.04)) 0 100% / 100% 1px no-repeat;
  opacity: 0.8;
}

.integration-shell::after {
  top: -5rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 166, 47, 0.16) 0%, rgba(251, 166, 47, 0) 70%);
  filter: blur(10px);
}

.integration-title {
  margin: 0;
  max-width: min(100%, 20ch);
  font-weight: 700;
  line-height: 0.96;
  text-wrap: balance;
}

.integration-title span {
  display: block;
}

.integration-title .reveal-line {
  width: fit-content;
  max-width: 100%;
}

.integration-title > .reveal-line:not(.integration-title-manual) {
  display: none !important;
  height: 0 !important;
  overflow: hidden;
  pointer-events: none;
}

.integration-title > .integration-title-manual {
  width: 100%;
  max-width: min(100%, 20ch);
}

.integration-title > .integration-title-manual > span {
  display: block;
  white-space: normal;
}

.integration-title-lead {
  max-width: none;
  color: var(--ink);
  font-size: clamp(1.38rem, 2.05vw, 1.86rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.integration-title-highlight {
  margin-top: 0.95rem;
  width: fit-content;
  max-width: none;
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.integration-title-highlight > span {
  display: block;
  white-space: nowrap;
}

.integration-text {
  margin: 0;
  max-width: 28ch;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.85vw, 1.2rem);
  line-height: 1.5;
  letter-spacing: -0.03em;
  text-align: center;
}

.integration-visual {
  grid-column: 2;
  display: grid;
  justify-items: center;
  gap: 1.4rem;
}

.integration-orbit {
  position: relative;
  --orbit-size: clamp(320px, 42vw, 520px);
  --orbit-radius: clamp(122px, 15.6vw, 174px);
  width: min(100%, var(--orbit-size));
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.integration-orbit::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 128, 0.26) 0%, rgba(255, 213, 128, 0) 66%);
  filter: blur(6px);
  pointer-events: none;
}

.integration-arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(235, 135, 20, 0.68);
  overflow: visible;
  pointer-events: none;
}

.integration-ring {
  fill: none;
  stroke: rgba(26, 22, 21, 0.09);
  stroke-width: 1.5;
  stroke-dasharray: 8 14;
}

.integration-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 8;
  stroke-linecap: round;
}

.integration-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: auto;
  aspect-ratio: auto;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.integration-core img {
  width: clamp(168px, 24vw, 248px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(26, 22, 21, 0.08));
}

.integration-orbit-track {
  position: absolute;
  inset: 0;
  z-index: 3;
  animation: orbitSpin 24s linear infinite;
}

.orbit-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(12rem, 34vw);
  transform:
    translate(-50%, -50%)
    rotate(var(--orbit-angle))
    translateY(calc(var(--orbit-radius) * -1));
  transform-origin: center;
}

.orbit-node-counter {
  transform: rotate(calc(-1 * var(--orbit-angle)));
  animation: orbitCounterSpin 24s linear infinite;
}

.orbit-node-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 241, 231, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 16px 34px rgba(26, 22, 21, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.95vw, 1.38rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-align: center;
}

.integration-impact {
  grid-column: 1 / -1;
  margin: 1.6rem 0 0;
  max-width: none;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(26, 22, 21, 0.12);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-align: center;
}

.integration-impact-highlight {
  color: var(--orange-3);
  font-weight: 800;
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitCounterSpin {
  from {
    transform: rotate(calc(-1 * var(--orbit-angle)));
  }

  to {
    transform: rotate(calc(-360deg - var(--orbit-angle)));
  }
}

.feature-section {
  position: relative;
  padding-top: 0;
  padding-bottom: 7rem;
  overflow: clip;
}

.feature-program {
  background:
    linear-gradient(180deg, rgba(243, 237, 228, 0.98), rgba(235, 226, 214, 0.98));
}

.feature-build {
  background:
    linear-gradient(180deg, rgba(229, 239, 249, 0.98), rgba(241, 231, 219, 0.98));
}

.feature-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.4rem, 5vw, 5.4rem);
  padding: clamp(4.6rem, 7vw, 6.2rem) 0;
}

.feature-shell-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.feature-media {
  min-width: 0;
  position: relative;
}

.wireframe-frame {
  position: relative;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.wireframe-frame img {
  width: 100%;
  border-radius: 28px;
  border: 0;
  box-shadow: 0 16px 36px rgba(26, 22, 21, 0.08);
}

.feature-program .wireframe-frame img,
.feature-build .wireframe-frame img {
  display: block;
  aspect-ratio: 640 / 760;
  object-fit: cover;
}

.feature-program .wireframe-frame img {
  object-position: center 22%;
}

.feature-build .wireframe-frame img {
  object-position: center 16%;
}

.wireframe-frame-blue {
  background: transparent;
}

.wireframe-frame-sand {
  background: transparent;
}

.feature-copy {
  min-width: 0;
}

.program-logotype {
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  margin-top: 0.45rem;
  padding: 0 0 1.15rem;
  border-bottom: 1px solid rgba(26, 22, 21, 0.12);
}

.program-logotype-top,
.program-logotype-bottom {
  display: block;
  font-family: var(--font-display);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.program-logotype-top {
  font-size: clamp(2.35rem, 4.85vw, 4.15rem);
}

.program-logotype-bottom {
  font-size: clamp(2rem, 4.15vw, 3.45rem);
  color: var(--orange-3);
}

.feature-title {
  margin: 0.95rem 0 0;
  max-width: 8.8ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.feature-title span {
  display: block;
}

.feature-subtitle {
  margin: 1.15rem 0 0;
  max-width: 32ch;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  line-height: 1.52;
  letter-spacing: -0.03em;
}

.feature-card-grid {
  margin-top: 1.9rem;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(26, 22, 21, 0.12);
}

.feature-info-card {
  display: grid;
  gap: 0.95rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(26, 22, 21, 0.12);
  background: transparent;
  box-shadow: none;
}

.feature-info-line {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.35vw, 1.24rem);
  font-weight: 700;
  line-height: 1.42;
}

.feature-inline-highlight {
  color: var(--orange-3);
  font-weight: 800;
}

.feature-info-line-accent {
  align-items: center;
  padding: 0.78rem 0.9rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 213, 128, 0.28), rgba(251, 166, 47, 0.16));
  box-shadow:
    0 14px 30px rgba(235, 135, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
  color: #8a4f09;
  font-size: clamp(1.24rem, 1.55vw, 1.42rem);
  font-weight: 800;
  line-height: 1.3;
}

.feature-info-line-accent .feature-info-icon {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 18px rgba(235, 135, 20, 0.12);
}

.feature-info-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  color: var(--orange-3);
  background: rgba(251, 166, 47, 0.14);
}

.feature-info-icon svg {
  width: 1.24rem;
  height: 1.24rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.build-list {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  position: relative;
  isolation: isolate;
  --timeline-progress: 0;
  --timeline-top: 2rem;
  --timeline-bottom: 2rem;
  --timeline-left: 1.35rem;
}

.build-list::before,
.build-list::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: var(--timeline-left);
  width: 2px;
  border-radius: 999px;
  pointer-events: none;
}

.build-list::before {
  top: var(--timeline-top);
  bottom: var(--timeline-bottom);
  background: rgba(26, 22, 21, 0.12);
}

.build-list::after {
  top: var(--timeline-top);
  height: calc((100% - var(--timeline-top) - var(--timeline-bottom)) * var(--timeline-progress));
  background: linear-gradient(180deg, #ffd287 0%, #fba62f 54%, #eb8714 100%);
  box-shadow: 0 0 20px rgba(251, 166, 47, 0.22);
}

.build-step {
  position: relative;
  z-index: 1;
  padding: 0 0 0 4.45rem;
  min-height: 4.85rem;
  display: flex;
  align-items: center;
}

.build-step::before,
.build-step::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.build-step::before {
  content: attr(data-step);
  left: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 22, 21, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: rgba(26, 22, 21, 0.52);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  transition:
    transform 320ms ease,
    background-color 320ms ease,
    border-color 320ms ease,
    color 320ms ease,
    box-shadow 320ms ease;
}

.build-step::after {
  content: "";
  left: 1.125rem;
  z-index: 2;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: rgba(26, 22, 21, 0.24);
  box-shadow: 0 0 0 10px rgba(247, 242, 235, 0.9);
  transition:
    background-color 320ms ease,
    transform 320ms ease,
    box-shadow 320ms ease;
}

.build-step-label {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.15rem 1.2rem 1.15rem 1.25rem;
  border: 1px solid rgba(26, 22, 21, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 14px 34px rgba(26, 22, 21, 0.04);
  font-size: clamp(1.04rem, 2vw, 1.16rem);
  line-height: 1.45;
  color: rgba(26, 22, 21, 0.82);
  letter-spacing: -0.02em;
  transition:
    transform 320ms ease,
    background-color 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    color 320ms ease;
}

.build-step.is-active::before {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(251, 166, 47, 0.26);
  background: linear-gradient(180deg, #ffd287 0%, #f6a63b 100%);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(235, 135, 20, 0.22);
}

.build-step.is-active::after {
  transform: translateY(-50%) scale(1.28);
  background: #eb8714;
  box-shadow:
    0 0 0 12px rgba(247, 242, 235, 0.94),
    0 0 0 18px rgba(251, 166, 47, 0.14);
}

.build-step.is-active .build-step-label {
  transform: translateX(0.22rem);
  border-color: rgba(251, 166, 47, 0.18);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(26, 22, 21, 0.08);
  color: var(--ink);
}

.feature-outcome {
  margin: 1.4rem 0 0;
  max-width: 27ch;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(26, 22, 21, 0.12);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.course-modules {
  position: relative;
  background:
    linear-gradient(180deg, rgba(241, 231, 219, 0.98) 0%, rgba(248, 243, 236, 0.98) 48%, rgba(249, 236, 213, 0.98) 100%);
  overflow: clip;
  isolation: isolate;
}

.course-modules::before,
.course-modules::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.82;
}

.course-modules::before {
  top: -8%;
  right: -8%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(167, 198, 231, 0.34) 0%, rgba(167, 198, 231, 0) 72%);
}

.course-modules::after {
  left: -6%;
  bottom: 0;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(251, 166, 47, 0.2) 0%, rgba(251, 166, 47, 0) 72%);
}

.course-modules-shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(4.8rem, 7vw, 6.6rem) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 4.6rem);
  align-items: start;
}

.course-modules-intro {
  position: sticky;
  top: calc(var(--header-offset) + 1.35rem);
  display: grid;
  gap: 1rem;
}

.course-modules-title {
  max-width: 8ch;
}

.course-modules-subtitle {
  margin: 0;
  max-width: 30ch;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  line-height: 1.56;
  letter-spacing: -0.03em;
}

.course-modules-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  position: relative;
  isolation: isolate;
  --timeline-progress: 0;
  --timeline-top: 1.95rem;
  --timeline-bottom: 1.95rem;
  --timeline-left: 1.3rem;
}

.course-modules-list::before,
.course-modules-list::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: var(--timeline-left);
  width: 2px;
  border-radius: 999px;
  pointer-events: none;
}

.course-modules-list::before {
  top: var(--timeline-top);
  bottom: var(--timeline-bottom);
  background: rgba(26, 22, 21, 0.12);
}

.course-modules-list::after {
  top: var(--timeline-top);
  height: calc((100% - var(--timeline-top) - var(--timeline-bottom)) * var(--timeline-progress));
  background: linear-gradient(180deg, #a7c6e7 0%, #ffd287 52%, #eb8714 100%);
  box-shadow: 0 0 22px rgba(251, 166, 47, 0.18);
}

.course-module-card {
  position: relative;
  z-index: 1;
  padding-left: 4rem;
}

.course-module-card::before {
  content: "";
  position: absolute;
  left: calc(var(--timeline-left) - 0.28rem);
  top: 1.75rem;
  z-index: 2;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: rgba(26, 22, 21, 0.24);
  box-shadow: 0 0 0 12px rgba(248, 243, 236, 0.96);
  transition:
    transform 320ms ease,
    background-color 320ms ease,
    box-shadow 320ms ease;
}

.course-module-body {
  display: grid;
  gap: 0.95rem;
  padding: 1.35rem 1.45rem 1.55rem;
  border-radius: 30px;
  border: 1px solid rgba(26, 22, 21, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(252, 246, 239, 0.68));
  box-shadow:
    0 18px 42px rgba(26, 22, 21, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition:
    transform 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease,
    background-color 360ms ease;
}

.course-module-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.course-module-pill {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.34rem 0.82rem 0.38rem;
  border-radius: 999px;
  background: rgba(167, 198, 231, 0.2);
  color: rgba(26, 22, 21, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.course-module-count {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(26, 22, 21, 0.48);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  border: 1px solid rgba(26, 22, 21, 0.08);
  box-shadow: 0 12px 26px rgba(26, 22, 21, 0.08);
  transition:
    transform 320ms ease,
    background-color 320ms ease,
    color 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.course-module-body h3,
.course-module-body p {
  margin: 0;
}

.course-module-body h3 {
  max-width: 17ch;
  font-family: var(--font-display);
  font-size: clamp(1.74rem, 3vw, 2.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.course-module-body > p:last-child {
  max-width: 43ch;
  color: rgba(26, 22, 21, 0.72);
  font-size: clamp(1.02rem, 1.4vw, 1.1rem);
  line-height: 1.58;
  letter-spacing: -0.02em;
}

.course-module-card.is-active::before {
  transform: scale(1.25);
  background: #eb8714;
  box-shadow:
    0 0 0 12px rgba(248, 243, 236, 0.98),
    0 0 0 18px rgba(251, 166, 47, 0.16);
}

.course-module-card.is-active .course-module-body {
  transform: translateX(0.24rem);
  border-color: rgba(251, 166, 47, 0.18);
  box-shadow:
    0 24px 48px rgba(26, 22, 21, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 234, 0.78));
}

.course-module-card.is-active .course-module-count {
  transform: scale(1.04);
  border-color: rgba(251, 166, 47, 0.18);
  background: linear-gradient(180deg, #ffd287 0%, #f6a63b 100%);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(235, 135, 20, 0.2);
}

.course-module-card.is-active .course-module-pill {
  background: rgba(251, 166, 47, 0.16);
  color: #8a4f09;
}

.section-title {
  margin: 0.9rem 0 0;
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.differentials {
  background: linear-gradient(180deg, rgba(242, 236, 227, 0.98), rgba(236, 229, 220, 0.98));
}

.differentials-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(4.6rem, 7vw, 6.4rem) 0;
}

.differentials-graphic {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
}

.differentials-vector-list {
  width: min(100%, 1320px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: visible;
}

.differentials-vector-card {
  --vector-shape: polygon(83.96% 100%, 0 100%, 15.41% 49.68%, 0 0, 83.96% 0, 100% 49.68%);
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(210px, 19vw, 260px);
  margin-left: clamp(-1.2rem, -1vw, -0.7rem);
  padding: clamp(1.6rem, 2vw, 2rem) clamp(0.95rem, 1.25vw, 1.22rem) clamp(1.5rem, 1.9vw, 1.85rem)
    clamp(1.45rem, 1.9vw, 1.7rem);
  clip-path: var(--vector-shape);
  isolation: isolate;
  background:
    radial-gradient(circle at 58% 50%, rgba(255, 250, 236, 0.96) 0%, rgba(255, 250, 236, 0.5) 19%, rgba(255, 250, 236, 0) 54%),
    linear-gradient(180deg, #f4c363 0%, #fdeecf 100%);
  box-shadow:
    0 16px 34px rgba(131, 83, 18, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
  will-change: transform, box-shadow, filter;
}

.differentials-vector-card:first-child {
  margin-left: 0;
}

.differentials-vector-card::before,
.differentials-vector-card::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: inherit;
  pointer-events: none;
}

.differentials-vector-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0.18) 100%);
  z-index: 0;
}

.differentials-vector-card::after {
  box-shadow: inset 0 0 0 1px rgba(255, 245, 219, 0.76);
  z-index: 1;
}

.differentials-vector-card > * {
  position: relative;
  z-index: 2;
}

.differentials-vector-card-body {
  width: min(100%, var(--body-width, 82%));
  margin-inline: auto;
  display: grid;
  align-content: center;
  justify-items: start;
  transform: translateX(var(--body-shift, clamp(0.85rem, 1vw, 1.15rem)));
}

.differentials-vector-card h3 {
  margin: 0;
  max-width: min(100%, var(--title-width, 10ch));
  font-family: var(--font-display);
  font-size: var(--title-size, clamp(1.36rem, 1.6vw, 2rem));
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.differentials-vector-card p {
  margin: 0.8rem 0 0;
  max-width: min(100%, var(--copy-width, 12ch));
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  line-height: 1.16;
  color: rgba(26, 22, 21, 0.84);
  text-wrap: pretty;
}

@media (hover: hover) and (pointer: fine) {
  .differentials-vector-card:hover {
    transform: translateY(-16px) scale(1.08);
    box-shadow:
      0 32px 54px rgba(131, 83, 18, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.64);
    filter: saturate(1.03) brightness(1.01);
    z-index: 4;
  }

  .differentials-vector-card:hover::after {
    box-shadow: inset 0 0 0 2px rgba(255, 248, 228, 0.9);
  }
}

@media (max-width: 1180px) {
  .differentials-vector-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .differentials-vector-card {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .differentials-vector-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
  }

  .differentials-vector-card {
    min-height: 208px;
  }
}

@media (max-width: 640px) {
  .differentials-graphic {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .differentials-graphic.is-dragging {
    cursor: grabbing;
  }

  .differentials-graphic::-webkit-scrollbar {
    display: none;
  }

  .differentials-vector-list {
    width: max-content;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding-inline: 0.3rem 0.9rem;
  }

  .differentials-vector-card {
    flex: 0 0 clamp(220px, 72vw, 290px);
    min-height: 0;
    margin-left: clamp(-1rem, -3vw, -0.65rem);
    padding: 1.45rem 1.1rem 1.5rem 1.5rem;
  }

  .differentials-vector-card:first-child {
    margin-left: 0;
  }

  .differentials-vector-card-body {
    width: min(100%, 84%);
    transform: translateX(0.5rem);
  }

  .differentials-vector-card h3 {
    max-width: none;
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .differentials-vector-card p {
    max-width: 16ch;
  }
}

.differentials-grid {
  margin-top: 2.2rem;
  display: grid;
  gap: 1.45rem;
}

.differentials-row {
  position: relative;
  display: grid;
  align-items: stretch;
  gap: 0;
  overflow: visible;
}

.differentials-row-top {
  grid-template-columns: minmax(0, 1fr) clamp(28px, 3vw, 46px) minmax(0, 1fr) clamp(28px, 3vw, 46px) minmax(0, 1fr);
}

.differentials-row-bottom {
  grid-template-columns: minmax(0, 1fr) clamp(30px, 3vw, 48px) minmax(0, 1fr);
}

.diff-card {
  --card-border: rgba(221, 166, 79, 0.46);
  --card-fill-top: #f8cf83;
  --card-fill-mid: #f3c15e;
  --card-fill-bottom: #edb352;
  position: relative;
  display: grid;
  gap: 0.72rem;
  min-height: 194px;
  padding: 1.4rem 1.5rem 1.45rem;
  isolation: isolate;
  border: 1px solid var(--card-border);
  background:
    radial-gradient(circle at 76% 38%, rgba(255, 247, 229, 0.95) 0%, rgba(255, 247, 229, 0.48) 18%, rgba(255, 247, 229, 0) 48%),
    linear-gradient(135deg, var(--card-fill-top) 0%, var(--card-fill-mid) 56%, var(--card-fill-bottom) 100%);
  box-shadow:
    0 18px 42px rgba(107, 67, 16, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.42s ease;
  z-index: 1;
  will-change: transform, box-shadow, filter;
}

.diff-card > * {
  position: relative;
  z-index: 3;
}

.diff-card strong {
  max-width: 8ch;
  font-family: var(--font-display);
  font-size: clamp(1.38rem, 2vw, 1.95rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.diff-card p {
  margin: 0;
  max-width: 23ch;
  font-size: 0.99rem;
  line-height: 1.4;
  color: rgba(26, 22, 21, 0.78);
  text-wrap: pretty;
}

.diff-connector {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: clamp(34px, 3vw, 52px);
  height: clamp(92px, 9vw, 136px);
  margin-inline: -0.35rem;
  background:
    radial-gradient(circle at 46% 50%, rgba(255, 248, 235, 0.98) 0%, rgba(255, 248, 235, 0.58) 16%, rgba(255, 248, 235, 0) 48%),
    linear-gradient(135deg, #f8cf83 0%, #f3c15e 54%, #edb352 100%);
  box-shadow:
    0 14px 28px rgba(107, 67, 16, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  -webkit-mask: url("./images/Vector6.svg") center / contain no-repeat;
  mask: url("./images/Vector6.svg") center / contain no-repeat;
  transform: translateX(-0.08rem);
}

.diff-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 22px 48px rgba(107, 67, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
  filter: saturate(1.02) brightness(1.04);
  border-color: rgba(255, 255, 255, 0.44);
  z-index: 4;
}

.differentials-impact {
  margin: 2rem 0 0;
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.included {
  background: linear-gradient(180deg, rgba(224, 235, 247, 0.98), rgba(239, 230, 218, 0.98));
}

.included-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 2.6rem 3.4rem;
  align-items: start;
  padding: clamp(4.6rem, 7vw, 6.4rem) 0;
}

.included-list {
  list-style: none;
  margin: 1.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(26, 22, 21, 0.12);
}

.included-list li {
  position: relative;
  padding: 1.15rem 0 1.15rem 2rem;
  border-bottom: 1px solid rgba(26, 22, 21, 0.12);
  font-size: clamp(1.02rem, 2vw, 1.14rem);
  line-height: 1.45;
}

.included-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--orange-3);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
}

.bonus-book {
  position: relative;
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.55rem 1.45rem 1.8rem;
  border-radius: 32px;
  border: 1px solid rgba(221, 160, 72, 0.24);
  background:
    linear-gradient(160deg, rgba(255, 250, 241, 0.96) 0%, rgba(250, 236, 205, 0.94) 56%, rgba(241, 199, 124, 0.88) 100%);
  box-shadow:
    0 24px 58px rgba(176, 103, 16, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  overflow: hidden;
  isolation: isolate;
}

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

.bonus-book::before {
  top: -3rem;
  right: -2.4rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 134, 0.7) 0%, rgba(255, 214, 134, 0) 70%);
  filter: blur(8px);
}

.bonus-book::after {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.08) 26%, rgba(255, 255, 255, 0) 54%),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 36%);
  opacity: 0.9;
}

.bonus-label {
  margin: 0;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.72rem 1.18rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #ffc85f 0%, #f7a22a 56%, #de7e07 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.75vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow:
    0 16px 32px rgba(217, 122, 18, 0.24),
    0 8px 22px rgba(185, 95, 7, 0.2);
}

.bonus-title {
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.bonus-text {
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 28ch;
  color: rgba(26, 22, 21, 0.78);
  font-size: 1.02rem;
  line-height: 1.5;
}

.bonus-link {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(26, 22, 21, 0.2);
  font-size: 0.98rem;
  font-weight: 700;
}

.book-cover-frame {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin-top: 0.8rem;
}

.book-cover-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow:
    0 24px 48px rgba(26, 22, 21, 0.14),
    0 10px 26px rgba(235, 135, 20, 0.12);
}

.audience {
  position: relative;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 205, 122, 0.14) 0%, rgba(255, 205, 122, 0) 28%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, #3d3833 0%, #1f1c19 100%);
  overflow: clip;
}

.audience::before,
.audience::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(28px);
}

.audience::before {
  top: 8%;
  left: -8%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(251, 166, 47, 0.2) 0%, rgba(251, 166, 47, 0) 70%);
}

.audience::after {
  right: -10%;
  bottom: 2%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 72%);
}

.audience-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  gap: 1.8rem;
  padding: clamp(4.6rem, 7vw, 6.4rem) 0;
}

.audience-intro {
  display: grid;
  justify-items: center;
  text-align: center;
}

.audience-title {
  margin-top: 0;
  width: fit-content;
  max-width: none;
  color: #f6f1e9;
  text-align: center;
  white-space: nowrap;
}

.audience-title-accent {
  position: relative;
  display: inline-block;
  padding-inline: 0.02em;
  isolation: isolate;
  background: linear-gradient(180deg, #ffd98c 0%, #fbb247 38%, #eb8714 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 12px 18px rgba(235, 135, 20, 0.18));
}

.audience-title-accent::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: rgba(251, 166, 47, 0.24);
  filter: blur(10px);
  transform: translateY(0.04em);
  opacity: 0.9;
  pointer-events: none;
}

.audience-title-accent::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 36%,
      rgba(255, 247, 231, 0.18) 44%,
      rgba(255, 255, 255, 0.96) 50%,
      rgba(255, 222, 163, 0.82) 54%,
      rgba(255, 255, 255, 0.16) 60%,
      rgba(255, 255, 255, 0) 68%,
      rgba(255, 255, 255, 0) 100%
    );
  background-size: 230% 100%;
  background-position: 140% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.95;
  pointer-events: none;
  animation: heroTextSheen 5s ease-in-out infinite;
}

.audience-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: clamp(1.35rem, 2vw, 1.8rem);
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(58, 54, 50, 0.94), rgba(24, 22, 21, 0.98));
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}

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

.audience-panel::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 26%, rgba(255, 255, 255, 0) 54%),
    radial-gradient(circle at 50% 0%, rgba(255, 210, 141, 0.08) 0%, rgba(255, 210, 141, 0) 36%);
}

.audience-panel::after {
  display: none;
}

.audience-column {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  margin-inline: auto;
  padding: clamp(1.45rem, 2vw, 1.8rem);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.audience-yes {
  background:
    linear-gradient(180deg, rgba(44, 70, 61, 0.24), rgba(24, 30, 28, 0.22));
}

.audience-no {
  background:
    linear-gradient(180deg, rgba(86, 52, 43, 0.22), rgba(30, 24, 23, 0.18));
}

.audience-heading {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin: 0;
  color: #f8f3eb;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.audience-heading-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.audience-heading-icon-positive {
  background: linear-gradient(180deg, rgba(43, 146, 96, 0.34), rgba(20, 110, 69, 0.3));
  color: #6cf1a8;
}

.audience-heading-icon-negative {
  background: linear-gradient(180deg, rgba(190, 82, 44, 0.3), rgba(150, 46, 18, 0.26));
  color: #ff8a63;
}

.audience-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.78rem;
  border-top: 0;
}

.audience-list li {
  position: relative;
  isolation: isolate;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.5;
  border-radius: 18px;
  color: rgba(248, 243, 235, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 260ms ease,
    color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background-color 260ms ease;
  -webkit-tap-highlight-color: transparent;
}

.audience-list li::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transform: scaleX(0.96);
  transform-origin: left center;
  transition:
    opacity 260ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.audience-list-positive li::before,
.audience-list-negative li::before {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  transition:
    transform 260ms ease,
    text-shadow 260ms ease,
    color 260ms ease;
}

.audience-list-positive li::before {
  content: "\2714";
  color: #6cf1a8;
}

.audience-list-positive li::after {
  background: linear-gradient(90deg, rgba(43, 146, 96, 0.24) 0%, rgba(43, 146, 96, 0.08) 68%, rgba(43, 146, 96, 0) 100%);
}

.audience-list-negative li::before {
  content: "\2715";
  color: #ff8a63;
}

.audience-list-negative li::after {
  background: linear-gradient(90deg, rgba(190, 82, 44, 0.22) 0%, rgba(190, 82, 44, 0.08) 68%, rgba(190, 82, 44, 0) 100%);
}

@media (hover: hover) {
  .audience-list li:hover {
    transform: translateX(0.36rem);
    box-shadow:
      0 14px 28px rgba(0, 0, 0, 0.14),
      inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }

  .audience-list-positive li:hover {
    color: rgba(240, 255, 248, 0.96);
    border-color: rgba(43, 146, 96, 0.24);
  }

  .audience-list-negative li:hover {
    color: rgba(255, 244, 240, 0.96);
    border-color: rgba(190, 82, 44, 0.24);
  }

  .audience-list li:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .audience-list li:hover::before {
    transform: translate(0.18rem, -50%) scale(1.08);
  }

  .audience-list-positive li:hover::before {
    text-shadow: 0 0 14px rgba(108, 241, 168, 0.2);
  }

  .audience-list-negative li:hover::before {
    text-shadow: 0 0 14px rgba(255, 138, 99, 0.18);
  }
}

@media (hover: none) {
  .audience-list li:active {
    transform: translateX(0.24rem) scale(0.995);
  }

  .audience-list li:active::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .audience-list li:active::before {
    transform: translate(0.16rem, -50%) scale(1.06);
  }
}

.transformation {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 203, 116, 0.98), rgba(245, 238, 229, 0.98));
  overflow: clip;
}

.transformation::before,
.transformation::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
  opacity: 0.72;
}

.transformation::before {
  top: 10%;
  left: -8%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(255, 240, 214, 0.68) 0%, rgba(255, 240, 214, 0) 72%);
  animation: transformGlowLeft 9s ease-in-out infinite;
}

.transformation::after {
  right: -6%;
  bottom: 6%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(251, 166, 47, 0.32) 0%, rgba(251, 166, 47, 0) 72%);
  animation: transformGlowRight 10s ease-in-out infinite;
}

.transformation-shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(4.6rem, 7vw, 6.4rem) 0;
}

.transformation-grid {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.transformation-column {
  position: relative;
  padding: 1.6rem 0 0;
  border-top: 1px solid rgba(26, 22, 21, 0.14);
}

.transform-label {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.transformation-column ul {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.transformation-column li {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.82rem 1.2rem 0.92rem 3.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  box-shadow:
    0 14px 30px rgba(26, 22, 21, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.85vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
  transition:
    transform 360ms ease,
    color 360ms ease,
    text-shadow 360ms ease,
    box-shadow 360ms ease,
    border-color 360ms ease,
    background-color 360ms ease;
}

.before li::before,
.after li::before {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 900;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(26, 22, 21, 0.08);
}

.before li::before {
  content: "\2715";
  color: #b04331;
  background: rgba(255, 255, 255, 0.72);
}

.after li::before {
  content: "\2714";
  color: #16744d;
  background: rgba(255, 255, 255, 0.74);
}

.before li {
  background: linear-gradient(145deg, rgba(198, 76, 58, 0.2) 0%, rgba(170, 57, 41, 0.14) 100%);
  border-color: rgba(176, 67, 49, 0.24);
  color: #6f281d;
  animation: transformBeforePulse 5.6s ease-in-out infinite;
}

.after li {
  background: linear-gradient(145deg, rgba(49, 155, 102, 0.2) 0%, rgba(25, 116, 76, 0.14) 100%);
  border-color: rgba(25, 116, 76, 0.24);
  color: #146444;
  animation: transformAfterPulse 5.6s ease-in-out infinite;
}

.before li:nth-child(2),
.after li:nth-child(2) {
  animation-delay: 0.9s;
}

.before li:nth-child(3),
.after li:nth-child(3) {
  animation-delay: 1.8s;
}

@keyframes transformGlowLeft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(4%, 2%, 0) scale(1.08);
  }
}

@keyframes transformGlowRight {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-3%, -2%, 0) scale(1.06);
  }
}

@keyframes transformBeforePulse {
  0%,
  100%,
  65% {
    transform: translate3d(0, 0, 0);
    color: #6f281d;
    text-shadow: none;
    box-shadow:
      0 14px 30px rgba(26, 22, 21, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.44);
  }

  32% {
    transform: translate3d(0.22rem, 0, 0) scale(1.015);
    color: #842f21;
    text-shadow: 0 0 16px rgba(132, 47, 33, 0.12);
    box-shadow:
      0 18px 34px rgba(132, 47, 33, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

@keyframes transformAfterPulse {
  0%,
  100%,
  65% {
    transform: translate3d(0, 0, 0);
    color: #146444;
    text-shadow: none;
    box-shadow:
      0 14px 30px rgba(26, 22, 21, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.44);
  }

  32% {
    transform: translate3d(0.22rem, 0, 0) scale(1.015);
    color: #125b3d;
    text-shadow: 0 0 16px rgba(18, 91, 61, 0.14);
    box-shadow:
      0 18px 34px rgba(18, 91, 61, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

.authority {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(251, 166, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #12100f 0%, #1d1815 100%);
}

.authority-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(4.6rem, 7vw, 6.4rem) 0;
}

.authority .section-title {
  max-width: 8.5ch;
}

.authority-intro {
  display: grid;
  gap: 0.3rem;
}

.authority-impact {
  margin: 1.6rem 0 0;
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.mentor-grid {
  margin-top: 2.2rem;
  display: grid;
  gap: 1.2rem;
}

.mentor-card {
  display: grid;
  gap: 1.4rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mentor-card-feature {
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 0.86fr);
  align-items: start;
  gap: 1.8rem;
}

.mentor-copy {
  display: grid;
  justify-items: start;
  gap: 0.95rem;
  max-width: 58ch;
}

.mentor-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.mentor-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.mentor-bio {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.68;
  text-wrap: pretty;
}

.testimonials {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.72), transparent 36%),
    linear-gradient(180deg, rgba(232, 239, 248, 0.98), rgba(239, 230, 218, 0.98));
  overflow: clip;
}

.testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.testimonials::before {
  top: -8rem;
  left: -7rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 72%);
}

.testimonials::after {
  right: -7rem;
  bottom: -10rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(251, 166, 47, 0.16) 0%, rgba(251, 166, 47, 0) 70%);
}

.testimonials-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(4.9rem, 7vw, 6.8rem) 0;
}

.testimonials-intro {
  margin: 0;
  text-align: center;
  color: rgba(26, 22, 21, 0.68);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.testimonials-featured {
  margin-top: 1.45rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.7rem;
}

.testimonials-featured-quote {
  margin: 0;
  max-width: 15ch;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.9vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.testimonials-featured-meta,
.testimonial-card-meta {
  display: grid;
  align-items: center;
  gap: 0.85rem;
}

.testimonials-featured-meta {
  justify-content: center;
}

.testimonial-meta-copy {
  display: grid;
  gap: 0.16rem;
  text-align: left;
}

.testimonial-card-meta {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.45rem;
}

.testimonial-name,
.testimonial-role {
  margin: 0;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.testimonial-role {
  color: rgba(26, 22, 21, 0.56);
  font-size: 0.95rem;
  line-height: 1.35;
}

.testimonials-marquee {
  position: relative;
  width: 100vw;
  margin-top: 3rem;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 0.4rem 0;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.14) 10%,
    rgba(0, 0, 0, 0.74) 18%,
    rgba(0, 0, 0, 1) 31%,
    rgba(0, 0, 0, 1) 69%,
    rgba(0, 0, 0, 0.74) 82%,
    rgba(0, 0, 0, 0.14) 90%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.14) 10%,
    rgba(0, 0, 0, 0.74) 18%,
    rgba(0, 0, 0, 1) 31%,
    rgba(0, 0, 0, 1) 69%,
    rgba(0, 0, 0, 0.74) 82%,
    rgba(0, 0, 0, 0.14) 90%,
    transparent 100%
  );
}

.testimonials-marquee::before,
.testimonials-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(88px, 12vw, 190px);
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(10px) saturate(0.92);
  -webkit-backdrop-filter: blur(10px) saturate(0.92);
}

.testimonials-marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(239, 230, 218, 0.96) 0%,
    rgba(239, 230, 218, 0.8) 30%,
    rgba(239, 230, 218, 0.34) 68%,
    rgba(239, 230, 218, 0) 100%
  );
}

.testimonials-marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(239, 230, 218, 0.96) 0%,
    rgba(239, 230, 218, 0.8) 30%,
    rgba(239, 230, 218, 0.34) 68%,
    rgba(239, 230, 218, 0) 100%
  );
}

.testimonial-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: testimonialMarquee var(--testimonial-duration, 24s) linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.testimonials-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-group {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-shrink: 0;
  padding-right: 1rem;
}

.testimonial-card {
  flex: 0 0 clamp(280px, 29vw, 348px);
  min-height: 0;
  display: grid;
  align-content: space-between;
  gap: 1.1rem;
  padding: 1.2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 44px rgba(26, 22, 21, 0.08);
  backdrop-filter: blur(14px) saturate(1.08);
}

.testimonial-card-quote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.46;
  color: rgba(26, 22, 21, 0.88);
  letter-spacing: -0.02em;
}

@keyframes testimonialMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--testimonial-loop-width, 0px)), 0, 0);
  }
}

.offer {
  color: var(--white);
  background: linear-gradient(180deg, #171311 0%, #231b16 100%);
}

.offer-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 2rem 3rem;
  align-items: center;
  padding: clamp(4.4rem, 7vw, 5.8rem) 0;
}

.offer .section-title {
  max-width: 9ch;
}

.offer-old-price {
  margin: 1.1rem 0 0.35rem;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.35rem 0.55rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.offer-old-price-prefix,
.offer-old-price-suffix {
  padding-bottom: 0.3rem;
}

.offer-old-price-value {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.9rem, 4.3vw, 3.25rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-decoration: line-through;
  text-decoration-color: #cf564c;
  text-decoration-thickness: 3px;
}

.offer-price-wrap {
  margin-top: 0.35rem;
  width: fit-content;
  display: grid;
  justify-items: end;
  gap: 0.28rem;
}

.offer-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9.6vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.offer-price-note {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
  text-align: right;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.offer-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.78rem 0.48rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #ffc85f 0%, #f7a22a 56%, #de7e07 100%);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(217, 122, 18, 0.22);
}

.offer-installments,
.offer-saving {
  margin: 0.75rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.86);
}

.offer-saving {
  margin-top: 0.12rem;
  max-width: 29ch;
  text-align: right;
  font-size: clamp(1rem, 1.65vw, 1.14rem);
  line-height: 1.28;
}

.offer-saving span {
  color: var(--orange-1);
  font-weight: 800;
}

.offer-price-cta {
  justify-self: end;
  margin-top: 0.95rem;
  max-width: 100%;
}

.offer-side {
  display: grid;
  gap: 1.2rem;
  justify-items: start;
}

.offer-highlight {
  padding: 1.35rem 1.35rem 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: min(100%, 33rem);
  box-sizing: border-box;
}

.offer-highlight-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.offer-highlight-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.offer-highlight-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.68rem 0.4rem;
  border-radius: 999px;
  background: rgba(251, 166, 47, 0.14);
  border: 1px solid rgba(251, 166, 47, 0.24);
  color: var(--orange-1);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-highlight p:last-child {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 1.9vw, 1.28rem);
  line-height: 1.5;
}

.offer-methods {
  width: min(100%, 33rem);
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 24px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-methods-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.offer-methods-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
}

.offer-method + .offer-method {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-method-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.offer-method-name {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.offer-method-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.24rem 0.52rem 0.28rem;
  border-radius: 999px;
  background: rgba(251, 166, 47, 0.11);
  border: 1px solid rgba(251, 166, 47, 0.18);
  color: rgba(255, 204, 124, 0.92);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-method-badge-soft {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
}

.offer-method-price,
.offer-method-detail {
  margin: 0;
}

.offer-method-price {
  margin-top: 0.34rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.35;
}

.offer-method-price strong {
  color: var(--white);
  font-size: 1.26rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.offer-method-detail {
  margin-top: 0.12rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.3;
}

.scarcity {
  background: linear-gradient(180deg, #f8a52b 0%, #e57c12 100%);
}

.scarcity-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(3.8rem, 6vw, 5.2rem) 0;
}

.scarcity .section-title {
  max-width: 8.5ch;
  font-size: clamp(2.5rem, 5.8vw, 4.8rem);
  line-height: 0.92;
}

.scarcity-number {
  margin: 1.2rem 0 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

.scarcity-text {
  margin: 0.9rem 0 0;
  width: fit-content;
  max-width: none;
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
  line-height: 1.55;
  white-space: nowrap;
}

.final-cta {
  background: linear-gradient(180deg, rgba(216, 232, 247, 0.98), rgba(240, 233, 223, 0.98));
}

.final-cta-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: clamp(4.6rem, 7vw, 6rem) 0;
}

.final-cta-shell .section-title {
  max-width: 11ch;
}

.final-cta-subtitle {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.18rem, 2.2vw, 1.45rem);
  line-height: 1.4;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 4.1rem;
  padding: 0.8rem 1.15rem 0.8rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, #2cc36b 0%, #1faa59 54%, #128746 100%);
  color: var(--white);
  box-shadow:
    0 18px 42px rgba(18, 135, 70, 0.28),
    0 8px 22px rgba(8, 56, 29, 0.18);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  filter: brightness(1.04);
  box-shadow:
    0 24px 50px rgba(18, 135, 70, 0.34),
    0 10px 24px rgba(8, 56, 29, 0.22);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.whatsapp-float-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.45rem;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.whatsapp-float-icon img {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  object-fit: contain;
}

.whatsapp-float-text {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.faq {
  background: linear-gradient(180deg, rgba(247, 242, 235, 0.98), rgba(241, 233, 223, 0.98));
}

.faq-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(4.6rem, 7vw, 6rem) 0 6rem;
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  counter-reset: faq-item;
}

.faq-item {
  counter-increment: faq-item;
  position: relative;
  padding: 0.35rem;
  border-radius: 30px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 12px 28px rgba(26, 22, 21, 0.04);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(251, 166, 47, 0.58), rgba(251, 166, 47, 0) 72%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.faq-item:hover,
.faq-item.is-open {
  transform: translateY(-2px);
  border-color: rgba(235, 135, 20, 0.08);
  background: #14110f;
  box-shadow: 0 22px 54px rgba(26, 22, 21, 0.16);
}

.faq-item:hover::before,
.faq-item.is-open::before {
  opacity: 1;
}

.faq-trigger {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.45rem;
  text-align: left;
}

.faq-trigger-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

.faq-badge,
.faq-toggle {
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(26, 22, 21, 0.08);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    background-color 320ms ease,
    border-color 320ms ease,
    color 320ms ease,
    transform 320ms ease,
    box-shadow 320ms ease;
}

.faq-badge {
  width: 3rem;
  height: 3rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.faq-badge::before {
  content: counter(faq-item, decimal-leading-zero);
}

.faq-question {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  transition: color 320ms ease;
}

.faq-toggle {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  width: 0.82rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 320ms ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-item:hover .faq-badge,
.faq-item:hover .faq-toggle,
.faq-item.is-open .faq-badge,
.faq-item.is-open .faq-toggle {
  border-color: rgba(251, 166, 47, 0.22);
  background: rgba(251, 166, 47, 0.12);
  color: var(--orange-3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.faq-item:hover .faq-question,
.faq-item.is-open .faq-question {
  color: var(--white);
}

.faq-item:hover .faq-toggle::after,
.faq-item.is-open .faq-toggle::after {
  transform: rotate(0deg);
}

.faq-answer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 700ms ease;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-item:hover .faq-answer,
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.45rem 1.35rem 5.45rem;
  max-width: 62ch;
  color: var(--ink-soft);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 320ms ease,
    transform 420ms ease,
    color 320ms ease;
}

.faq-item:hover .faq-answer p,
.faq-item.is-open .faq-answer p {
  opacity: 1;
  transform: translateY(0);
  color: rgba(255, 255, 255, 0.72);
}

.reveal-surface {
  opacity: 0.01;
  filter: blur(14px);
  transform: translate3d(0, 38px, 0) scale(0.988);
  transform-origin: center top;
  transition:
    opacity 860ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1040ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1040ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

.reveal-surface.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

[data-reveal] .reveal-line {
  opacity: 0;
  filter: blur(18px);
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 920ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform, filter;
}

[data-reveal].is-visible .reveal-line {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-wrap,
  .hero-kicker,
  .hero-title-line,
  .hero-subtitle,
  .hero-impact,
  .hero-bullets li,
  .button-hero,
  .reveal-surface,
  [data-reveal] .reveal-line {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  :root {
    --section-gutter: 1.1rem;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem 1rem;
  }

  .site-nav {
    gap: 0.8rem 1rem;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 720px;
    padding-top: calc(9rem + var(--header-offset));
  }

  .hero-bullets {
    grid-template-columns: 1fr;
    width: fit-content;
    max-width: min(100%, 760px);
  }

  .problem-shell {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .problem-shell::before {
    display: none;
  }

  .problem-grid {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0.6rem;
  }

  .integration-shell {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    justify-items: center;
  }

  .integration-visual {
    grid-column: 1;
    gap: 1.2rem;
    width: 100%;
    justify-items: center;
  }

  .integration-orbit {
    --orbit-size: min(100%, 320px);
    --orbit-radius: 112px;
    margin-inline: auto;
  }

  .integration-core img {
    width: min(76%, 220px);
  }

  .feature-shell,
  .feature-shell-reverse,
  .course-modules-shell {
    grid-template-columns: 1fr;
  }

  .course-modules-intro {
    position: relative;
    top: auto;
    max-width: none;
  }

  .differentials-grid {
    gap: 1rem;
  }

  .differentials-row-top,
  .differentials-row-bottom {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .diff-connector {
    display: none;
  }

  .included-shell,
  .audience-shell,
  .offer-shell {
    grid-template-columns: 1fr;
  }

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

  .audience-panel::after {
    display: none;
  }

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

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

  .testimonials-featured-quote {
    max-width: 11ch;
  }
}

@media (max-width: 760px) {
  :root {
    --header-offset: 88px;
    --section-gutter: 1.15rem;
  }

  .site-header {
    padding-top: 0.85rem;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem 0.9rem;
    padding: 0.68rem 0.95rem;
    border-radius: 30px;
    background: rgba(255, 248, 239, 0.26);
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow: 0 12px 34px rgba(33, 25, 22, 0.06);
    backdrop-filter: blur(8px) saturate(1.02);
    -webkit-backdrop-filter: blur(8px) saturate(1.02);
  }

  .site-header.is-scrolled .header-shell,
  .site-header.is-menu-open .header-shell {
    padding: 0.68rem 0.95rem;
    background: rgba(255, 248, 239, 0.58);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 54px rgba(33, 25, 22, 0.12);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
  }

  .brand {
    min-width: 0;
    min-height: 3rem;
    display: flex;
    align-items: center;
    line-height: 0;
    align-self: center;
    justify-self: start;
  }

  .brand-logo {
    height: 42px;
    max-width: min(66vw, 234px);
    transform: translateY(9px);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 3.15rem;
    height: 3.15rem;
    transform: translateY(9px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(247, 238, 227, 0.56));
    box-shadow:
      0 12px 26px rgba(33, 25, 22, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(10px) saturate(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(1.08);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.6);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav,
  .header-cta {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 320ms ease,
      margin-top 260ms ease,
      opacity 220ms ease;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.72rem 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
  }

  .header-cta {
    width: 100%;
    max-height: 0;
    min-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 320ms ease,
      margin-top 260ms ease,
      opacity 220ms ease,
      padding 260ms ease;
  }

  .site-header.is-menu-open .site-nav {
    max-height: 16rem;
    margin-top: 0.35rem;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-menu-open .header-cta {
    max-height: 4.3rem;
    min-height: 3.4rem;
    margin-top: 0.35rem;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: 0;
    padding-top: calc(4.8rem + var(--header-offset));
    padding-bottom: 4rem;
  }

  .hero-logo {
    width: clamp(220px, 74vw, 460px);
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  h1 span {
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-impact {
    font-size: 1.08rem;
    max-width: 30ch;
    white-space: normal;
    text-wrap: balance;
  }

  .problem {
    padding-bottom: 4.2rem;
  }

  .problem-title {
    max-width: min(100%, 13.2ch);
    font-size: clamp(2.15rem, 9.4vw, 3.2rem);
    line-height: 0.92;
  }

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

  .problem-card {
    min-height: 0;
    align-items: center;
    padding: 0.9rem 0.95rem;
    gap: 0.82rem;
    border-radius: 24px;
  }

  .problem-icon {
    flex-basis: 2.55rem;
    width: 2.55rem;
    height: 2.55rem;
    font-size: 0.9rem;
  }

  .problem-card strong {
    max-width: none;
    font-size: clamp(1.2rem, 4.8vw, 1.46rem);
    line-height: 1.04;
    text-wrap: balance;
  }

  .integration {
    padding-bottom: 4.2rem;
  }

  .integration-title {
    width: min(100%, 20rem);
    max-width: none;
    text-align: center;
    margin-inline: auto;
  }

  .integration-title > .integration-title-manual {
    display: grid;
    justify-items: center;
    margin-inline: auto;
  }

  .integration-title-lead {
    width: fit-content;
    margin-inline: auto;
    text-align: center;
  }

  .integration-title-lead {
    font-size: clamp(1.14rem, 4.8vw, 1.45rem);
  }

  .integration-title-highlight {
    display: grid;
    justify-items: center;
    width: 100%;
    max-width: none;
    font-size: clamp(2.5rem, 10.2vw, 4rem);
    text-align: center;
  }

  .integration-title-highlight > span {
    width: auto;
    text-align: center;
  }

  .integration-text {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    text-align: center;
    text-wrap: balance;
  }

  .integration-visual {
    width: min(100%, 20rem);
  }

  .integration-orbit {
    --orbit-size: min(100%, 300px);
    --orbit-radius: 102px;
  }

  .integration-core img {
    width: min(78%, 204px);
  }

  .orbit-node {
    width: min(7.8rem, 31vw);
  }

  .orbit-node-card {
    min-height: 3.75rem;
    padding: 0.72rem 0.72rem;
    font-size: clamp(0.84rem, 3.8vw, 1rem);
    line-height: 1.04;
  }

  .integration-impact {
    max-width: none;
    font-size: clamp(1.6rem, 6vw, 2.35rem);
    text-align: center;
  }

  .feature-section {
    padding-bottom: 4.2rem;
  }

  .audience-title {
    max-width: none;
    font-size: clamp(2.35rem, 8.8vw, 3.8rem);
    width: 100%;
    text-align: left;
    white-space: normal;
    line-height: 0.94;
  }

  .audience-intro {
    justify-items: start;
    text-align: left;
  }

  .audience-heading {
    font-size: clamp(1.38rem, 5.7vw, 2rem);
  }

  .feature-title {
    max-width: 9ch;
    font-size: clamp(2.25rem, 9vw, 3.9rem);
  }

  .course-modules-title {
    max-width: 9ch;
  }

  .course-modules-list {
    --timeline-left: 1.15rem;
  }

  .course-module-card {
    padding-left: 3.65rem;
  }

  .course-module-body {
    padding: 1.15rem 1.15rem 1.25rem;
    border-radius: 24px;
  }

  .course-module-count {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.92rem;
  }

  .build-list {
    --timeline-left: 1.2rem;
  }

  .build-step {
    padding-left: 4rem;
  }

  .build-step-label {
    padding: 1rem 1rem 1rem 1.05rem;
  }

  .program-logotype {
    display: flex;
  }

  .section-title {
    max-width: 9ch;
    font-size: clamp(2.25rem, 9vw, 4rem);
  }

  .included-copy .section-title {
    width: fit-content;
    max-width: none;
    white-space: nowrap;
  }

  .differentials-impact,
  .authority-impact,
  .scarcity-number {
    max-width: none;
  }

  .scarcity-text {
    width: 100%;
    max-width: min(100%, 28ch);
    white-space: normal;
    text-wrap: pretty;
  }

  .differentials-grid {
    gap: 0.9rem;
  }

  .diff-card {
    min-height: 0;
    box-shadow:
      0 18px 38px rgba(107, 67, 16, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.34);
  }

  .diff-card:hover {
    transform: translateY(-8px);
  }

  .bonus-title,
  .offer-price {
    max-width: none;
  }

  .offer-copy,
  .offer-side {
    width: 100%;
  }

  .offer .section-title {
    max-width: none;
    font-size: clamp(2.8rem, 12.8vw, 4.35rem);
  }

  .offer-old-price {
    width: fit-content;
    margin-top: 0.95rem;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: end;
    justify-content: start;
    gap: 0.26rem;
    font-size: clamp(1.02rem, 4.3vw, 1.22rem);
  }

  .offer-old-price-prefix,
  .offer-old-price-suffix {
    padding-bottom: 0.06rem;
    line-height: 1;
  }

  .offer-old-price-value {
    font-size: clamp(2.15rem, 10.5vw, 3.55rem);
    align-self: end;
  }

  .offer-price-wrap {
    width: 100%;
    justify-items: start;
    gap: 0.38rem;
  }

  .offer-price {
    font-size: clamp(4.9rem, 20vw, 7rem);
    margin-left: -0.06em;
  }

  .offer-price-note {
    justify-content: flex-start;
    text-align: left;
    gap: 0.55rem;
    font-size: clamp(1.16rem, 4.7vw, 1.42rem);
  }

  .offer-price-badge {
    padding: 0.46rem 0.86rem 0.5rem;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
  }

  .offer-saving {
    max-width: none;
    text-align: left;
    font-size: clamp(1.05rem, 4.25vw, 1.18rem);
  }

  .offer-price-cta {
    justify-self: stretch;
    width: 100%;
    min-height: 62px;
    margin-top: 1rem;
    box-sizing: border-box;
  }

  .offer-highlight,
  .offer-methods {
    width: 100%;
  }

  .testimonials-featured-quote {
    max-width: 11.5ch;
    font-size: clamp(2.3rem, 10vw, 3.8rem);
  }

  .testimonials-marquee {
    margin-top: 2.2rem;
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.18) 8%,
      rgba(0, 0, 0, 0.8) 16%,
      rgba(0, 0, 0, 1) 27%,
      rgba(0, 0, 0, 1) 73%,
      rgba(0, 0, 0, 0.8) 84%,
      rgba(0, 0, 0, 0.18) 92%,
      transparent 100%
    );
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.18) 8%,
      rgba(0, 0, 0, 0.8) 16%,
      rgba(0, 0, 0, 1) 27%,
      rgba(0, 0, 0, 1) 73%,
      rgba(0, 0, 0, 0.8) 84%,
      rgba(0, 0, 0, 0.18) 92%,
      transparent 100%
    );
  }

  .testimonials-marquee::before,
  .testimonials-marquee::after {
    width: clamp(70px, 10vw, 120px);
    backdrop-filter: blur(8px) saturate(0.9);
    -webkit-backdrop-filter: blur(8px) saturate(0.9);
  }

  .testimonial-card {
    flex-basis: min(82vw, 310px);
    min-height: 0;
    padding: 1.05rem;
  }

  .testimonial-card-quote {
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .faq-trigger {
    padding: 1.15rem 1.1rem;
  }
}

@media (max-width: 560px) {
  :root {
    --header-offset: 82px;
    --section-gutter: 1.05rem;
  }

  .header-shell {
    gap: 0.62rem 0.75rem;
    padding: 0.58rem 0.82rem;
  }

  .brand-logo {
    height: 40px;
    max-width: min(64vw, 208px);
    transform: translateY(9px);
  }

  .site-nav {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav a {
    min-height: 2.75rem;
    padding-inline: 0.7rem;
    font-size: 0.86rem;
  }

  .menu-toggle {
    width: 3rem;
    height: 3rem;
    transform: translateY(9px);
  }

  .header-cta,
  .button-hero {
    width: 100%;
  }

  .hero {
    padding-top: calc(4rem + var(--header-offset));
    padding-bottom: 3.4rem;
  }

  .hero-logo {
    width: clamp(210px, 82vw, 360px);
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    gap: 0.58rem;
    min-height: 3.55rem;
    padding: 0.7rem 0.92rem 0.7rem 0.82rem;
  }

  .whatsapp-float-icon {
    flex-basis: 2.1rem;
    width: 2.1rem;
    height: 2.1rem;
  }

  .whatsapp-float-text {
    font-size: 0.82rem;
    letter-spacing: 0.03em;
  }

  .hero-bullets li {
    font-size: 0.96rem;
    min-height: 0;
    padding: 0.92rem 1rem 0.92rem 3.8rem;
    white-space: normal;
    text-wrap: pretty;
  }

  .build-list {
    --timeline-left: 1.05rem;
    --timeline-top: 1.75rem;
    --timeline-bottom: 1.75rem;
    gap: 0.7rem;
  }

  .course-modules-list {
    --timeline-left: 0.98rem;
    --timeline-top: 1.7rem;
    --timeline-bottom: 1.7rem;
    gap: 0.8rem;
  }

  .course-module-card {
    padding-left: 3.2rem;
  }

  .course-module-card::before {
    top: 1.58rem;
    box-shadow: 0 0 0 9px rgba(248, 243, 236, 0.98);
  }

  .course-module-body {
    gap: 0.85rem;
    padding: 1rem 0.98rem 1.08rem;
    border-radius: 22px;
  }

  .course-module-eyebrow {
    gap: 0.8rem;
  }

  .course-module-pill {
    min-height: 1.85rem;
    padding: 0.3rem 0.72rem 0.34rem;
    font-size: 0.74rem;
  }

  .course-module-count {
    width: 2.12rem;
    height: 2.12rem;
    font-size: 0.84rem;
  }

  .course-module-body h3 {
    font-size: clamp(1.48rem, 7vw, 2rem);
  }

  .course-module-body > p:last-child {
    font-size: 0.97rem;
    line-height: 1.52;
  }

  .build-step {
    min-height: 4.35rem;
    padding-left: 3.55rem;
  }

  .build-step::before {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.8rem;
  }

  .build-step::after {
    left: 0.98rem;
    box-shadow: 0 0 0 8px rgba(247, 242, 235, 0.94);
  }

  .build-step-label {
    padding: 0.92rem 0.92rem 0.92rem 0.98rem;
    border-radius: 20px;
    font-size: 1rem;
  }

  .problem-card {
    min-height: 0;
    align-items: center;
    padding: 0.78rem 0.88rem;
    gap: 0.75rem;
  }

  .problem-icon {
    flex-basis: 2.3rem;
    width: 2.3rem;
    height: 2.3rem;
    font-size: 0.84rem;
  }

  .problem-card strong {
    font-size: clamp(1.08rem, 5.2vw, 1.28rem);
    line-height: 1.05;
  }

  .feature-info-line {
    font-size: clamp(1.28rem, 5.8vw, 1.5rem);
    line-height: 1.36;
  }

  .feature-info-line-accent {
    font-size: clamp(1.38rem, 6.2vw, 1.62rem);
  }

  .integration-title,
  .integration-visual {
    width: min(100%, 19.8rem);
    margin-left: 0.45rem;
    margin-right: auto;
  }

  .integration-title {
    text-align: left;
  }

  .integration-shell {
    justify-items: start;
  }

  .integration-visual {
    justify-items: start;
  }

  .integration-title > .integration-title-manual {
    justify-items: start;
  }

  .integration-title-lead {
    width: 100%;
    text-align: left;
  }

  .integration-title-highlight {
    justify-items: start;
    text-align: left;
  }

  .integration-title-highlight > span {
    width: 100%;
    text-align: left;
  }

  .integration-text {
    width: 100%;
    text-align: left;
    text-wrap: pretty;
  }

  .audience-intro {
    justify-items: start;
    text-align: left;
  }

  .audience-title {
    width: 100%;
    font-size: clamp(2.55rem, 10.8vw, 3.35rem);
    text-align: left;
    white-space: normal;
    line-height: 0.93;
  }

  .included-copy .section-title {
    width: fit-content;
    max-width: none;
    font-size: clamp(1.52rem, 7vw, 2rem);
    white-space: nowrap;
  }

  .authority .section-title {
    width: fit-content;
    max-width: none;
    font-size: clamp(1.6rem, 7.2vw, 2.2rem);
    white-space: nowrap;
  }

  .wireframe-frame {
    padding: 0;
    border-radius: 0;
  }

  .wireframe-frame img {
    border-radius: 20px;
  }

  .testimonials-featured-meta,
  .testimonial-card-meta {
    gap: 0.7rem;
  }

  .audience-panel,
  .audience-column,
  .offer-highlight,
  .offer-methods {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .offer-method-price strong {
    font-size: 1.16rem;
  }

  .offer .section-title {
    font-size: clamp(3rem, 13.8vw, 4rem);
  }

  .offer-old-price {
    gap: 0.24rem;
    font-size: clamp(1.05rem, 4.8vw, 1.18rem);
  }

  .offer-old-price-value {
    font-size: clamp(2.35rem, 11.5vw, 3.15rem);
  }

  .offer-price {
    font-size: clamp(4.6rem, 20.5vw, 6.15rem);
    margin-left: -0.07em;
  }

  .offer-price-note {
    font-size: clamp(1.1rem, 5vw, 1.3rem);
  }

  .offer-saving {
    font-size: clamp(1rem, 4.45vw, 1.12rem);
  }

  .offer-price-cta {
    min-height: 60px;
    padding-right: 1.35rem;
    padding-left: 4rem;
    font-size: 1rem;
  }

  .offer-price-cta::after {
    left: 1rem;
    width: 2.2rem;
    height: 2.2rem;
  }

  .faq-trigger {
    padding: 1rem;
  }

  .faq-trigger-main {
    gap: 0.8rem;
  }

  .faq-badge {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 14px;
  }

  .faq-question {
    font-size: 1.2rem;
  }

  .faq-answer p {
    padding: 0 1rem 1rem 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] .reveal-line {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
