:root {
  --coral: #f54343;
  --coral-dark: #d9343b;
  --burgundy: #8a1f2d;
  --pink: #ffe7e7;
  --charcoal: #22252a;
  --charcoal-soft: #34383f;
  --sand: #f2e7d8;
  --cream: #fbf7f2;
  --white: #ffffff;
  --muted: #666b73;
  --border: #e8ddd4;
  --success: #247a4b;
  --danger: #b4232e;
  --shadow-sm: 0 12px 32px rgba(34, 37, 42, 0.08);
  --shadow-lg: 0 30px 80px rgba(34, 37, 42, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --font: Inter, "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(245, 67, 67, 0.35);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--charcoal);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.narrow {
  max-width: 980px;
}

.section {
  position: relative;
  padding: 110px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(34, 37, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(245, 67, 67, 0.2);
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 28px rgba(245, 67, 67, 0.24);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 17px 34px rgba(245, 67, 67, 0.3);
}

.button-light {
  color: var(--coral);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(100, 16, 27, 0.2);
}

.button-light:hover {
  color: var(--burgundy);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--charcoal);
  font-size: 0.88rem;
}

.button-large {
  min-height: 58px;
  padding: 17px 28px;
}

.button-full {
  width: 100%;
  min-height: 56px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 82px 0 90px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96) 15%, rgba(255, 231, 231, 0.88) 100%),
    var(--pink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  background-image: radial-gradient(rgba(138, 31, 45, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 70%);
  mask-image: linear-gradient(to right, transparent, black 70%);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
}

.hero-orb-one {
  top: -240px;
  right: -180px;
  width: 540px;
  height: 540px;
  border: 90px solid rgba(245, 67, 67, 0.12);
}

.hero-orb-two {
  bottom: -240px;
  left: 34%;
  width: 420px;
  height: 420px;
  background: rgba(242, 231, 216, 0.82);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-kicker,
.modal-kicker {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px 8px 9px;
  border: 1px solid rgba(245, 67, 67, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(245, 67, 67, 0.12);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--charcoal);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 5.6vw, 5.4rem);
}

h1 em {
  color: var(--coral);
  font-style: normal;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

h3 {
  font-size: 1.65rem;
}

.hero-lead {
  max-width: 660px;
  margin: 0 0 28px;
  color: var(--charcoal-soft);
  font-size: 1.15rem;
}

.hero-points,
.check-list,
.fit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-points li {
  position: relative;
  padding-left: 32px;
  font-weight: 700;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 0.72rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.webinar-stage {
  position: relative;
}

.video-poster,
.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: var(--radius-md);
  background: #0d0f11;
  box-shadow: var(--shadow-lg);
}

.video-poster {
  display: block;
  padding: 0;
  cursor: pointer;
  color: var(--white);
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.video-poster:hover img {
  transform: scale(1.02);
  filter: brightness(0.86);
}

.poster-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--coral);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  font-size: 2rem;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.video-poster:hover .poster-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.poster-cta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.video-player iframe,
.video-player video,
#video-mount {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-pending {
  height: 100%;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 32px;
  color: var(--white);
  text-align: center;
}

.video-pending code {
  color: var(--pink);
}

.video-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.video-trust span {
  padding: 8px 10px;
  border: 1px solid rgba(138, 31, 45, 0.1);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  text-align: center;
}

.video-trust strong {
  color: var(--charcoal);
}

.signal-bar {
  color: var(--white);
  background: var(--charcoal);
}

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

.signal-grid > div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-grid > div:last-child {
  border-right: 0;
}

.signal-grid strong {
  color: var(--coral);
  font-size: 2.05rem;
  line-height: 1;
}

.signal-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
}

.problem-section {
  overflow: hidden;
  background: var(--cream);
}

.problem-section::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 80px solid var(--pink);
  border-radius: 50%;
}

.problem-section .narrow {
  position: relative;
  z-index: 1;
}

.section-intro {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.cycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--border);
  box-shadow: var(--shadow-sm);
}

.cycle > div {
  min-height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: var(--white);
}

.cycle span {
  margin-bottom: auto;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
}

.cycle strong {
  font-size: 1.2rem;
}

.cycle small {
  margin-top: 4px;
  color: var(--muted);
}

.method-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
}

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

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pillar-card {
  position: relative;
  min-height: 540px;
  padding: 44px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--white), var(--pink));
  box-shadow: var(--shadow-sm);
}

.pillar-card-dark {
  color: rgba(255, 255, 255, 0.82);
  border-color: var(--charcoal);
  background: linear-gradient(145deg, var(--charcoal-soft), var(--charcoal));
}

