﻿@font-face {
  font-family: "Bebas Neue";
  src: url("../assets/fonts/bebas-neue-regular.ttf?v=20260814v4") format("truetype");
  font-display: swap;
}

/* Local Lenis essentials: avoids a render-blocking CDN stylesheet. */
html.lenis,
html.lenis body { height: auto; }

.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/montserrat-400.ttf?v=20260814v4") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/montserrat-600.ttf?v=20260814v4") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/montserrat-800.ttf?v=20260814v4") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --bg: #000915;
  --bg-soft: #031224;
  --panel: #07182c;
  --panel-soft: rgba(255, 255, 255, 0.06);
  --blue: #05a8ff;
  --blue-soft: #7bdcff;
  --white: #ffffff;
  --text: #e9f4ff;
  --muted: #a9bbcd;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(123, 220, 255, 0.32);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
.page {
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue-soft);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

h3 {
  line-height: 1.25;
}

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

.narrow {
  max-width: 880px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 120;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--white);
  color: #00101d;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: 3px;
  background: transparent;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--white));
  box-shadow: 0 0 18px rgba(5, 168, 255, 0.8);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.topbar.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 9, 21, 0.82);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

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

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.menu a,
.topbar-cta {
  transition: color 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.menu a:hover {
  color: var(--white);
}

.topbar-cta {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--white);
  color: #00101d;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 16px 44px rgba(255, 255, 255, 0.13);
  animation: ctaPulseSmall 2.6s var(--ease) infinite;
}

.topbar-cta::after {
  content: "";
  position: absolute;
  inset: -70% auto -70% -34%;
  width: 28%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  opacity: 0.56;
  pointer-events: none;
  animation: ctaSweep 3s ease-in-out infinite;
}

.topbar-cta:hover {
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(123, 220, 255, 0.62);
  background: #000915;
  color: var(--white);
  box-shadow: 0 18px 58px rgba(5, 168, 255, 0.42);
  animation: none;
}

