:root {
  --cream: #f5f0e8;
  --dark: #1a1208;
  --orange: #e8621a;
  --orange-light: #f2884a;
  --orange-pale: #fde8d8;
  --brown: #3d2b12;
  --beige: #ede5d5;
  --bg: var(--cream);
  --ink: var(--dark);
  --muted: rgba(26, 18, 8, 0.68);
  --orange-soft: var(--orange-pale);
  --orange-line: rgba(232, 98, 26, 0.28);
  --line: rgba(61, 43, 18, 0.12);
  --paper: rgba(255, 255, 255, 0.86);
  --shadow: 0 30px 100px rgba(61, 43, 18, 0.11);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(242, 136, 74, 0.18), transparent 30%),
    radial-gradient(circle at 12% 38%, rgba(253, 232, 216, 0.62), transparent 32%),
    radial-gradient(circle at 50% -80px, rgba(253, 232, 216, 0.92) 0 320px, transparent 321px),
    var(--bg);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 122, 26, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 26, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 45%);
}

.sweet-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.sweet-png {
  position: absolute;
  width: clamp(138px, 14vw, 260px);
  height: auto;
  opacity: 0.32;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(61, 43, 18, 0.14));
  animation: sweet-png-float 12s ease-in-out infinite;
  will-change: transform, opacity;
}

.sweet-png-cupcake {
  top: 130px;
  right: max(-36px, calc((100vw - var(--container)) / 2 - 150px));
  transform: rotate(-9deg);
  opacity: 0.24;
}

.sweet-png-croissant {
  top: 900px;
  left: max(-40px, calc((100vw - var(--container)) / 2 - 126px));
  width: clamp(150px, 15vw, 275px);
  transform: rotate(11deg);
  animation-delay: -3s;
}

.sweet-png-donuts {
  top: 1420px;
  right: max(-46px, calc((100vw - var(--container)) / 2 - 150px));
  width: clamp(136px, 13vw, 240px);
  transform: rotate(-12deg);
  opacity: 0.28;
  animation-delay: -5s;
}

.sweet-png-small {
  top: 2260px;
  right: max(8px, calc((100vw - var(--container)) / 2 + 130px));
  width: clamp(100px, 10vw, 180px);
  transform: rotate(12deg) scale(0.9);
  opacity: 0.2;
  animation-delay: -4s;
}

.sweet-png-small-alt {
  top: 3000px;
  left: max(4px, calc((100vw - var(--container)) / 2 + 40px));
  width: clamp(100px, 10vw, 178px);
  transform: rotate(-15deg) scale(0.92);
  opacity: 0.2;
  animation-delay: -8s;
}

@keyframes sweet-png-float {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
    opacity: 0.28;
  }

  50% {
    translate: 0 -28px;
    rotate: 4deg;
    opacity: 0.38;
  }
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  scroll-margin-top: 132px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: min(var(--container), calc(100% - 40px));
  min-height: 74px;
  margin: 18px auto 0;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.08);
}

.brand,
.nav,
.center-action {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  padding-left: 6px;
}

.brand img {
  width: auto;
  height: 68px;
  border-radius: 12px;
  object-fit: contain;
}

.nav {
  gap: 6px;
}

.nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition:
    color 220ms ease,
    background 220ms ease;
}

.nav a:hover {
  background: var(--orange-soft);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 110px);
  padding: 104px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1fr);
  gap: clamp(56px, 6vw, 92px);
  align-items: center;
  isolation: isolate;
}

.hero-copy,
.hero-visual,
.speaker-copy,
.final-copy,
.signup-form {
  min-width: 0;
}

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

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  inset: -120px calc((100vw - 100%) / -2) -80px;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  mix-blend-mode: multiply;
}

.hero::after {
  left: -8%;
  top: 15%;
  width: clamp(260px, 34vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 26, 0.26), rgba(242, 136, 74, 0.11) 48%, transparent 70%);
  filter: blur(8px);
  animation: hero-orb 12s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 12px 18px;
  border: 1px solid rgba(232, 98, 26, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 52px rgba(232, 98, 26, 0.14);
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-shadow: 0 0 22px rgba(232, 98, 26, 0.22);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 580px;
  margin-bottom: 34px;
  font-size: clamp(42px, 4.8vw, 70px);
  line-height: 1.05;
  font-weight: 800;
  font-family: "Clash Display", "Cabinet Grotesk", Manrope, Arial, sans-serif;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 0 26px rgba(232, 98, 26, 0.22);
}