.pillar-number {
  position: absolute;
  top: -35px;
  right: 24px;
  color: rgba(245, 67, 67, 0.11);
  font-size: 10rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.1em;
}

.pillar-card-dark .pillar-number {
  color: rgba(255, 255, 255, 0.055);
}

.pill {
  display: inline-block;
  margin: 0 0 76px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--coral);
  background: rgba(245, 67, 67, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pillar-card-dark .pill {
  color: var(--pink);
  background: rgba(245, 67, 67, 0.22);
}

.pillar-card h3 {
  margin-bottom: 18px;
  font-size: 2.35rem;
}

.pillar-card-dark h3 {
  color: var(--white);
}

.pillar-card > p:not(.pill) {
  margin-bottom: 26px;
  color: var(--muted);
}

.pillar-card-dark > p:not(.pill) {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 750;
}

.pillar-card-dark .check-list li {
  background: rgba(255, 255, 255, 0.07);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 15px;
  color: var(--coral);
  font-weight: 900;
}

.program-section {
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.program-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: radial-gradient(circle at 20% 10%, var(--coral), transparent 32%);
}

.program-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 80px;
}

.program-copy {
  position: sticky;
  top: 112px;
}

.program-copy h2 {
  color: var(--white);
}

.program-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.result-note {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding: 22px;
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.07);
}

.result-note strong {
  color: var(--white);
}

.result-note span {
  font-size: 0.84rem;
}

.program-components {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.program-components article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.program-components article:nth-child(2) {
  transform: translateY(32px);
}

.program-components article:nth-child(4) {
  transform: translateY(32px);
}

.program-components span {
  display: block;
  margin-bottom: 42px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-components strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.program-components p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

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

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fit-card {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.fit-card h3 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.fit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  font-size: 1.8rem;
  font-weight: 900;
}

.fit-yes .fit-icon {
  color: #20663f;
  background: #e4f5ea;
}

.fit-no .fit-icon {
  color: var(--danger);
  background: var(--pink);
}

.fit-card ul {
  display: grid;
  gap: 0;
}

.fit-card li {
  position: relative;
  padding: 16px 0 16px 34px;
  border-top: 1px solid var(--border);
  color: var(--charcoal-soft);
}

.fit-card li::before {
  position: absolute;
  top: 16px;
  left: 2px;
  font-weight: 950;
}

.fit-yes li::before {
  content: "✓";
  color: var(--success);
}

.fit-no li::before {
  content: "×";
  color: var(--danger);
  font-size: 1.2rem;
}

.proof-section {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.testimonial-image {
  position: relative;
  width: 100%;
  height: 420px;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  cursor: zoom-in;
  background: var(--charcoal);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.testimonial-image:hover img {
  transform: scale(1.025);
}

.testimonial-image span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.7rem;
  font-weight: 900;
}

.testimonial-card figcaption {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.testimonial-card figcaption strong {
  color: var(--coral);
}

.testimonial-card figcaption span {
  color: var(--muted);
  font-size: 0.88rem;
}

.teacher-section {
  overflow: hidden;
  background: var(--pink);
}

.teacher-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 82px;
}

.teacher-photo {
  position: relative;
  max-width: 430px;
}

.photo-frame {
  padding: 14px;
  border: 1px solid rgba(138, 31, 45, 0.16);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.62);
  transform: rotate(-2deg);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 32px;
  object-fit: cover;
}

.teacher-badge {
  position: absolute;
  right: -26px;
  bottom: 32px;
  display: grid;
  padding: 16px 20px;
  border-radius: 16px;
  color: var(--white);
  background: var(--charcoal);
  box-shadow: var(--shadow-lg);
}

.teacher-badge strong {
  color: var(--coral);
  font-size: 1.1rem;
}

.teacher-badge span {
  font-size: 0.72rem;
}

.teacher-lead {
  color: var(--charcoal);
  font-size: 1.15rem;
  font-weight: 800;
}

.teacher-copy > p:not(.section-kicker):not(.teacher-lead) {
  color: var(--muted);
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.credential-row span {
  padding: 8px 12px;
  border: 1px solid rgba(138, 31, 45, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 76px;
}

.faq-heading {
  position: sticky;
  top: 112px;
}

.faq-heading p:last-child {
  color: var(--muted);
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(34, 37, 42, 0.04);
}

.faq-list summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--coral);
  background: var(--pink);
  transform: translateY(-50%);
}

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

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 0.93rem;
}

.final-cta {
  padding: 80px 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(125deg, var(--burgundy), var(--coral));
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 60px;
}

.final-cta h2 {
  margin-bottom: 0;
  color: var(--white);
}

.final-cta .section-kicker {
  color: var(--pink);
}

.final-actions {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.text-link {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
  text-underline-offset: 5px;
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #17191d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 44px;
}

.footer-brand .brand-text strong {
  color: var(--white);
}

.footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact,
.footer-legal {
  display: grid;
  gap: 4px;
  font-size: 0.78rem;
}

.footer-contact a,
.footer-legal a {
  text-underline-offset: 3px;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.modal {
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 23, 0.76);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(92vh, 820px);
  padding: 34px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.38);
}

.modal-close,
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--charcoal);
  background: var(--pink);
  font-size: 1.7rem;
  line-height: 1;
}