.menu-button {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

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

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

.section-dark {
  position: relative;
  overflow: clip;
  background: var(--bg);
  color: var(--text);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0, rgba(5, 168, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 22%, transparent 78%, rgba(5, 168, 255, 0.06));
  opacity: 0.8;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: clamp(0.86rem, 1.4vw, 0.95rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, filter 220ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -36%;
  width: 28%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  opacity: 0;
  pointer-events: none;
}

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

.button-light {
  background: linear-gradient(135deg, var(--white), #bdeeff 42%, var(--blue));
  color: #00101d;
  box-shadow: 0 18px 54px rgba(5, 168, 255, 0.34);
  animation: ctaPulse 2.4s var(--ease) infinite;
}

.button-light:hover {
  border-color: rgba(123, 220, 255, 0.62);
  background: #000915;
  color: var(--white);
  box-shadow: 0 24px 72px rgba(5, 168, 255, 0.5);
  animation: none;
}

.button-light:hover::after {
  animation: ctaSweep 720ms ease;
}

.hero .button-light::after {
  opacity: 0.58;
  animation: ctaSweep 2.8s ease-in-out infinite;
}

.hero {
  min-height: 100svh;
  padding: 104px 0 clamp(70px, 9vw, 130px);
  background:
    radial-gradient(circle at 50% 12%, rgba(5, 168, 255, 0.28), transparent 32%),
    radial-gradient(circle at 50% 68%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #020b17 0%, #000915 72%, #00040a 100%);
  text-align: center;
}

.hero::after {
  display: none;
}

.hero-title span,
.hero-image,
.hero .pretitle,
.hero .button,
.hero-copy,
.scroll-text-accent {
  will-change: transform, opacity, filter;
}

.hero-inner {
  display: flex;
  min-height: calc(100svh - 104px);
  flex-direction: column;
  align-items: center;
}

.pretitle,
.section-label {
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  margin-top: 14px;
  font-size: clamp(4.4rem, 11vw, 10.8rem);
}

.hero-title span {
  display: block;
}

br.mobile-break {
  display: none;
}

br.desktop-break {
  display: block;
}

.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.82);
  text-stroke: 1px rgba(255, 255, 255, 0.82);
}

.hero-image {
  position: relative;
  z-index: 1;
  width: min(1120px, 112vw);
  margin: clamp(-10px, -1vw, 0px) auto 0;
  filter: drop-shadow(0 36px 90px rgba(0, 0, 0, 0.7));
}

.hero-image img {
  margin-inline: auto;
}

.hero .button {
  position: relative;
  z-index: 3;
  margin-top: clamp(-12px, -1vw, 10px);
}

.hero-copy {
  width: min(820px, 100%);
  margin-top: 30px;
  color: rgba(233, 244, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.video-card {
  position: relative;
  width: min(820px, 100%);
  margin: clamp(44px, 6vw, 74px) auto 0;
  padding: 8px;
  overflow: visible;
  border: 1px solid rgba(123, 220, 255, 0.42);
  border-radius: 10px;
  background:
    linear-gradient(#020812, #020812) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(5, 168, 255, 0.95), rgba(255, 255, 255, 0.18)) border-box;
  box-shadow: var(--shadow), 0 0 56px rgba(5, 168, 255, 0.28);
}

.video-card::before,
.video-card::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  pointer-events: none;
}

.video-card::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid var(--blue-soft);
  border-left: 2px solid var(--blue-soft);
}

.video-card::after {
  right: -2px;
  bottom: -2px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: #000;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.video-play {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(0, 9, 21, 0.58);
  box-shadow: 0 0 28px rgba(5, 168, 255, 0.34);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--white);
}

.video-card figcaption {
  margin-top: 12px;
  color: var(--blue-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.backstage {
  margin-top: 34px;
  color: var(--white);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.problem,
.not-only,
.different,
.method,
.practice,
.trajectory,
.testimonials,
.outcomes,
.jansen,
.bonus,
.offer,
.faq {
  padding: clamp(76px, 9vw, 132px) 0;
}

.problem {
  text-align: left;
}

.section-head h2,
.voice-band h2,
.split h2,
.offer h2,
.faq h2 {
  font-size: clamp(3.1rem, 7.4vw, 7.2rem);
  text-wrap: balance;
}

.problem-light {
  position: relative;
  overflow: clip;
  padding: clamp(118px, 12vw, 170px) 0 clamp(80px, 10vw, 142px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 255, 0.98)),
    #f5f9ff;
  color: #061321;
}

.problem-light::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 26%, rgba(5, 168, 255, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(217, 236, 249, 0.5));
}

.problem-layout {
  display: block;
  max-width: 980px;
  text-align: center;
}

.problem-copy {
  position: relative;
  z-index: 2;
  isolation: isolate;
  text-align: center;
}

.problem-copy .section-label {
  color: #007fc9;
}

.problem h2 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 16px auto 0;
  color: #061321;
  font-size: clamp(3.1rem, 5.5vw, 5.8rem);
  text-wrap: balance;
}

.problem p {
  margin: 22px auto 0;
  max-width: 760px;
  color: #304458;
  font-size: clamp(1rem, 1.65vw, 1.2rem);
}

.problem strong {
  color: #061321;
  font-weight: 800;
}

.problem-mic {
  --mic-rx: 0deg;
  --mic-ry: -4deg;
  --mic-shine-x: 50%;
  --mic-shine-y: 35%;
  position: relative;
  z-index: 5;
  width: min(360px, 72vw);
  margin: clamp(-18px, -1.2vw, -8px) auto 0;
  padding: 12px 18px 42px;
  perspective: 780px;
  transform-style: preserve-3d;
  touch-action: pan-y;
  cursor: grab;
  outline: none;
  filter: drop-shadow(0 28px 44px rgba(6, 19, 33, 0.2)) drop-shadow(0 0 24px rgba(0, 159, 235, 0.2));
  user-select: none;
}

.problem-mic-stage {
  position: relative;
  display: block;
  width: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

.problem-mic-webgl {
  position: absolute;
  inset: -30% -14% -8%;
  z-index: 4;
  display: block;
  opacity: 0;
  transition: opacity .45s ease;
}

.problem-mic-webgl canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.problem-mic.is-webgl-ready .problem-mic-webgl { opacity: 1; }
.problem-mic.is-webgl-ready .problem-mic-stage > img { opacity: 0; }

.problem-mic--ink {
  --ink-x: 0px;
  --ink-y: 0px;
  --ink-x-reverse: 0px;
  --ink-y-reverse: 0px;
  cursor: default;
}

.problem-mic--ink .problem-mic-stage {
  min-height: clamp(230px, 30vw, 330px);
  display: grid;
  place-items: center;
  isolation: isolate;
  contain: layout paint;
}

.problem-mic--ink .problem-mic-stage > img {
  z-index: 6;
  width: min(330px, 92%);
  opacity: 1;
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 24px 24px rgba(5, 27, 44, .2));
  transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .5s ease;
}

.problem-mic--ink:hover .problem-mic-stage > img {
  transform: translateY(-10px) scale(1.075) rotate(-.6deg);
  filter: drop-shadow(0 30px 28px rgba(5, 27, 44, .28));
}

.mic-ink {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: .9;
  transition: border-radius .7s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.mic-ink--one {
  width: 78%;
  height: 68%;
  background: radial-gradient(circle at 28% 24%, #b9f2ff 0 8%, #34c9ff 30%, #008fd9 61%, #004f99 100%);
  box-shadow: 0 18px 52px rgba(0, 145, 222, .34), inset 0 0 32px rgba(175, 239, 255, .38);
  border-radius: 43% 57% 66% 34% / 58% 35% 65% 42%;
  transform: translate3d(var(--ink-x), var(--ink-y), 0) rotate(-7deg);
}

.mic-ink--two {
  z-index: 2;
  width: 54%;
  height: 80%;
  background: linear-gradient(145deg, rgba(154,235,255,.96), rgba(0,172,235,.88) 48%, rgba(0,83,174,.82));
  border-radius: 62% 38% 39% 61% / 32% 63% 37% 68%;
  transform: translate3d(var(--ink-x-reverse), var(--ink-y-reverse), 0) rotate(11deg);
  opacity: .72;
}

.mic-ink--three {
  z-index: 3;
  width: 24%;
  height: 30%;
  left: 16%;
  bottom: 10%;
  background: linear-gradient(145deg, #c7f6ff, #31c8ff 55%, #007bbb);
  box-shadow: 0 10px 28px rgba(0, 157, 226, .34);
  border-radius: 71% 29% 58% 42% / 38% 64% 36% 62%;
  transform: translate3d(var(--ink-x), var(--ink-y-reverse), 0) rotate(19deg);
}

.problem-mic--ink:hover .mic-ink--one { border-radius: 60% 40% 36% 64% / 35% 62% 38% 65%; }
.problem-mic--ink:hover .mic-ink--two { border-radius: 35% 65% 61% 39% / 66% 34% 58% 42%; }

.problem-mic img {
  position: relative;
  z-index: 2;
  margin-inline: auto;
  transform: translate3d(0, -10px, 54px);
  transform-style: preserve-3d;
  will-change: transform;
  pointer-events: none;
  -webkit-user-drag: none;
  transition: filter 220ms ease;
}

.problem-mic.is-dragging { cursor: grabbing; }

.problem-mic:focus-visible {
  border-radius: 28px;
  box-shadow: 0 0 0 2px rgba(0, 159, 235, 0.65);
}

.problem-mic-depth {
  position: absolute;
  inset: 12% 22% 25%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 48% 42%, rgba(28, 178, 242, 0.24), rgba(5, 37, 60, 0.12) 48%, transparent 72%);
  transform: translate3d(0, 14px, -58px) scale(1.12);
  filter: blur(12px);
  pointer-events: none;
}

.problem-mic-shine {
  position: absolute;
  inset: 6% 14% 24%;
  z-index: 3;
  border-radius: 50%;
  background: radial-gradient(circle at var(--mic-shine-x) var(--mic-shine-y), rgba(255,255,255,.44), rgba(154,229,255,.12) 13%, transparent 38%);
  opacity: .72;
  pointer-events: none;
  transform: translateZ(64px);
}

.problem-mic::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  z-index: 0;
  width: 82%;
  height: 28%;
  transform: translateX(-50%) perspective(360px) rotateX(64deg);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(6, 19, 33, 0.24), rgba(5, 168, 255, 0.16) 42%, transparent 72%);
  filter: blur(7px);
}

.problem-mic::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -70px;
  height: 118px;
  transform: scaleY(-1);
  background: url("../assets/images/microfone.webp?v=20260814v4") center bottom / contain no-repeat;
  opacity: 0.12;
  filter: blur(2px) grayscale(1);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 80%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.oratoria-section {
  overflow: clip;
  padding: clamp(84px, 10vw, 144px) 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(5, 168, 255, 0.24), transparent 28%),
    radial-gradient(circle at 22% 20%, rgba(123, 220, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #020812 0%, #061321 54%, #02050a 100%);
}

.oratoria-section::before {
  background:
    linear-gradient(rgba(123, 220, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 220, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 62% 46%, #000, transparent 72%);
  opacity: 0.75;
}

.oratoria-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.oratoria-copy {
  max-width: 640px;
}

.oratoria-kicker {
  color: var(--blue-soft);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow: 0 0 32px rgba(5, 168, 255, 0.48);
}

.oratoria-copy h2 {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(3.3rem, 6.8vw, 7.1rem);
  line-height: 0.92;
  text-wrap: balance;
}

.oratoria-copy h2 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(233, 244, 255, 0.86);
  text-shadow: none;
}

.oratoria-copy > p:not(.oratoria-kicker) {
  margin-top: 24px;
  max-width: 600px;
  color: rgba(233, 244, 255, 0.76);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.oratoria-lab {
  position: relative;
  min-height: clamp(560px, 56vw, 660px);
  border: 1px solid rgba(123, 220, 255, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 48%, rgba(123, 220, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.12),
    0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

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

.oratoria-lab::before {
  inset: 16px;
  border: 1px solid rgba(123, 220, 255, 0.14);
  border-radius: 15px;
}

.oratoria-lab::after {
  left: 12%;
  right: 12%;
  bottom: 52px;
  height: 16px;
  border-radius: 50%;
  background: rgba(5, 168, 255, 0.42);
  filter: blur(22px);
  animation: stageGlow 2.8s ease-in-out infinite;
}

.voice-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(420px, 72%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.voice-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(123, 220, 255, 0.32);
  border-radius: 50%;
  opacity: 0;
  animation: voiceRing 3.2s ease-out infinite;
}

.voice-orbit span:nth-child(2) {
  animation-delay: 760ms;
}

.voice-orbit span:nth-child(3) {
  animation-delay: 1520ms;
}

.oratoria-person {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 2;
  width: min(390px, 70%);
  margin: 0;
  transform: translate(-50%, -50%);
  animation: portraitFloat 4.2s ease-in-out infinite;
  filter: drop-shadow(0 34px 56px rgba(0, 0, 0, 0.46));
}

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

.oratoria-person::before {
  left: 4%;
  right: 4%;
  bottom: 3%;
  height: 82%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 25%, rgba(233, 244, 255, 0.32), transparent 28%),
    radial-gradient(circle at 50% 52%, rgba(5, 168, 255, 0.38), transparent 56%);
  filter: blur(18px);
}

.oratoria-person::after {
  left: 50%;
  bottom: -2%;
  width: 78%;
  height: 18%;
  transform: translateX(-50%) perspective(280px) rotateX(64deg);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(5, 168, 255, 0.38), rgba(123, 220, 255, 0.16) 44%, transparent 74%);
  filter: blur(9px);
}

.oratoria-person img {
  position: relative;
  z-index: 1;
  width: 100%;
  transform: translateY(4%);
  mask-image: linear-gradient(180deg, #000 0 78%, transparent 98%);
}

.wave-meter {
  position: absolute;
  left: 50%;
  bottom: 70px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: end;
  justify-content: center;
  width: min(360px, 70%);
  height: 90px;
  padding: 18px 22px;
  transform: translateX(-50%);
  border: 1px solid rgba(123, 220, 255, 0.26);
  border-radius: 999px;
  background: rgba(2, 8, 18, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.wave-meter span {
  width: 10px;
  height: calc(18px + var(--i) * 5px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--white), var(--blue-soft) 42%, var(--blue));
  box-shadow: 0 0 18px rgba(5, 168, 255, 0.52);
  animation: audioBar 950ms ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * -90ms);
}

.oratoria-card {
  position: absolute;
  z-index: 4;
  width: min(240px, 42%);
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(123, 220, 255, 0.2);
  border-radius: 14px;
  background: rgba(5, 13, 26, 0.76);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: cardDrift 5s ease-in-out infinite;
}

.oratoria-card span {
  color: var(--blue-soft);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.oratoria-card strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.oratoria-card p {
  margin-top: 8px;
  color: rgba(233, 244, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.55;
}

.card-clarity {
  left: -28px;
  top: 52px;
}

.card-presence {
  right: -24px;
  top: 86px;
  animation-delay: -1.4s;
}

.card-connection {
  left: 46px;
  bottom: 118px;
  animation-delay: -2.6s;
}

.oratoria-cta {
  position: relative;
  z-index: 1;
  width: auto;
  min-width: 214px;
  margin-top: 34px;
}

@keyframes voiceRing {
  0% {
    opacity: 0;
    transform: scale(0.36);
  }

  18% {
    opacity: 1;
  }

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

@keyframes portraitFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-14px);
  }
}

@keyframes portraitFloatMobile {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes audioBar {
  from {
    transform: scaleY(0.42);
    opacity: 0.64;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes stageGlow {
  0%,
  100% {
    opacity: 0.46;
    transform: scaleX(0.82);
  }

  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

.develop-card,
.feature-card,
.trail-card,
.mini-card,
.testimonial,
.offer-box,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.develop-card {
  padding: clamp(28px, 4vw, 42px);
}

.develop-card h3 {
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.develop-card p,
.feature-card p,
.trail-card p,
.mini-card p,
.testimonial blockquote,
.practice p,
.jansen p,
.bonus p,
.faq-list p {
  color: var(--muted);
}

.check-list,
.offer-list,
.big-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.offer-list li,
.big-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.check-list li::before,
.offer-list li::before,
.big-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(5, 168, 255, 0.78);
}

.develop-card > p {
  margin-top: 26px;
  font-size: 1.02rem;
}

.voice-band {
  padding: clamp(88px, 12vw, 154px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(5, 168, 255, 0.28), transparent 36%),
    #020812;
}

.voice-band .container {
  max-width: 960px;
}

.voice-band .button {
  margin-top: 28px;
}

.section-head {
  width: min(930px, 100%);
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.section-head p {
  width: min(760px, 100%);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 28px;
}

.feature-card img,
.trail-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 22px rgba(5, 168, 255, 0.32));
}

.feature-card h3,
.trail-card h3,
.mini-card h3 {
  color: var(--white);
  font-size: 1.12rem;
  text-transform: uppercase;
}

.feature-card p,
.trail-card p,
.mini-card p {
  margin-top: 12px;
  font-size: 0.92rem;
}

.lesson-carousel {
  position: relative;
  width: min(1040px, 100%);
  margin-top: clamp(34px, 5vw, 56px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(123, 220, 255, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(5, 168, 255, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.12),
    0 28px 86px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.lesson-stage {
  position: relative;
  padding: clamp(12px, 2.2vw, 22px);
}

.lesson-track {
  display: flex;
  gap: 18px;
  transition: transform 520ms var(--ease);
}

.lesson-slide {
  flex: 0 0 calc(100% - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(123, 220, 255, 0.18);
  border-radius: 16px;
  background: rgba(2, 8, 18, 0.5);
  opacity: 0.42;
  transform: scale(0.975);
  transition: opacity 360ms ease, transform 360ms var(--ease);
}

.lesson-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.lesson-slide video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-right: 1px solid rgba(123, 220, 255, 0.18);
  border-radius: 0;
  background: #000;
  box-shadow: none;
  object-fit: cover;
}

.lesson-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: auto;
  padding: clamp(20px, 3vw, 34px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(5, 168, 255, 0.24), transparent 34%),
    rgba(2, 8, 18, 0.62);
}

.lesson-caption span {
  color: var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lesson-caption h3 {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.45vw, 2.65rem);
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.lesson-caption p {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  text-wrap: balance;
}

.lesson-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(123, 220, 255, 0.42);
  border-radius: 50%;
  background: rgba(2, 8, 18, 0.78);
  color: var(--white);
  font-size: 2.1rem;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease;
}

.lesson-arrow:hover,
.lesson-arrow:focus-visible {
  border-color: var(--blue-soft);
  background: rgba(5, 168, 255, 0.26);
  transform: translateY(-50%) scale(1.06);
}

.lesson-prev {
  left: 24px;
}

.lesson-next {
  right: 24px;
}

.lesson-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 clamp(12px, 2.2vw, 22px) clamp(12px, 2.2vw, 22px);
}

.lesson-tabs button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(123, 220, 255, 0.22);
  border-radius: 999px;
  background: rgba(2, 8, 18, 0.62);
  color: rgba(233, 244, 255, 0.78);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.lesson-tabs button span {
  color: var(--blue-soft);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.lesson-tabs button:hover,
.lesson-tabs button:focus-visible,
.lesson-tabs button.is-active {
  border-color: rgba(123, 220, 255, 0.58);
  background: linear-gradient(135deg, rgba(233, 244, 255, 0.95), rgba(5, 168, 255, 0.86));
  color: #02101d;
  transform: translateY(-2px);
}

.lesson-tabs button.is-active span,
.lesson-tabs button:hover span,
.lesson-tabs button:focus-visible span {
  color: #02101d;
}

.center-cta {
  margin-top: clamp(34px, 5vw, 56px);
  text-align: center;
}

.center-cta p {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 600;
}

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

.trail-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(26px, 3vw, 34px);
}

.practice .portrait-card,
.jansen .portrait-card,
.bonus-image {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #020812;
  box-shadow: var(--shadow);
}

.practice-light {
  position: relative;
  overflow: clip;
  padding: clamp(86px, 10vw, 140px) 0;
  background:
    radial-gradient(circle at 74% 18%, rgba(5, 168, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
  color: #061321;
}

.practice-light::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(5, 168, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 168, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 70% 38%, #000, transparent 72%);
}

.practice-light .container {
  position: relative;
  z-index: 1;
}

.practice-light h2 {
  color: #061321;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 16px 42px rgba(6, 19, 33, 0.08);
}

.practice-light p {
  max-width: 620px;
  color: #304458;
  font-weight: 500;
}

.practice-flow {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(94px, 150px) auto;
  gap: 12px;
  align-items: center;
  width: fit-content;
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(5, 168, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(5, 168, 255, 0.12);
  backdrop-filter: blur(12px);
}

.practice-flow span {
  color: #061321;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.practice-flow i {
  position: relative;
  display: block;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(5, 168, 255, 0.2);
}

.practice-flow i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-soft), var(--blue));
  box-shadow: 0 0 18px rgba(5, 168, 255, 0.56);
  animation: practiceSignal 1.8s ease-in-out infinite;
}

.practice-light .portrait-card {
  position: relative;
  border: 1px solid rgba(5, 168, 255, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(6, 19, 33, 0.16);
}

.practice-light .portrait-card::before {
  content: "AO VIVO NA PRATICA";
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 8px 14px 8px 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #061321;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(6, 19, 33, 0.14);
  backdrop-filter: blur(12px);
}

.practice-light .portrait-card::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 3;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3158;
  box-shadow: 0 0 0 0 rgba(255, 49, 88, 0.5);
  animation: recPulse 1.5s ease-out infinite;
}

.practice-light .portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

@keyframes practiceSignal {
  0% {
    transform: translateX(-110%);
  }

  55%,
  100% {
    transform: translateX(250%);
  }
}

@keyframes recPulse {
  100% {
    box-shadow: 0 0 0 12px rgba(255, 49, 88, 0);
  }
}

.portrait-card img,
.bonus-image img {
  width: 100%;
}

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

.mini-card {
  min-height: 210px;
  padding: 26px;
}

.trajectory-light {
  position: relative;
  overflow: clip;
  padding: clamp(86px, 10vw, 142px) 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(5, 168, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #edf7ff 100%);
  color: #061321;
}

.trajectory-light::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(5, 168, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 168, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 38%, #000, transparent 78%);
}

.trajectory-light .container {
  position: relative;
  z-index: 1;
}

.trajectory-light .section-head h2 {
  color: #061321;
  font-weight: 900;
}

.trajectory-light .section-head p {
  color: #304458;
}

.journey-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  margin-top: clamp(46px, 6vw, 74px);
}

.journey-flow::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 78px;
  height: 2px;
  border-radius: 999px;
  background: rgba(5, 168, 255, 0.18);
}

.journey-flow::after {
  content: "";
  position: absolute;
  left: 7%;
  top: 78px;
  width: 18%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-soft), var(--blue));
  box-shadow: 0 0 22px rgba(5, 168, 255, 0.42);
  animation: journeySignal 4.8s ease-in-out infinite;
}

.journey-step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.journey-icon {
  position: relative;
  z-index: 1;
  width: clamp(88px, 9vw, 132px);
  aspect-ratio: 1;
  animation: journeyIconFloat 4.2s ease-in-out infinite;
}

.journey-icon img {
  width: clamp(88px, 9vw, 132px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(6, 19, 33, 0.12));
}

.journey-icon--training {
  animation-name: journeyIconPulse;
  animation-delay: -0.6s;
}

.journey-icon--mentoring {
  animation-delay: -1.1s;
}

.journey-icon--premium {
  animation-name: journeyIconGlow;
  animation-delay: -1.6s;
}

.journey-icon i,
.journey-icon::before,
.journey-icon::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.journey-icon--theater::before,
.journey-icon--theater::after {
  content: none;
  top: 41%;
  width: 12px;
  height: 5px;
  border-radius: 999px;
  background: #06215f;
  opacity: 0;
  animation: theaterBlink 3s ease-in-out infinite;
}

.journey-icon--theater::before {
  left: 34%;
}

.journey-icon--theater::after {
  right: 34%;
  animation-delay: 90ms;
}

.journey-icon--training::before {
  content: none;
  left: 50%;
  top: 50%;
  width: 82%;
  height: 82%;
  border: 2px solid rgba(5, 168, 255, 0.42);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  animation: teachingPulse 3s ease-in-out infinite;
}

.journey-icon--training::after {
  content: none;
  left: 46%;
  top: 28%;
  width: 34%;
  height: 26%;
  border-top: 3px solid #05a8ff;
  border-bottom: 3px solid #05a8ff;
  box-shadow: 0 12px 0 #05a8ff;
  opacity: 0;
  transform: translateY(8px);
  animation: teachingLines 3s ease-in-out infinite;
}

.group-orbit {
  left: 50%;
  top: 50%;
  width: 54%;
  height: 54%;
  border: 2px solid rgba(5, 168, 255, 0.35);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  animation: groupOrbit 3s ease-in-out infinite;
}

.talk-dot {
  width: 13px;
  height: 10px;
  border: 2px solid rgba(5, 168, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  opacity: 0;
  animation: talkPop 3s ease-in-out infinite;
}

.talk-dot-one {
  left: 28%;
  top: 38%;
}

.talk-dot-two {
  left: 47%;
  top: 27%;
  animation-delay: 140ms;
}

.talk-dot-three {
  right: 27%;
  top: 39%;
  animation-delay: 280ms;
}

.gold-halo {
  left: 50%;
  top: 50%;
  width: 88%;
  height: 88%;
  border: 3px solid rgba(255, 195, 30, 0.62);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  filter: drop-shadow(0 0 16px rgba(255, 191, 0, 0.5));
  animation: goldHalo 3s ease-in-out infinite;
}

.play-shine {
  left: 35%;
  top: 35%;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.88), rgba(255, 210, 60, 0.38) 42%, transparent 70%);
  opacity: 0;
  animation: playShine 3s ease-in-out infinite;
}

.journey-step span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-top: 18px;
  border-radius: 50%;
  background: #061321;
  color: var(--blue-soft);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  box-shadow: 0 12px 30px rgba(6, 19, 33, 0.16);
}

.journey-step h3 {
  margin-top: 18px;
  color: #061321;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  text-transform: uppercase;
}

.journey-step p {
  margin-top: 10px;
  max-width: 230px;
  color: #304458;
  font-size: 0.95rem;
}

@keyframes journeySignal {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(360%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes theaterBlink {
  0%,
  66%,
  100% {
    opacity: 0;
    transform: scaleX(0.4);
  }

  72%,
  78% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes teachingPulse {
  0%,
  55%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }

  68%,
  84% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes teachingLines {
  0%,
  54%,
  100% {
    opacity: 0;
    transform: translateY(8px);
  }

  70%,
  84% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes groupOrbit {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.68);
  }

  76% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes talkPop {
  0%,
  52%,
  100% {
    opacity: 0;
    transform: translateY(6px) scale(0.65);
  }

  66%,
  82% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes goldHalo {
  0%,
  55%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }

  72% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes playShine {
  0%,
  60%,
  100% {
    opacity: 0;
    transform: scale(0.6);
  }

  76% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@keyframes journeyIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

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

  50% {
    transform: scale(1.07);
  }
}

@keyframes journeyIconTilt {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-4deg);
  }
}

@keyframes journeyIconGlow {
  0%,
  100% {
    filter: drop-shadow(0 18px 34px rgba(6, 19, 33, 0.12)) drop-shadow(0 0 0 rgba(255, 195, 30, 0));
  }

  50% {
    filter: drop-shadow(0 20px 40px rgba(218, 157, 12, 0.38)) drop-shadow(0 0 24px rgba(255, 195, 30, 0.48));
  }
}

.testimonials-light {
  position: relative;
  overflow: clip;
  padding: clamp(86px, 10vw, 144px) 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(5, 168, 255, 0.16), transparent 30%),
    radial-gradient(circle at 82% 68%, rgba(123, 220, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #edf7ff 100%);
  color: #061321;
}

.testimonials-light::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(5, 168, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 168, 255, 0.06) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 40%, #000, transparent 74%);
}

.testimonials-light .container {
  position: relative;
  z-index: 1;
}

.testimonials-light .section-label {
  color: #007fc9;
}

.testimonials-light .section-head h2 {
  color: #061321;
  font-weight: 900;
}

.testimonials-light .section-head p {
  color: #304458;
}

.testimonial-scroll {
  position: relative;
  width: min(1080px, 100%);
  margin-inline: auto;
  padding: clamp(12px, 1.6vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(5, 168, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 34px 100px rgba(6, 19, 33, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.testimonial-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(5, 168, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #f8fcff 0%, #ffffff 52%, #e7f5ff 100%);
}

.testimonial-track {
  display: flex;
  transition: transform 680ms var(--ease);
}

.testimonial-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 66px);
  align-items: center;
  min-height: clamp(460px, 52vw, 620px);
  padding: clamp(28px, 5vw, 68px);
  opacity: 0.28;
  transform: scale(0.975);
  transition: opacity 420ms ease, transform 680ms var(--ease);
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-photo {
  position: relative;
  width: min(330px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(5, 168, 255, 0.22);
  border-radius: 50%;
  background: #dff3ff;
  box-shadow:
    0 24px 70px rgba(6, 19, 33, 0.2),
    0 0 0 14px rgba(5, 168, 255, 0.06);
}

.testimonial-photo::before,
.testimonial-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.testimonial-photo::before {
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.testimonial-photo::after {
  inset: auto 15% -8% 15%;
  height: 22%;
  background: rgba(5, 168, 255, 0.24);
  filter: blur(18px);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.testimonial-photo--kelvin {
  background: #07182c;
}

.testimonial-photo--kelvin img {
  object-position: 50% 44%;
  transform: scale(1.45);
  filter: contrast(1.06) saturate(1.04);
}

.testimonial-copy {
  position: relative;
  padding-left: clamp(18px, 3vw, 36px);
}

.testimonial-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue-soft), var(--blue));
  box-shadow: 0 0 22px rgba(5, 168, 255, 0.42);
}

.testimonial-copy span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #007fc9;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial-copy blockquote {
  position: relative;
  color: #061321;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 4.2vw, 4.45rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.testimonial-copy blockquote::before {
  content: "â€œ";
  position: absolute;
  left: -0.2em;
  top: -0.28em;
  color: rgba(5, 168, 255, 0.14);
  font-size: 2.2em;
  line-height: 1;
}

.testimonial-copy p {
  margin-top: 24px;
  color: #007fc9;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(5, 168, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #061321;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 18px 44px rgba(6, 19, 33, 0.14);
  backdrop-filter: blur(14px);
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  border-color: rgba(5, 168, 255, 0.72);
  background: #061321;
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.testimonial-arrow:disabled {
  opacity: 0.38;
  cursor: default;
  transform: translateY(-50%);
}

.testimonial-arrow:disabled:hover {
  border-color: rgba(5, 168, 255, 0.24);
  background: rgba(255, 255, 255, 0.78);
  color: #061321;
}

.testimonial-prev {
  left: clamp(18px, 3vw, 34px);
}

.testimonial-next {
  right: clamp(18px, 3vw, 34px);
}

.testimonial-ui {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px clamp(6px, 1.5vw, 12px) 4px;
}

.testimonial-progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(5, 168, 255, 0.16);
}

.testimonial-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-soft), var(--blue));
  box-shadow: 0 0 18px rgba(5, 168, 255, 0.52);
  transition: width 520ms var(--ease);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 19, 33, 0.2);
  cursor: pointer;
  transition: width 240ms var(--ease), background 240ms ease;
}

.testimonial-dots button.is-active {
  width: 30px;
  background: var(--blue);
}

.testimonial-down {
  position: absolute;
  right: clamp(22px, 3vw, 38px);
  bottom: clamp(22px, 3vw, 34px);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(5, 168, 255, 0.34);
  border-radius: 50%;
  background: #061321;
  color: var(--white);
  font-size: 1.55rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  box-shadow: 0 20px 54px rgba(6, 19, 33, 0.24);
  transition: opacity 240ms ease, transform 240ms var(--ease);
}

.testimonial-down.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: testimonialDown 1.35s ease-in-out infinite;
}

@keyframes testimonialDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

.big-list {
  margin: 0;
  gap: 18px;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.outcomes {
  background:
    radial-gradient(circle at 18% 18%, rgba(5, 168, 255, 0.22), transparent 32%),
    radial-gradient(circle at 84% 68%, rgba(123, 220, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #000915 0%, #031224 100%);
}

.outcomes .split {
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.outcomes h2 {
  position: relative;
  max-width: 10.4ch;
  color: var(--text);
  line-height: 1;
  text-shadow: 0 18px 52px rgba(5, 168, 255, 0.16);
}

.outcomes .big-list {
  gap: 16px;
}

.outcomes .big-list li {
  min-height: 78px;
  padding: 20px 24px 20px 60px;
  overflow: hidden;
  border: 1px solid rgba(123, 220, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 14px 38px rgba(0, 0, 0, 0.14);
  color: rgba(233, 244, 255, 0.9);
  backdrop-filter: blur(14px);
  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.outcomes .big-list li::before {
  top: 29px;
  left: 26px;
  width: 11px;
  height: 11px;
}

.outcomes .big-list li::after {
  content: none;
}

.outcomes .big-list li:hover,
.outcomes .big-list li:focus-visible {
  transform: scale(1.025);
  border-color: rgba(123, 220, 255, 0.58);
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.14),
    0 26px 68px rgba(5, 168, 255, 0.18);
}

.jansen blockquote {
  margin-top: 22px;
  padding-left: 22px;
  border-left: 2px solid var(--blue);
  color: var(--white);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.45;
}

.jansen blockquote span {
  display: block;
  margin-top: 12px;
  color: var(--blue-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.jansen .kinetic-title {
  position: relative;
  display: grid;
  width: min-content;
  max-width: 100%;
  margin-top: 12px;
  font-size: clamp(4.4rem, 7.2vw, 7.8rem);
  line-height: 0.82;
  color: var(--white);
  cursor: default;
  outline: none;
  text-shadow:
    0 0 24px rgba(5, 168, 255, 0.22),
    0 28px 72px rgba(0, 0, 0, 0.42);
}

.jansen-authority-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 18px 0 10px;
  padding: 10px 16px;
  border: 1px solid rgba(123, 220, 255, 0.34);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(123, 220, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(5, 168, 255, 0.12);
}

.jansen .kinetic-word {
  display: block;
  width: max-content;
  transform-origin: left center;
  transition:
    transform 0.28s var(--ease),
    color 0.28s ease,
    text-shadow 0.28s ease,
    -webkit-text-stroke-color 0.28s ease;
  animation: kineticTitle 4.4s ease-in-out infinite;
  will-change: transform;
}

.jansen .kinetic-word:nth-child(2) {
  animation-delay: 0.18s;
}

.jansen .kinetic-title:hover .kinetic-word,
.jansen .kinetic-title:focus-visible .kinetic-word {
  transform: scaleX(1.055);
  color: #f8fcff;
  -webkit-text-stroke: 1px rgba(125, 220, 255, 0.34);
  text-shadow:
    0 0 18px rgba(5, 168, 255, 0.4),
    0 20px 58px rgba(0, 0, 0, 0.52);
}

.jansen-image-wheel {
  align-self: start;
  justify-self: center;
  position: relative;
  width: min(480px, 100%);
  margin-top: 34px;
  margin-bottom: 44px;
  aspect-ratio: 1;
  isolation: isolate;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  perspective: 900px;
  perspective-origin: 50% 48%;
}

.jansen-image-wheel.is-dragging {
  cursor: grabbing;
}

.jansen-image-wheel:focus:not(:focus-visible) {
  outline: none;
}

.jansen-image-wheel:focus-visible {
  outline: 1px solid rgba(95, 214, 255, 0.72);
  outline-offset: 5px;
  border-radius: 24px;
}

.jansen-image-wheel::before {
  content: none;
}

.interaction-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(41, 180, 240, 0.45);
  border-radius: 999px;
  background: rgba(0, 19, 32, 0.78);
  color: #c9f2ff;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0, 36, 59, .24);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.interaction-hint > .interaction-hint-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #08a8f4;
  color: #001320;
  font-size: .85rem;
  animation: interactionHint 1.8s ease-in-out infinite;
}

.interaction-hint--mic {
  position: absolute;
  left: 50%;
  bottom: 2px;
  z-index: 5;
  padding: 6px 12px 6px 7px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.interaction-hint--wheel {
  position: absolute;
  left: 50%;
  bottom: -42px;
  z-index: 10;
  padding: 6px 11px 6px 7px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.interaction-hint-touch { display: none; }

@media (pointer: coarse), (hover: none) {
  .interaction-hint-desktop { display: none; }
  .interaction-hint-touch { display: inline; }
  .interaction-hint { backdrop-filter: none; }
  .problem-mic--ink:hover .problem-mic-stage > img {
    transform: translateY(-4px) scale(1.04);
  }
}

@keyframes interactionHint {
  0%, 100% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
}

.interaction-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(20, 181, 248, .78);
  border-radius: 50%;
  background: rgba(0, 128, 191, .08);
  color: #d9f7ff;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, width, height, opacity;
  transition: width .22s ease, height .22s ease, background .22s ease, border-color .22s ease, opacity .18s ease;
}

.interaction-cursor.is-visible { opacity: 1; }
.interaction-cursor.is-action {
  width: 68px;
  height: 68px;
  border-color: rgba(119, 222, 255, .92);
  background: rgba(0, 67, 103, .72);
  box-shadow: 0 0 0 6px rgba(9, 167, 235, .08), 0 12px 34px rgba(0,0,0,.2);
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .interaction-cursor { display: none; }
}

.image-wheel-orbit {
  position: absolute;
  inset: 0;
  z-index: auto;
  transform-style: preserve-3d;
  will-change: transform;
}

.image-wheel-item {
  --item-x: 0px;
  --item-y: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(66px, 6.5vw, 86px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(142, 225, 255, 0.7);
  border-radius: 12px;
  background: #031421;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42), 0 0 18px rgba(0, 161, 255, 0.12);
  transform: translate3d(var(--item-x), var(--item-y), 0) translate(-50%, -50%);
  transform-style: preserve-3d;
  will-change: transform, filter;
}

.image-wheel-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  pointer-events: none;
  -webkit-user-drag: none;
}

.image-wheel-center {
  position: absolute;
  inset: -1% 19% 3%;
  z-index: 5;
  display: grid;
  place-items: end center;
  margin: 0;
  overflow: hidden;
  border-radius: 46% 46% 24% 24%;
  background: radial-gradient(circle at 50% 48%, rgba(19, 119, 177, 0.3), rgba(0, 16, 28, 0.14) 57%, transparent 70%);
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.48));
  transform: translateZ(0);
  pointer-events: none;
}

.image-wheel-center::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(0, 17, 29, 0.82) 76%, #00111d 100%);
}

.image-wheel-center img {
  position: relative;
  z-index: 2;
  display: block;
  width: 164%;
  max-width: none;
  height: auto;
  mask-image: linear-gradient(180deg, #000 0 74%, rgba(0, 0, 0, 0.88) 83%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0 74%, rgba(0, 0, 0, 0.88) 83%, transparent 100%);
}

.image-wheel-halo {
  display: none;
}

.image-wheel-caption {
  position: absolute;
  right: 3%;
  bottom: 1%;
  z-index: 4;
  padding: 8px 12px;
  border: 1px solid rgba(91, 209, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 20, 34, 0.82);
  color: #83ddff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.jansen-photo {
  position: relative;
  align-self: center;
  display: grid;
  place-items: center;
  width: min(720px, 100%);
  min-height: clamp(560px, 58vw, 700px);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.jansen-photo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 118%;
  height: 94%;
  transform: translate(-50%, -48%);
  border-radius: 46% 42% 48% 38%;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.2), transparent 43%),
    radial-gradient(circle at 18% 25%, rgba(5, 168, 255, 0.2), transparent 26%),
    radial-gradient(circle at 88% 34%, rgba(255, 214, 122, 0.18), transparent 24%),
    radial-gradient(circle at 58% 84%, rgba(5, 168, 255, 0.14), transparent 28%);
  filter: blur(2px);
}

.jansen-photo::after {
  content: "";
  position: absolute;
  inset: 7% -4% 8%;
  z-index: 0;
  border-radius: 46% 38% 44% 42%;
  background:
    radial-gradient(circle at 6% 18%, rgba(255, 255, 255, 0.2) 0 3px, transparent 4px),
    radial-gradient(circle at 92% 16%, rgba(255, 255, 255, 0.15) 0 4px, transparent 5px),
    radial-gradient(circle at 13% 84%, rgba(123, 220, 255, 0.2) 0 5px, transparent 6px),
    radial-gradient(circle at 78% 88%, rgba(255, 214, 122, 0.16) 0 4px, transparent 5px);
  opacity: 0.9;
  pointer-events: none;
}

.jansen-photo > .jansen-main-photo {
  position: relative;
  z-index: 3;
  width: min(470px, 72%);
  margin-inline: auto;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.42));
  mask-image: linear-gradient(180deg, #000 0 84%, transparent 100%);
}

.jansen-ink-collage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.ink-piece {
  position: absolute;
  display: block;
  width: var(--w);
  aspect-ratio: var(--ratio, 4 / 3);
  transform: rotate(var(--rotate));
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.38));
  animation: inkFloat 7.8s ease-in-out infinite;
  will-change: transform;
}

.ink-piece::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 22%, rgba(235, 247, 255, 0.84), transparent 28%),
    radial-gradient(circle at 74% 12%, rgba(5, 168, 255, 0.36), transparent 27%),
    radial-gradient(circle at 82% 80%, rgba(255, 226, 174, 0.32), transparent 26%),
    radial-gradient(circle at 36% 78%, rgba(255, 255, 255, 0.72), transparent 31%);
  clip-path: polygon(8% 22%, 27% 4%, 55% 10%, 79% 0, 96% 24%, 87% 53%, 100% 79%, 67% 94%, 39% 88%, 12% 100%, 0 66%);
  opacity: 0.78;
}

.ink-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(7% 12%, 32% 0, 72% 5%, 98% 25%, 91% 72%, 72% 100%, 29% 94%, 0 66%);
  -webkit-mask-image: radial-gradient(ellipse 76% 72% at 50% 50%, #000 58%, rgba(0, 0, 0, 0.8) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 72% at 50% 50%, #000 58%, rgba(0, 0, 0, 0.8) 72%, transparent 100%);
}

.ink-piece--poster img {
  object-position: center top;
}

.ink-piece--front {
  z-index: 5;
}

.ink-piece-1 {
  --w: clamp(148px, 17vw, 220px);
  --ratio: 4 / 3;
  --rotate: -8deg;
  --float-x: -5px;
  --float-y: -7px;
  left: 0;
  top: 5%;
  animation-delay: -0.8s;
}

.ink-piece-2 {
  --w: clamp(126px, 14vw, 182px);
  --ratio: 3 / 4;
  --rotate: 8deg;
  --float-x: 6px;
  --float-y: -6px;
  right: 0;
  top: 8%;
  animation-delay: -1.8s;
}

.ink-piece-3 {
  --w: clamp(94px, 10vw, 134px);
  --ratio: 9 / 16;
  --rotate: -10deg;
  --float-x: -4px;
  --float-y: 6px;
  left: 3%;
  bottom: 12%;
  animation-delay: -2.8s;
}

.ink-piece-4 {
  --w: clamp(94px, 10vw, 134px);
  --ratio: 9 / 16;
  --rotate: 9deg;
  --float-x: 4px;
  --float-y: 7px;
  right: 4%;
  bottom: 10%;
  animation-delay: -3.8s;
}

.ink-piece-5 {
  --w: clamp(132px, 15vw, 196px);
  --ratio: 4 / 3;
  --rotate: 4deg;
  --float-x: 0;
  --float-y: 7px;
  left: 35%;
  bottom: 2%;
  animation-delay: -4.8s;
}

@keyframes kineticTitle {
  0%,
  100% {
    transform: scaleX(1);
    text-shadow:
      0 0 18px rgba(5, 168, 255, 0.18),
      0 28px 72px rgba(0, 0, 0, 0.42);
  }

  46%,
  58% {
    transform: scaleX(1.045);
    text-shadow:
      0 0 26px rgba(5, 168, 255, 0.36),
      0 28px 72px rgba(0, 0, 0, 0.42);
  }
}

@keyframes inkFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate)) scale(1);
  }

  50% {
    transform: translate3d(var(--float-x), var(--float-y), 0) rotate(var(--rotate)) scale(1.02);
  }
}