h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  font-family: "Clash Display", "Cabinet Grotesk", Manrope, Arial, sans-serif;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
  font-family: "Clash Display", "Cabinet Grotesk", Manrope, Arial, sans-serif;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 560px;
  margin-bottom: 42px;
  color: #303030;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.65;
  font-weight: 700;
}

@keyframes hero-orb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.62;
  }

  50% {
    transform: translate3d(28px, -16px, 0) scale(1.08);
    opacity: 0.86;
  }
}

.button {
  position: relative;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  overflow: hidden;
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    background 280ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 55%;
  transform: translateX(-140%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
}

.button:hover {
  transform: translateY(-3px) scale(1.03);
}

.button:hover::before {
  animation: button-shimmer 0.55s ease;
}

.button-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 18px 42px rgba(232, 98, 26, 0.28);
}

.button-primary:hover {
  box-shadow: 0 24px 64px rgba(232, 98, 26, 0.38);
}

@keyframes button-shimmer {
  to {
    transform: translateX(220%) skewX(-18deg);
  }
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 34px -26px -24px 36px;
  z-index: -1;
  border-radius: 42px;
  background: var(--orange-soft);
}

.hero-visual > img,
.video-placeholder,
.media-card,
.speaker-photo {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--orange-soft);
  box-shadow: var(--shadow);
}

.hero-visual > img {
  width: 100%;
  height: min(680px, 54vw);
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
  box-shadow: 0 34px 110px rgba(61, 43, 18, 0.18);
}