.modal-logo img {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 13px;
}

.modal-kicker {
  margin-bottom: 8px;
}

.modal-panel h2 {
  margin-bottom: 10px;
  font-size: 2.1rem;
}

.modal-panel > p:not(.modal-kicker) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-field {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 850;
}

.form-field input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #d9d1ca;
  border-radius: 12px;
  color: var(--charcoal);
  background: var(--white);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(245, 67, 67, 0.1);
  outline: none;
}

.form-field input[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-size: 0.72rem;
}

.field-error:empty {
  display: none;
}

.privacy-summary {
  margin: 2px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--pink);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.privacy-summary strong {
  color: var(--charcoal);
}

.privacy-summary a {
  color: var(--burgundy);
  font-weight: 800;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin: 16px 0;
  color: var(--charcoal-soft);
  font-size: 0.75rem;
  line-height: 1.45;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--coral);
}

.checkbox-field a {
  color: var(--burgundy);
  font-weight: 800;
}

.checkbox-field em {
  color: var(--muted);
}

.checkbox-optional {
  padding: 12px;
  border-radius: 12px;
  background: var(--cream);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.is-loading .submit-spinner {
  display: block;
}

.lightbox {
  display: grid;
  place-items: center;
  padding: 28px;
}

.lightbox img {
  position: relative;
  z-index: 1;
  max-width: min(100%, 880px);
  max-height: 88vh;
  border: 6px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  color: var(--white);
  background: var(--coral);
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1020px) {
  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .webinar-stage {
    max-width: 850px;
  }

  .program-grid,
  .teacher-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .program-copy,
  .faq-heading {
    position: static;
  }

  .teacher-photo {
    max-width: 360px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 78px;
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .brand-text small {
    font-size: 0.66rem;
  }

  .header-inner > .button {
    display: none;
  }

  .hero {
    padding: 46px 0 62px;
  }

  h1 {
    font-size: clamp(2.72rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .video-poster,
  .video-player {
    border-width: 4px;
    border-radius: 17px;
  }

  .poster-play {
    width: 70px;
    height: 70px;
    font-size: 1.35rem;
  }

  .poster-badge,
  .poster-cta {
    display: none;
  }

  .video-trust {
    grid-template-columns: 1fr;
  }

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

  .signal-grid > div {
    min-height: 112px;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .signal-grid > div:nth-child(2n) {
    border-right: 0;
  }

  .signal-grid > div:nth-child(n+3) {
    border-bottom: 0;
  }

  .cycle,
  .pillar-grid,
  .program-components,
  .fit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cycle > div {
    min-height: 150px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .pillar-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .pill {
    margin-bottom: 64px;
  }

  .pillar-number {
    font-size: 8rem;
  }

  .program-components article:nth-child(2),
  .program-components article:nth-child(4) {
    transform: none;
  }

  .program-components article {
    min-height: 220px;
  }

  .fit-card {
    padding: 30px 24px;
  }

  .testimonial-image {
    height: 390px;
  }

  .teacher-grid {
    gap: 48px;
  }

  .teacher-photo {
    width: calc(100% - 18px);
    margin-inline: auto;
  }

  .teacher-badge {
    right: -12px;
  }

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

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-panel {
    width: 100%;
    max-height: 94vh;
    padding: 28px 20px calc(22px + env(safe-area-inset-bottom));
    border-radius: 26px 26px 0 0;
  }

  .modal-panel h2 {
    font-size: 1.8rem;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(34, 37, 42, 0.1);
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .mobile-cta .button {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 430px) {
  .brand-text small {
    display: none;
  }

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

  .signal-grid strong {
    font-size: 1.7rem;
  }

  .testimonial-image {
    height: 340px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