.jansen p,
.bonus p,
.practice p {
  margin-top: 20px;
  font-size: clamp(0.96rem, 1.25vw, 1.04rem);
}

.jansen {
  overflow: clip;
  padding: clamp(58px, 6vw, 86px) 0;
  isolation: isolate;
}

.jansen .split {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.bonus-image {
  max-width: 420px;
  justify-self: center;
}

body.bonus-cinematic-active .topbar {
  transform: translateY(-115%);
  opacity: 0;
  pointer-events: none;
}

.bonus-cinematic {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  padding: 0;
  background: #020202;
  isolation: isolate;
}

.bonus-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(64px, 8vw, 104px) 0;
}

.bonus-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 71% 44%, rgba(213, 168, 74, 0.14), transparent 28%),
    radial-gradient(circle at 18% 74%, rgba(161, 112, 34, 0.08), transparent 32%),
    linear-gradient(135deg, #000, #070604 54%, #010101);
}

.bonus-stage::after {
  content: "";
  position: absolute;
  inset: 10% 4%;
  z-index: -2;
  border: 1px solid rgba(218, 177, 91, 0.13);
  pointer-events: none;
}

.bonus-ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bonus-ambient span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f3ce78;
  box-shadow: 0 0 18px #c89538;
  opacity: 0.5;
}