.hero-portrait {
  position: absolute;
  right: -24px;
  top: -28px;
  width: 174px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 50%;
  background: var(--orange-soft);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.16);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-note {
  position: absolute;
  left: -34px;
  bottom: 30px;
  width: min(360px, 78%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 62px rgba(17, 17, 17, 0.14);
}

.hero-note span,
.gift-strip > span,
.gift-copy > span,
.signup-form > p {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note p {
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.gift-strip {
  position: relative;
  width: min(var(--container), 100%);
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: stretch;
  border: 1px solid rgba(232, 98, 26, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(232, 98, 26, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(253, 232, 216, 0.44));
  box-shadow: 0 30px 100px rgba(61, 43, 18, 0.1);
  overflow: hidden;
}

.gift-strip > span,
.gift-copy > span {
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: none;
}

.gift-copy > span {
  max-width: 520px;
  color: var(--dark);
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.05;
  font-family: "Clash Display", "Cabinet Grotesk", Manrope, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.gift-copy {
  display: grid;
  gap: 22px;
  align-content: center;
}

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

.gift-item {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  color: var(--dark);
  font: inherit;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
  box-shadow: 0 16px 48px rgba(61, 43, 18, 0.06);
  overflow: hidden;
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.gift-item.bonus-video-link {
  all: unset;
  box-sizing: border-box;
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  color: var(--dark);
  font: inherit;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
  box-shadow: 0 16px 48px rgba(61, 43, 18, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.gift-item:hover,
.gift-item.bonus-video-link:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(232, 98, 26, 0.34);
  box-shadow: 0 26px 70px rgba(232, 98, 26, 0.14);
}

.gift-item.bonus-video-link::after {
  content: none;
}

.gift-access {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.gift-access p {
  margin: 0;
}

.gift-strip .button {
  width: fit-content;
  margin-top: 4px;
}

.gift-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--orange-soft);
  box-shadow: 0 24px 74px rgba(61, 43, 18, 0.14);
}

.gift-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-visual span {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(61, 43, 18, 0.12);
  backdrop-filter: blur(12px);
}

.starter,
.video-section,
.lessons,
.clips,
.audience,
.testimonials,
.speaker,
.final-section {
  padding: clamp(80px, 8vw, 120px) 0;
}

.gift-strip {
  margin: clamp(80px, 8vw, 120px) auto;
  padding: clamp(24px, 4vw, 44px);
}

.starter,
.lessons,
.audience,
.speaker {
  position: relative;
}

.video-section,
.testimonials,
.final-section {
  position: relative;
  color: var(--cream);
}

.video-section .eyebrow,
.video-section .section-heading p,
.testimonials .section-heading p {
  color: rgba(245, 240, 232, 0.78);
}

.video-section::before,
.testimonials::before,
.final-section::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: -2;
  background: var(--dark);
}

.wave-divider {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100px;
  margin: -1px 0;
  overflow: hidden;
  color: var(--cream);
}

.wave-divider svg {
  width: 100%;
  height: 100%;
}

.wave-divider path {
  fill: currentColor;
}

.wave-divider:nth-of-type(3n) {
  color: var(--dark);
}

.section-heading {
  margin-bottom: 30px;
  will-change: transform, opacity;
}

.section-heading p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.starter-grid {
  position: relative;
  width: min(1120px, 88%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 28px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(232, 98, 26, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(253, 232, 216, 0.42)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 90px rgba(61, 43, 18, 0.08);
  backdrop-filter: blur(16px);
  isolation: isolate;
}

.starter .section-heading {
  width: min(1120px, 88%);
  margin-right: auto;
  margin-left: 0;
}

.starter::after {
  content: "";
  position: absolute;
  right: max(-42px, calc((100vw - var(--container)) / 2 - 130px));
  top: 120px;
  z-index: -1;
  width: clamp(190px, 19vw, 330px);
  aspect-ratio: 1;
  background: url("assets/sweet-cupcake.png") center / contain no-repeat;
  opacity: 0.24;
  filter: drop-shadow(0 26px 36px rgba(61, 43, 18, 0.12));
  animation: sweet-png-float 13s ease-in-out infinite;
}

.starter-grid::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 98, 26, 0.34), transparent);
}

.starter-card {
  position: relative;
  min-height: 250px;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(61, 43, 18, 0.08);
  border-top: 1px solid transparent;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  isolation: isolate;
  will-change: transform, opacity;
}

.starter-access {
  width: min(1120px, 88%);
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 28px;
  align-items: center;
}

.starter-access p {
  margin: 0;
  grid-column: 1;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 800;
}

.starter-access .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-left: auto;
}

.section-heading,
.starter-card,
.lesson-card,
.media-card,
.audience-grid article,
.speaker-photo,
.speaker-copy,
.final-copy,
.signup-form {
  will-change: transform, opacity;
}

.section-heading,
.animate-card,
.speaker-photo,
.speaker-copy {
  opacity: 0;
}

.section-heading {
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.section-heading.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-card {
  transform: translateY(24px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.animate-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.speaker-photo,
.speaker-copy {
  transform: translateY(18px);
  transition:
    opacity 0.82s ease,
    transform 0.82s ease;
}

.speaker-photo.is-visible,
.speaker-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.starter-card::after,
.audience-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.18), transparent 70%);
  opacity: 0;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  z-index: -1;
}

.starter-card:hover,
.lesson-card:hover,
.audience-grid article:hover {
  transform: translateY(-7px);
  border-color: var(--orange-line);
  border-top-color: var(--orange);
  box-shadow: 0 30px 82px rgba(61, 43, 18, 0.18);
}

.starter-card:hover::after,
.audience-grid article:hover::after {
  opacity: 1;
  transform: scale(1.25);
}

.accent-card {
  background: var(--orange-soft);
  border-color: var(--orange-line);
}

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
}

.icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.starter-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
}

.access-strip {
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-radius: 24px;
  background: var(--brown);
  box-shadow: var(--shadow);
}

.access-strip p {
  margin: 0;
  padding: 16px 20px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.video-placeholder {
  position: relative;
  height: min(700px, 66vw);
  min-height: 390px;
}

.screencast-card {
  background:
    radial-gradient(circle at 76% 24%, rgba(242, 136, 74, 0.25), transparent 28%),
    linear-gradient(135deg, var(--cream), var(--beige));
}

.screencast-open {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.screencast-ui {
  position: relative;
  width: min(860px, 88%);
  min-height: 460px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(61, 43, 18, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 34px 90px rgba(61, 43, 18, 0.16);
  overflow: hidden;
}

.screencast-card .screencast-ui {
  width: 86%;
  min-height: 230px;
  margin: 42px auto 0;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
}

.screencast-sidebar,
.screencast-main {
  border-radius: 22px;
  background: rgba(253, 232, 216, 0.86);
}

.screencast-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.screencast-card .screencast-sidebar {
  gap: 8px;
  padding: 10px;
  border-radius: 16px;
}

.screencast-sidebar span,
.screencast-main > span,
.screencast-row,
.screencast-total {
  display: block;
  border-radius: 999px;
  background: rgba(232, 98, 26, 0.2);
}

.screencast-sidebar span {
  height: 44px;
  animation: mock-pulse 3.2s ease-in-out infinite;
}

.screencast-card .screencast-sidebar span {
  height: 24px;
}

.screencast-sidebar span:nth-child(2) {
  animation-delay: -0.8s;
}

.screencast-sidebar span:nth-child(3) {
  animation-delay: -1.6s;
}

.screencast-sidebar span:nth-child(4) {
  animation-delay: -2.4s;
}

.screencast-main {
  padding: 26px;
  background: rgba(255, 255, 255, 0.8);
}

.screencast-card .screencast-main {
  padding: 14px;
  border-radius: 16px;
}

.screencast-main > span {
  width: 46%;
  height: 34px;
  margin-bottom: 30px;
  background: var(--brown);
}

.screencast-card .screencast-main > span {
  height: 18px;
  margin-bottom: 16px;
}

.screencast-row {
  height: 58px;
  margin: 14px 0;
  background:
    linear-gradient(90deg, rgba(232, 98, 26, 0.28), rgba(253, 232, 216, 0.72));
  animation: mock-slide 5.4s ease-in-out infinite;
}

.screencast-card .screencast-row {
  height: 28px;
  margin: 8px 0;
}

.screencast-row:nth-child(3) {
  width: 86%;
  animation-delay: -1.3s;
}

.screencast-row:nth-child(4) {
  width: 74%;
  animation-delay: -2.6s;
}

.screencast-total {
  width: 42%;
  height: 54px;
  margin-left: auto;
  margin-top: 30px;
  background: var(--orange);
}

.screencast-card .screencast-total {
  height: 28px;
  margin-top: 12px;
}

.screencast-cursor {
  position: absolute;
  left: 33%;
  top: 49%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 10px rgba(232, 98, 26, 0.16);
  animation: mock-cursor 6s ease-in-out infinite;
}

.screencast-card .screencast-cursor {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 7px rgba(232, 98, 26, 0.15);
}

.screencast-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(26, 18, 8, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.screencast-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.screencast-dialog {
  position: relative;
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 34px;
  background: var(--cream);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.screencast-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  color: var(--cream);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.screencast-ui-large {
  width: 100%;
  min-height: min(620px, 72vh);
  border: 0;
  border-radius: 0;
}

.screencast-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
}

@keyframes mock-pulse {
  50% {
    opacity: 0.56;
    transform: translateX(6px);
  }
}

@keyframes mock-slide {
  50% {
    transform: translateX(18px);
    opacity: 0.72;
  }
}

@keyframes mock-cursor {
  0%,
  100% {
    transform: translate(0, 0);
  }

  35% {
    transform: translate(230px, -80px);
  }

  70% {
    transform: translate(420px, 82px);
  }
}

.video-placeholder img,
.media-card img,
.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 0;
  width: 86px;
  height: 86px;
  margin: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 24px 60px rgba(255, 122, 26, 0.35);
  transition: transform 240ms ease;
}

.play-button:hover {
  transform: scale(1.06);
}

.play-button svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

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

.lesson-card {
  min-height: 460px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(61, 43, 18, 0.08);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.lesson-card-soft {
  background: var(--orange-soft);
}

.card-kicker {
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 26px;
  font-weight: 800;
}

.lesson-card ul,
.speaker-copy ul,
.final-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lesson-card li,
.speaker-copy li,
.final-copy li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-top: 1px solid var(--line);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.lesson-card li::before,
.speaker-copy li::before,
.final-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
}

.center-action {
  justify-content: center;
  margin-top: 30px;
}

.clip-rail,
.testimonial-grid,
.bonus-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-card {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
}

.bonus-visuals .media-card {
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.bonus-visuals .media-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 58px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.media-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(14px);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  overflow: visible;
  contain: paint;
  padding: 16px 1px 1px;
}

.audience-grid::before {
  content: "";
  position: absolute;
  inset: -46px -34px auto auto;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 72px, rgba(255, 122, 26, 0.2) 73px 82px, transparent 83px),
    var(--orange-soft);
  z-index: -1;
}

.audience-grid article {
  position: relative;
  min-height: 238px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 122, 26, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 243, 232, 0.78), rgba(255, 255, 255, 0.96) 58%),
    #fff;
  box-shadow: 0 18px 54px rgba(61, 43, 18, 0.08);
  color: var(--ink);
  font-size: 25px;
  line-height: 1.08;
  font-weight: 800;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
}

.audience-grid article:nth-child(2n) {
  background:
    linear-gradient(145deg, #fff, rgba(255, 243, 232, 0.96) 66%),
    var(--orange-soft);
}

.audience-grid article:nth-child(1) {
  grid-column: span 2;
}

.audience-grid article:nth-child(2) {
  grid-column: span 2;
  min-height: 282px;
}

.audience-grid article:nth-child(3) {
  grid-column: span 2;
}

.audience-grid article:nth-child(4) {
  grid-column: span 3;
  min-height: 218px;
}

.audience-grid article:nth-child(5) {
  grid-column: span 3;
  min-height: 218px;
}

.audience-grid article::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(255, 122, 26, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 36px, rgba(255, 122, 26, 0.12) 37px 49px, transparent 50px),
    var(--orange-soft);
  transition: transform 420ms ease;
  z-index: -1;
}

.audience-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: 112px;
  height: 82px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 14px 18px, rgba(255, 122, 26, 0.28) 0 5px, transparent 6px),
    radial-gradient(circle at 42px 52px, rgba(255, 122, 26, 0.18) 0 6px, transparent 7px),
    radial-gradient(circle at 82px 28px, rgba(17, 17, 17, 0.1) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(255, 122, 26, 0.12), rgba(255, 243, 232, 0));
  opacity: 0.84;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  z-index: -1;
}