.bonus-ambient span:nth-child(1) { left: 12%; top: 28%; }
.bonus-ambient span:nth-child(2) { left: 31%; top: 72%; width: 3px; height: 3px; }
.bonus-ambient span:nth-child(3) { right: 15%; top: 23%; width: 4px; height: 4px; }
.bonus-ambient span:nth-child(4) { right: 28%; bottom: 16%; width: 2px; height: 2px; }
.bonus-ambient span:nth-child(5) { left: 48%; top: 18%; width: 2px; height: 2px; }

.bonus-intro {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  opacity: 0;
  pointer-events: none;
}

.bonus-intro p {
  margin: 0;
  color: #f5d98f;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.6rem, 9vw, 8rem);
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 38px rgba(218, 174, 77, 0.3);
}

.bonus-intro-line {
  width: clamp(34px, 8vw, 110px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8c56e);
  box-shadow: 0 0 12px rgba(225, 184, 87, 0.45);
}

.bonus-intro-line:last-child {
  transform: scaleX(-1);
}

.bonus-reveal {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(38px, 7vw, 104px);
  align-items: center;
  opacity: 0;
}

.bonus-cinematic.is-complete .bonus-reveal {
  opacity: 1;
}

.bonus-copy-premium {
  position: relative;
  padding-left: clamp(20px, 3vw, 42px);
  border-left: 1px solid rgba(235, 202, 126, 0.56);
}

.bonus-eyebrow {
  margin: 0 0 16px !important;
  color: #d9b966 !important;
  font-size: 0.74rem !important;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bonus-copy-premium h2 {
  max-width: 760px;
  color: #fffaf0;
  font-size: clamp(4.1rem, 7.4vw, 7.8rem);
  line-height: 0.82;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.8);
}

.bonus-copy-premium h2 span {
  display: block;
  color: #dcb85d;
  -webkit-text-stroke: 1px rgba(255, 232, 174, 0.34);
}

.bonus-copy-premium > p:last-of-type {
  max-width: 650px;
  color: #c9c1b1;
  line-height: 1.75;
}

.bonus-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.bonus-seals li {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  padding: 6px 14px 6px 7px;
  border: 1px solid rgba(224, 188, 99, 0.34);
  border-radius: 999px;
  color: #ddc98f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(120deg, rgba(219, 177, 77, 0.04), rgba(219, 177, 77, 0.12), rgba(219, 177, 77, 0.035));
  box-shadow: inset 0 0 16px rgba(224, 188, 99, 0.04);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
  perspective: 240px;
}

.bonus-seals li::after {
  position: absolute;
  z-index: -1;
  top: -60%;
  left: -35%;
  width: 28%;
  height: 220%;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 231, 163, 0.46), transparent);
  filter: blur(1px);
  transform: translateX(-220%) rotate(18deg);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bonus-seal-icon {
  position: relative;
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 224, 137, 0.82);
  border-radius: 50%;
  color: #fff0b9;
  font-size: 0.72rem;
  line-height: 1;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 246, 193, 0.28), transparent 28%),
    linear-gradient(145deg, #72500e, #201503 72%);
  box-shadow:
    0 0 0 2px rgba(5, 3, 0, 0.9),
    0 0 0 3px rgba(218, 174, 74, 0.25),
    0 4px 14px rgba(218, 174, 74, 0.18),
    inset 0 1px 0 rgba(255, 244, 194, 0.35);
  transform-origin: center;
  will-change: transform, filter;
}