.audience-grid article:hover::before {
  transform: rotate(24deg) scale(1.08);
}

.audience-grid article:hover::after {
  opacity: 1;
  transform: translateY(-8px) rotate(-4deg);
}

.audience-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--orange);
  color: #fff;
  box-shadow:
    0 16px 34px rgba(255, 122, 26, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  margin-bottom: 28px;
  transform: rotate(-3deg);
  transition: transform 260ms ease;
}

.audience-grid article:nth-child(2n) .audience-icon {
  transform: rotate(4deg);
}

.audience-grid article:hover .audience-icon {
  transform: rotate(0deg) scale(1.05);
}

.audience-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-grid article > span:last-child {
  max-width: 88%;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.speaker {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.speaker-photo {
  height: 720px;
}

.speaker-copy {
  padding: 36px;
  border-radius: 24px;
  background: var(--orange-soft);
}

.speaker-copy .eyebrow {
  color: var(--orange);
  letter-spacing: 0.02em;
  text-transform: none;
}

.signup-form > p {
  letter-spacing: 0.02em;
  text-transform: none;
}

.bonus-materials-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: stretch;
}

.bonus-material-list {
  display: grid;
  gap: 22px;
  align-content: center;
  padding: 28px;
  border: 1px solid rgba(232, 98, 26, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 78px rgba(61, 43, 18, 0.08);
}

.bonus-material-card {
  position: relative;
  min-height: 180px;
  height: 100%;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 18px 54px rgba(61, 43, 18, 0.08);
  font: inherit;
  font-size: 22px;
  font-weight: 900;
  text-align: left;
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease,
    background 250ms ease;
  overflow: hidden;
  cursor: default;
}

.bonus-material-card.bonus-video-link {
  all: unset;
  box-sizing: border-box;
  position: relative;
  min-height: 180px;
  height: 100%;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 18px 54px rgba(61, 43, 18, 0.08);
  font: inherit;
  font-size: 22px;
  font-weight: 900;
  text-align: left;
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease,
    background 250ms ease;
  overflow: hidden;
  cursor: pointer;
}

.bonus-material-card::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 26, 0.2), transparent 68%);
  opacity: 0;
  transition: opacity 250ms ease;
}