.bonus-seals li:hover,
.bonus-seals li:focus-within,
.bonus-seals li:active {
  border-color: rgba(255, 222, 137, 0.76);
  box-shadow: 0 8px 24px rgba(201, 148, 35, 0.16), inset 0 0 20px rgba(224, 188, 99, 0.08);
  transform: translateY(-3px);
}

.bonus-seals li:hover::after,
.bonus-seals li:focus-within::after,
.bonus-seals li:active::after {
  transform: translateX(630%) rotate(18deg);
}

.bonus-image-premium {
  position: relative;
  justify-self: center;
  width: min(390px, 100%);
  margin: 0;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(239, 208, 132, 0.68);
  background: linear-gradient(145deg, rgba(28, 21, 8, 0.94), rgba(2, 2, 2, 0.98));
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.74),
    0 0 50px rgba(202, 153, 49, 0.11),
    inset 0 0 0 5px #050402,
    inset 0 0 0 6px rgba(216, 174, 81, 0.22);
  transform-style: preserve-3d;
  transform-origin: center center;
  cursor: grab;
  will-change: transform;
}

.bonus-image-premium:active {
  cursor: grabbing;
}

.bonus-image-premium img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92) contrast(1.03);
}

.bonus-image-premium figcaption {
  padding: 15px 8px 3px;
  color: #aa9c7c;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.bonus-image-premium figcaption strong {
  color: #f0cd75;
}

.bonus-corner {
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-color: #e2bd62;
  pointer-events: none;
}

.bonus-corner--one {
  left: -6px;
  top: -6px;
  border-left: 2px solid;
  border-top: 2px solid;
}

.bonus-corner--two {
  right: -6px;
  bottom: -6px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

@media (max-width: 700px) {
  .bonus-stage {
    min-height: 880px;
    padding: 72px 0 58px;
  }

  .bonus-stage::after {
    inset: 3% 4%;
  }

  .bonus-intro {
    gap: 12px;
    padding-inline: 16px;
  }

  .bonus-intro p {
    font-size: clamp(3rem, 18vw, 4.2rem);
  }

  .bonus-intro-line {
    width: 24px;
  }

  .bonus-reveal {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .bonus-copy-premium {
    padding-left: 18px;
  }

  .bonus-copy-premium h2 {
    font-size: clamp(3.8rem, 17vw, 5.25rem);
  }

  .bonus-image-premium {
    width: min(300px, 92%);
  }
}

.offer {
  background:
    radial-gradient(circle at 50% 16%, rgba(5, 168, 255, 0.26), transparent 36%),
    linear-gradient(180deg, #000915, #061a30);
}

.offer-box {
  max-width: 760px;
  padding: clamp(34px, 6vw, 58px);
  text-align: center;
}

.offer-list {
  width: min(520px, 100%);
  margin-inline: auto;
  text-align: left;
}

.offer-call {
  margin-top: 30px;
  color: var(--white);
  font-weight: 800;
}

.price-note {
  margin-top: 20px;
  color: var(--blue-soft);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.installments {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 600;
}

.price {
  margin-top: 2px;
  color: var(--white);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.9;
}

.cash {
  margin: 6px 0 28px;
  color: var(--muted);
}

.faq {
  background:
    radial-gradient(circle at 50% -8%, rgba(5, 168, 255, 0.18), transparent 36%),
    #000915;
}

.faq h2 {
  text-align: center;
}

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

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  color: var(--white);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: #00101d;
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 24px 24px;
}

.faq .button {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 30px auto 0;
}

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #00050d;
  color: rgba(255, 255, 255, 0.66);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-site-logo {
  width: 122px;
  height: auto;
}

.footer p {
  font-size: 0.9rem;
}

.footer-identity {
  display: grid;
  gap: 14px;
}

.footer-credit {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 0;
  min-width: min(100%, 350px);
  text-align: center;
  color: rgba(255, 255, 255, .72);
}

.footer-powered {
  flex: 0 0 auto;
  font-size: .78rem;
  letter-spacing: .02em;
}

.footer-credit-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 220px;
  min-height: 82px;
}

.footer-programo {
  position: relative;
  z-index: 3;
  font-family: "Zalando Sans Expanded", "Montserrat", sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 900;
  font-style: normal;
  line-height: .92;
  letter-spacing: -.055em;
  white-space: nowrap;
  background: linear-gradient(90deg, #00ffcc, #00ff66, #00ccff, #00ffcc);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: footerLogoShine 6s linear infinite;
}

.footer-signature {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 52%;
  width: 205px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%) rotate(-2deg);
  pointer-events: none;
}

.footer-signature--white { filter: none; }

@keyframes footerLogoShine {
  to { background-position: 200% center; }
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mouse-x, 50%) var(--mouse-y, 0), rgba(123, 220, 255, 0.18), transparent 62%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.glow-card:hover::before {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 54px rgba(5, 168, 255, 0.34);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 24px 74px rgba(5, 168, 255, 0.52);
  }
}

@keyframes ctaSweep {
  0% {
    left: -38%;
  }

  42%,
  100% {
    left: 112%;
  }
}

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

  .menu-button {
    display: block;
  }

  .menu {
    position: fixed;
    inset: 78px 20px auto;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    margin: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(0, 9, 21, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu a {
    padding: 12px;
  }

  .split,
  .feature-grid,
  .trail-list,
  .testimonial-grid,
  .timeline-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-slide {
    grid-template-columns: minmax(210px, 0.78fr) minmax(0, 1.22fr);
    gap: 30px;
    padding: 34px;
  }

  .testimonial-copy blockquote {
    font-size: clamp(1.85rem, 4.8vw, 3.3rem);
  }

  .lesson-slide {
    grid-template-columns: 1fr;
  }

  .lesson-caption {
    min-height: auto;
  }

  .split {
    align-items: start;
  }
}

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

  .topbar-inner {
    min-height: 72px;
  }

  .brand img {
    width: 122px;
  }

  .menu {
    inset: 72px 14px auto;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
  }

  .hero-inner {
    min-height: auto;
  }

  .pretitle,
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .pretitle {
    max-width: 300px;
    margin-inline: auto;
    line-height: 1.35;
  }

  .hero-title {
    width: 100%;
    font-size: clamp(2rem, 7.7vw, 2.35rem);
    line-height: 0.9;
    overflow-wrap: normal;
    text-wrap: nowrap;
  }

  .hero-title span {
    max-width: 100%;
  }

  br.mobile-break {
    display: none;
  }

  br.desktop-break {
    display: none;
  }

  .hero-image {
    width: 100%;
    max-width: 420px;
    margin-top: 0;
  }

  .hero .button {
    width: 100%;
    margin-top: 8px;
  }

  .hero-copy {
    width: min(100%, 380px);
    margin-top: 24px;
    text-align: left;
    font-size: 1rem;
  }

  .video-card {
    margin-top: 38px;
  }

  .lesson-carousel {
    margin-top: 30px;
    border-radius: 14px;
  }

  .lesson-stage {
    padding: 8px;
  }

  .lesson-track {
    gap: 0;
  }

  .lesson-slide {
    flex-basis: 100%;
    display: block;
    border-radius: 12px;
    opacity: 1;
    transform: none;
  }

  .lesson-slide video {
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(123, 220, 255, 0.18);
    object-fit: contain;
  }

  .lesson-caption {
    padding: 16px 18px 20px;
    text-align: center;
    align-items: center;
  }

  .lesson-caption span {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .lesson-caption h3 {
    margin-top: 10px;
    font-size: clamp(1.32rem, 5.65vw, 1.72rem);
    line-height: 1.08;
    max-width: 17ch;
    text-align: center;
    overflow-wrap: normal;
    word-break: normal;
  }

  .lesson-caption p {
    margin-top: 12px;
    max-width: 25ch;
    font-size: 0.93rem;
    line-height: 1.55;
    text-align: center;
  }

  .lesson-arrow {
    top: calc(8px + (100vw - 44px) * 0.28125);
    width: 38px;
    height: 38px;
    font-size: 1.55rem;
  }

  .lesson-prev {
    left: 20px;
  }

  .lesson-next {
    right: 20px;
  }

  .lesson-tabs {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 0 8px 8px;
  }

  .lesson-tabs button {
    justify-content: flex-start;
    min-height: 48px;
    padding: 10px 16px;
    font-size: 0.76rem;
  }

  .lesson-tabs button span {
    font-size: 1.35rem;
  }

  .problem,
  .not-only,
  .different,
  .method,
  .practice,
  .trajectory,
  .testimonials,
  .outcomes,
  .jansen,
  .bonus,
  .offer,
  .faq {
    padding: 70px 0;
  }

  .testimonials-light {
    padding: 72px 0;
  }

  .testimonial-scroll {
    border-radius: 18px;
    padding: 8px;
  }

  .testimonial-viewport {
    border-radius: 12px;
  }

  .testimonial-slide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 24px 18px 30px;
    text-align: center;
  }

  .testimonial-photo {
    width: min(168px, 54vw);
    box-shadow:
      0 18px 42px rgba(6, 19, 33, 0.18),
      0 0 0 9px rgba(5, 168, 255, 0.06);
  }

  .testimonial-copy {
    padding-left: 0;
  }

  .testimonial-copy::before {
    left: 50%;
    top: -10px;
    bottom: auto;
    width: 72px;
    height: 3px;
    transform: translateX(-50%);
  }

  .testimonial-copy span {
    margin-bottom: 12px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .testimonial-copy blockquote {
    width: min(100%, 27ch);
    margin-inline: auto;
    font-size: clamp(1.72rem, 8vw, 2.22rem);
    line-height: 1.02;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .testimonial-copy blockquote::before {
    left: 50%;
    top: -0.52em;
    transform: translateX(-50%);
    font-size: 1.8em;
  }

  .testimonial-copy p {
    margin-top: 16px;
    font-size: 0.92rem;
  }

  .testimonial-arrow {
    top: 108px;
    width: 42px;
    height: 42px;
    font-size: 1.65rem;
  }

  .testimonial-prev {
    left: 14px;
  }

  .testimonial-next {
    right: 14px;
  }

  .testimonial-ui {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    padding: 14px 6px 2px;
  }

  .testimonial-progress {
    width: 100%;
  }

  .testimonial-down {
    left: 50%;
    right: auto;
    bottom: 16px;
    width: 46px;
    height: 46px;
    transform: translate(-50%, -8px);
  }

  .testimonial-down.is-visible {
    transform: translate(-50%, 0);
    animation-name: testimonialDownMobile;
  }

  @keyframes testimonialDownMobile {
    0%,
    100% {
      transform: translate(-50%, 0);
    }

    50% {
      transform: translate(-50%, 7px);
    }
  }

  .oratoria-section {
    padding: 66px 0 78px;
  }

  .oratoria-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .oratoria-copy {
    max-width: none;
    text-align: center;
  }

  .oratoria-kicker {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .oratoria-copy h2 {
    font-size: clamp(3.05rem, 15.4vw, 4.55rem);
  }

  .oratoria-copy > p:not(.oratoria-kicker) {
    margin-inline: auto;
    font-size: 1rem;
  }

  .oratoria-cta {
    width: min(280px, 100%);
    min-width: 0;
    margin-top: 28px;
  }

  .oratoria-lab {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: auto;
    padding: 24px 14px 22px;
    border-radius: 16px;
  }

  .oratoria-person {
    position: relative;
    left: auto;
    top: auto;
    order: 1;
    width: min(240px, 76%);
    margin: 0 auto -4px;
    transform: none;
    animation: portraitFloatMobile 4.2s ease-in-out infinite;
  }

  .oratoria-person img {
    transform: translateY(0);
  }

  .voice-orbit {
    top: 138px;
    width: min(250px, 76%);
  }

  .wave-meter {
    position: relative;
    left: auto;
    bottom: auto;
    order: 5;
    width: min(292px, 82%);
    height: 72px;
    margin: 8px auto 0;
    transform: none;
    gap: 6px;
    padding-inline: 18px;
  }

  .wave-meter span {
    width: 8px;
  }

  .oratoria-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: 112px;
    padding: 16px;
    text-align: left;
    animation: none;
  }

  .oratoria-card span {
    font-size: 1.65rem;
  }

  .oratoria-card strong {
    font-size: 0.92rem;
  }

  .oratoria-card p {
    max-width: 230px;
    font-size: 0.78rem;
  }

  .card-clarity {
    order: 2;
  }

  .card-presence {
    order: 4;
  }

  .card-connection {
    order: 3;
  }

  .problem h2,
  .section-head h2,
  .voice-band h2,
  .split h2,
  .offer h2,
  .faq h2 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .problem h2 {
    font-size: clamp(2.75rem, 12vw, 3.8rem);
  }

  .jansen .kinetic-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(4.05rem, 18.2vw, 5.25rem);
    line-height: 0.9;
    text-align: left;
  }

  .jansen .kinetic-word {
    max-width: 100%;
    width: auto;
    transform-origin: left center;
  }

  .jansen-image-wheel {
    width: min(330px, 100%);
    margin: 20px auto 46px;
  }

  .image-wheel-item {
    width: clamp(48px, 16vw, 62px);
    border-radius: 9px;
  }

  .image-wheel-center {
    inset: 0 19% 4%;
  }

  .image-wheel-caption {
    right: 7%;
    bottom: 3%;
    font-size: 0.56rem;
  }

  .jansen {
    padding: 56px 0;
  }

  .jansen .split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .jansen-photo {
    min-height: 430px;
    margin-top: 18px;
  }

  .jansen-photo > .jansen-main-photo {
    width: min(294px, 82%);
  }

  .jansen-ink-collage {
    inset: 0;
  }

  .ink-piece {
    animation-duration: 8.8s;
  }

  .ink-piece-1 {
    --w: clamp(82px, 27vw, 104px);
    left: 0;
    top: 7%;
  }

  .ink-piece-2 {
    --w: clamp(74px, 24vw, 94px);
    right: 0;
    top: 9%;
  }

  .ink-piece-3 {
    --w: clamp(56px, 18vw, 72px);
    left: 4%;
    bottom: 13%;
  }

  .ink-piece-4 {
    --w: clamp(56px, 18vw, 72px);
    right: 4%;
    bottom: 12%;
  }

  .ink-piece-5 {
    display: none;
  }

  .outcomes .split {
    gap: 30px;
  }

  .outcomes h2 {
    max-width: 11.8ch;
    margin-inline: auto;
    text-align: center;
    line-height: 1.03;
  }

  .outcomes .big-list {
    gap: 14px;
  }

  .outcomes .big-list li {
    min-height: auto;
    padding: 18px 18px 18px 52px;
    border-radius: 16px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .outcomes .big-list li::before {
    top: 25px;
    left: 22px;
  }

  .outcomes .big-list li:hover,
  .outcomes .big-list li:focus-visible {
    transform: scale(1.015);
  }

  .practice-light {
    padding: 72px 0;
  }

  .practice-light .split {
    gap: 34px;
  }

  .practice-light h2 {
    font-size: clamp(3.2rem, 14vw, 4.45rem);
    text-align: center;
  }

  .practice-light p {
    margin-inline: auto;
    text-align: center;
  }

  .practice-flow {
    grid-template-columns: auto minmax(68px, 1fr) auto;
    justify-items: center;
    width: min(100%, 300px);
    margin-inline: auto;
    padding: 10px 12px;
    border-radius: 999px;
  }

  .practice-flow i {
    width: 100%;
  }

  .practice-flow span {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .practice-light .portrait-card {
    border-radius: 14px;
  }

  .practice-light .portrait-card img {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .trajectory-light {
    padding: 72px 0;
  }

  .trajectory-light .section-head {
    text-align: center;
  }

  .trajectory-light .section-head h2 {
    font-size: clamp(3rem, 13vw, 4.2rem);
  }

  .journey-flow {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 38px;
  }

  .journey-flow::before {
    left: 41px;
    right: auto;
    top: 44px;
    bottom: 44px;
    width: 2px;
    height: auto;
  }

  .journey-flow::after {
    left: 41px;
    top: 44px;
    width: 2px;
    height: 74px;
    animation: journeySignalMobile 4.2s ease-in-out infinite;
  }

  .journey-step {
    grid-template-columns: 82px 1fr;
    column-gap: 18px;
    justify-items: start;
    text-align: left;
  }

  .journey-icon {
    grid-row: span 3;
    width: 72px;
  }

  .journey-icon img {
    width: 72px;
  }

  .journey-step span {
    width: auto;
    height: auto;
    margin-top: 0;
    background: transparent;
    color: #007fc9;
    box-shadow: none;
  }

  .journey-step h3 {
    margin-top: 2px;
  }

  .journey-step p {
    max-width: none;
  }

  @keyframes journeySignalMobile {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(320px);
    }
  }

  .problem-copy {
    text-align: center;
  }

  .problem p {
    margin-inline: auto;
  }

  .problem-mic {
    width: min(250px, 76%);
    margin-top: -8px;
  }

  .split,
  .feature-grid,
  .trail-list,
  .testimonial-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .trail-card,
  .mini-card,
  .testimonial {
    min-height: auto;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
    font-size: 0.66rem;
  }

  .faq .button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-credit {
    width: 100%;
    justify-items: center;
    align-items: center;
    text-align: center;
  }

  .footer-credit-mark {
    width: min(250px, 100%);
    min-height: 82px;
  }

  .footer-signature { width: 220px; }
}

@media (max-width: 640px) {
  /* Native touch scrolling avoids competing animation frames on modest phones. */
  body {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  }

  .footer-programo {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  }

  .topbar,
  main * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .voice-orbit span,
  .audio-bars span,
  .journey-icon,
  .journey-signal,
  .bonus-ambient span {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Premium continuity: bonus into offer */
.offer {
  position: relative;
  overflow: clip;
  margin-top: -1px;
  padding-top: clamp(112px, 13vw, 176px);
  background: radial-gradient(circle at 50% 20%, rgba(205, 157, 52, 0.17), transparent 34%), radial-gradient(circle at 8% 64%, rgba(187, 128, 24, 0.08), transparent 25%), linear-gradient(180deg, #020202 0%, #080601 42%, #02050a 100%);
  isolation: isolate;
}

.offer::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(222, 183, 88, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(222, 183, 88, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, transparent 88%);
}

.offer-bridge { position: absolute; top: 0; left: 50%; width: min(680px, 88vw); height: 88px; transform: translateX(-50%); }
.offer-bridge::before, .offer-bridge::after, .offer-bridge span { position: absolute; content: ""; background: linear-gradient(90deg, transparent, #d9b458, transparent); }
.offer-bridge::before { top: 18px; left: 0; right: 0; height: 1px; }
.offer-bridge::after { top: 18px; left: 50%; width: 1px; height: 58px; background: linear-gradient(#d9b458, transparent); }
.offer-bridge span { top: 12px; left: 50%; width: 13px; height: 13px; border: 1px solid #d9b458; background: #080601; transform: translateX(-50%) rotate(45deg); box-shadow: 0 0 18px rgba(226, 184, 78, 0.38); }

.offer .offer-box {
  position: relative;
  max-width: 760px;
  border-color: rgba(230, 192, 102, 0.42);
  background: linear-gradient(145deg, rgba(34, 25, 7, 0.9), rgba(3, 5, 8, 0.96));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.62), 0 0 70px rgba(205, 157, 52, 0.1), inset 0 0 0 1px rgba(255, 230, 165, 0.04);
}

.offer .offer-box::before { position: absolute; inset: 9px; content: ""; pointer-events: none; border: 1px solid rgba(224, 183, 86, 0.12); border-radius: calc(var(--radius) - 7px); }
.offer-eyebrow { margin: 0 0 15px; color: #d9b85f; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.offer h2 { color: #fff9e9; text-shadow: 0 0 36px rgba(224, 184, 82, 0.16); }
.offer .offer-list li::before { background: #dcb457; box-shadow: 0 0 18px rgba(220, 180, 87, 0.62); }
.offer .price-note { color: #e6c56e; }
.offer .price { color: #fff3c8; text-shadow: 0 0 30px rgba(230, 190, 92, 0.28); }

.offer-cta { position: relative; overflow: hidden; border: 1px solid #f0d58e; color: #160f02; background: linear-gradient(110deg, #bd8f2d, #ffe59b 45%, #c7942b 100%); box-shadow: 0 16px 42px rgba(205, 153, 43, 0.28), 0 0 0 1px rgba(255, 239, 190, 0.15); }
.offer-cta::after { position: absolute; top: -55%; left: -30%; width: 20%; height: 210%; content: ""; background: rgba(255, 255, 255, 0.6); filter: blur(5px); transform: rotate(18deg); animation: offer-cta-shine 3.8s ease-in-out infinite; }
.offer-cta span { position: relative; z-index: 1; }
.offer-cta:hover { transform: translateY(-4px) scale(1.018); box-shadow: 0 22px 54px rgba(205, 153, 43, 0.38); }

@keyframes offer-cta-shine {
  0%, 55% { transform: translateX(-250%) rotate(18deg); opacity: 0; }
  65% { opacity: 1; }
  82%, 100% { transform: translateX(720%) rotate(18deg); opacity: 0; }
}

/* Fluid FAQ and direct-support CTA */
.faq-list details {
  will-change: height;
}

.faq-list summary::after {
  transition: transform 0.38s var(--ease), background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
  box-shadow: 0 0 24px rgba(5, 168, 255, 0.4);
}

.faq-list details[open] {
  border-color: rgba(123, 220, 255, 0.34);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3), 0 0 32px rgba(5, 168, 255, 0.07);
}

.faq-whatsapp {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 42px;
  text-align: center;
}

.faq-whatsapp p {
  color: var(--muted);
  font-size: 0.92rem;
}

.whatsapp-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 28px;
  overflow: hidden;
  border: 1px solid rgba(173, 255, 205, 0.62);
  border-radius: 999px;
  background: linear-gradient(135deg, #16b85c, #25d366 55%, #12a94f);
  color: #03150a;
  box-shadow: 0 17px 45px rgba(37, 211, 102, 0.24), 0 0 0 6px rgba(37, 211, 102, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.whatsapp-button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.42) 48%, transparent 64%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease);
}

.whatsapp-button:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 24px 58px rgba(37, 211, 102, 0.34), 0 0 0 8px rgba(37, 211, 102, 0.08);
}

.whatsapp-button:hover::after {
  transform: translateX(120%);
}

.whatsapp-button svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-button span {
  position: relative;
  z-index: 1;
}

@media (max-width: 560px) {
  .whatsapp-button {
    width: 100%;
    padding-inline: 18px;
    font-size: 0.75rem;
  }
}

/* Shared page background: the whole viewport crossfades at each section trigger. */
body.has-scroll-theme {
  background-color: #000915;
  will-change: background-color;
}

body.has-scroll-theme main > section {
  background-color: transparent !important;
  background-image: none !important;
}

body.has-scroll-theme main > section::before {
  opacity: 0 !important;
}

/* Preserve battery and GPU time: decorative CSS loops run only near the viewport. */
main > section.is-animation-paused *,
main > section.is-animation-paused *::before,
main > section.is-animation-paused *::after {
  animation-play-state: paused !important;
}