.bonus-material-card.bonus-video-link::after {
  content: none;
}

.bonus-material-card:hover,
.bonus-material-card.bonus-video-link:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(232, 98, 26, 0.38);
  box-shadow: 0 30px 86px rgba(232, 98, 26, 0.18);
}

.bonus-material-card:hover::before {
  opacity: 1;
}

.bonus-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 38px rgba(232, 98, 26, 0.25);
}

.bonus-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bonus-card-action {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
  box-shadow: 0 16px 34px rgba(232, 98, 26, 0.28);
}

.gift-item .bonus-card-action {
  position: static;
  grid-column: 2;
  width: fit-content;
  margin-top: 8px;
  opacity: 1;
  transform: none;
}

.bonus-material-card:hover .bonus-card-action,
.bonus-material-card:focus-visible .bonus-card-action {
  opacity: 1;
  transform: translateY(0);
}

.bonus-document-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--orange-soft);
  box-shadow: 0 30px 96px rgba(61, 43, 18, 0.14);
}

.bonus-document-card img,
.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-document-card span {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(61, 43, 18, 0.12);
}

.final-section {
  display: grid;
  place-items: center;
}

.final-copy {
  width: min(1180px, 100%);
  display: grid;
  gap: 34px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 10%, rgba(232, 98, 26, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(245, 240, 232, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(26, 18, 8, 0.72);
  color: var(--cream);
  box-shadow: 0 34px 120px rgba(17, 17, 17, 0.34);
}

.final-copy > h2 {
  max-width: 900px;
  color: var(--cream);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

.form-photo {
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--orange-soft);
  box-shadow: 0 26px 76px rgba(17, 17, 17, 0.22);
}

.form-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.signup-form {
  position: relative;
  top: auto;
  width: 100%;
  min-height: 560px;
  margin: 0;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(232, 98, 26, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  box-shadow: 0 26px 76px rgba(17, 17, 17, 0.22);
}

.signup-form label {
  display: grid;
  gap: 8px;
}

.signup-form label span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.signup-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.signup-form input.is-invalid {
  border-color: #cf2d16;
  box-shadow: 0 0 0 4px rgba(207, 45, 22, 0.14);
}

.signup-form.is-shaking {
  animation: form-shake 0.38s ease;
}

.signup-form.is-success {
  min-height: 360px;
  place-items: center;
  text-align: center;
}

.success-check {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 58px;
  font-weight: 800;
  box-shadow: 0 24px 60px rgba(232, 98, 26, 0.32);
}

@keyframes form-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-8px);
  }

  50% {
    transform: translateX(8px);
  }

  75% {
    transform: translateX(-5px);
  }
}

.signup-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.16);
}

.signup-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  min-height: 18px;
  color: var(--orange);
  font-weight: 800;
}

.site-footer {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto 26px;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

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

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

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

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .hero,
  .speaker,
  .bonus-materials-shell,
  .form-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 72px;
  }

  .hero-visual > img {
    height: 620px;
  }

  .hero-portrait {
    right: 18px;
    top: 18px;
  }

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

  .clip-rail,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 520px;
  }

  .speaker-photo {
    height: 640px;
  }

  .bonus-materials-shell {
    gap: 24px;
  }

  .bonus-document-card {
    min-height: 460px;
  }

  .final-copy {
    padding: 32px;
  }

  .form-photo,
  .signup-form {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .section,
  .site-header,
  .site-footer {
    width: calc(100% - 24px);
  }

  .site-header {
    top: 10px;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    border-radius: 28px;
  }

  .brand {
    padding-left: 0;
  }

  .brand img {
    height: 58px;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 54px;
    gap: 34px;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(32px, 10vw, 36px);
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(30px, 8.5vw, 44px);
    overflow-wrap: anywhere;
  }

  .lead {
    width: 100%;
    max-width: 100%;
    font-size: 17px;
    line-height: 1.42;
    overflow-wrap: break-word;
  }

  .hero-visual::before {
    inset: 24px -10px -12px 18px;
    border-radius: 30px;
  }

  .hero-visual > img {
    height: 430px;
    min-height: 430px;
    border-radius: 28px;
  }

  .hero-portrait {
    width: 116px;
    right: 14px;
    top: 14px;
    border-width: 6px;
  }

  .hero-note {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .sweet-png {
    width: 96px;
    opacity: 0.18;
  }

  .sweet-png-cupcake {
    top: 300px;
    right: -26px;
  }

  .sweet-png-croissant {
    top: 760px;
    left: -30px;
  }

  .sweet-png-donuts {
    top: 1280px;
    right: -38px;
  }

  .sweet-png-small {
    top: 2400px;
    right: 18px;
  }

  .sweet-png-small-alt {
    top: 2920px;
    left: 10px;
  }

  .starter,
  .video-section,
  .lessons,
  .clips,
  .audience,
  .testimonials,
  .speaker,
  .final-section {
    padding: 60px 0;
  }

  .starter-grid,
  .lesson-grid,
  .gift-strip,
  .gift-items,
  .bonus-materials-shell,
  .bonus-material-list,
  .audience-grid,
  .bonus-visuals {
    grid-template-columns: minmax(0, 1fr);
  }

  .starter .section-heading,
  .starter-grid,
  .starter-access {
    width: 100%;
  }

  .starter-grid {
    gap: 22px;
    padding: 18px;
    border-radius: 28px;
  }

  .starter-grid::before,
  .starter::after {
    display: none;
  }

  .audience-grid article,
  .audience-grid article:nth-child(n) {
    grid-column: auto;
    min-height: 230px;
  }

  .starter-card,
  .gift-item,
  .lesson-card,
  .speaker-copy,
  .bonus-material-card,
  .bonus-material-list,
  .final-copy,
  .signup-form {
    padding: 22px;
    border-radius: 24px;
  }

  .gift-strip {
    width: 100%;
    margin: 60px 0;
    padding: 20px;
    border-radius: 28px;
  }

  .gift-item,
  .gift-item.bonus-video-link {
    min-height: 122px;
    grid-template-columns: 54px minmax(0, 1fr);
    font-size: 17px;
  }

  .gift-visual {
    min-height: 340px;
    border-radius: 24px;
  }

  .gift-access {
    display: grid;
    gap: 8px;
    font-size: 16px;
  }

  .starter-access {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .starter-access .button {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-left: 0;
  }

  .bonus-material-list {
    gap: 18px;
  }

  .bonus-material-card,
  .bonus-material-card.bonus-video-link {
    min-height: 126px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    font-size: 18px;
  }

  .bonus-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .bonus-card-action {
    position: static;
    grid-column: 2;
    width: fit-content;
    opacity: 1;
    transform: none;
  }

  .bonus-document-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .final-section {
    width: calc(100% - 24px);
  }

  .final-copy {
    gap: 22px;
  }

  .form-shell {
    gap: 18px;
  }

  .form-photo {
    min-height: 430px;
    border-radius: 24px;
  }

  .signup-form {
    min-height: auto;
  }

  .signup-form input {
    min-height: 62px;
  }

  .starter-card {
    min-height: 230px;
  }

  .video-placeholder {
    min-height: 0;
    height: 430px;
    border-radius: 28px;
  }

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

  .lesson-card li,
  .speaker-copy li {
    padding-left: 28px;
    font-size: 17px;
  }

  .lesson-card li::before,
  .speaker-copy li::before {
    top: 23px;
    width: 11px;
    height: 11px;
  }

  .media-card,
  .bonus-visuals .media-card {
    min-height: 390px;
    border-radius: 24px;
  }

  .audience-grid article {
    min-height: 150px;
  }

  .speaker-photo {
    height: 520px;
    border-radius: 28px;
  }

  .site-footer {
    display: grid;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(32px, 10vw, 36px);
  }

  .button {
    width: 100%;
    padding: 0 18px;
  }

  .hero-visual > img,
  .video-placeholder,
  .media-card,
  .bonus-visuals .media-card,
  .bonus-document-card {
    height: 360px;
    min-height: 360px;
  }

  .speaker-photo {
    height: 460px;
  }

}
