:root {
  --navy: #071d36;
  --navy-2: #0d2e50;
  --navy-3: #132839;
  --gold: #d9a64b;
  --gold-dark: #b97718;
  --cream: #f6f0e5;
  --paper: #fffefa;
  --light: #f3f5f7;
  --line: #d8dee5;
  --ink: #10243a;
  --muted: #4f5f6e;
  --shadow: 0 22px 65px rgba(7, 29, 54, .12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.58;
}

body.lock {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  letter-spacing: -.035em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 5.15rem);
}

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

h3 {
  font-size: clamp(1.28rem, 2vw, 1.75rem);
}

p {
  margin-bottom: 18px;
}

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

.screen {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 112px) 0;
}

.light {
  background: var(--light);
}

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

.dark {
  background:
    radial-gradient(circle at 90% 0, rgba(217, 166, 75, .15), transparent 30%),
    linear-gradient(145deg, var(--navy), #05172b);
  color: white;
}

.dark p,
.dark li {
  color: #e9eff4;
}

.header {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  height: 72px;
  border-bottom: 1px solid rgba(16, 36, 58, .1);
  background: rgba(255, 254, 250, .96);
  box-shadow: 0 8px 30px rgba(7, 29, 54, .05);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: min(1440px, calc(100% - 36px));
  height: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.25vw, 21px);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.nav a {
  text-decoration: none;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  min-height: 51px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 10px;
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(185, 119, 24, .2);
  color: #1b2530;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #e3b45f;
}

.btn.small {
  min-height: 41px;
  padding: 9px 15px;
  border-radius: 8px;
  font-size: 13px;
}

.btn.secondary {
  border-color: var(--navy);
  background: transparent;
  box-shadow: none;
  color: var(--navy);
}

.dark .btn.secondary,
.final .btn.secondary {
  border-color: rgba(255, 255, 255, .7);
  color: white;
}

.btn.secondary:hover {
  background: var(--navy);
  color: white;
}

.dark .btn.secondary:hover,
.final .btn.secondary:hover {
  background: white;
  color: var(--navy);
}

.btn.wide {
  width: 100%;
}

.menu-btn,
.drawer,
.overlay,
.mobile-buy {
  display: none;
}

.label,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 27px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.label span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.dark .label,
.screen-two .label,
.screen-three .label {
  color: var(--gold);
  font-size: 18px;
}

.eyebrow::before {
  width: 40px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.hero {
  min-height: 100svh;
  padding-top: 118px;
  padding-bottom: 46px;
  background: linear-gradient(90deg, rgba(255, 254, 250, .99), rgba(255, 254, 250, .95) 58%, rgba(246, 240, 229, .8));
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background:
    linear-gradient(rgba(217, 166, 75, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 166, 75, .11) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to left, black, transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - 164px);
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  align-items: center;
  gap: clamp(38px, 5vw, 72px);
}

.hero h1 span {
  color: var(--gold-dark);
}

.hero-lead {
  color: var(--navy);
  font-size: clamp(1.18rem, 1.7vw, 1.52rem);
  font-weight: 750;
  line-height: 1.36;
}

.hero-desc {
  color: #111;
  font-size: 18px;
}

.hero-disclaimer {
  max-width: 720px;
  margin: -7px 0 20px;
  color: #36495a;
  font-size: 14px;
  line-height: 1.4;
}

.meaning {
  margin: 22px 0;
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: #f4ead8;
  font-weight: 800;
}

.benefits,
.check {
  padding: 0;
  list-style: none;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 24px;
  color: #1b2f43;
  font-size: 16px;
}

.benefits li,
.check li {
  position: relative;
  padding-left: 23px;
}

.benefits li::before,
.check li::before {
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  content: "✓";
  font-weight: 900;
}

.price-line {
  display: flex;
  margin: 24px 0;
  align-items: end;
  gap: 25px;
}

.price-line div {
  display: flex;
  flex-direction: column;
}

.price-line small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-line strong {
  font-size: 42px;
  line-height: 1;
}

.price-line p {
  max-width: 240px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.centered-buttons {
  margin-top: 34px;
  justify-content: center;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  width: min(100%, 570px);
  height: min(72svh, 650px);
  min-height: 500px;
  border: 7px solid white;
  border-radius: 24px 24px 70px 24px;
  background: #f5efe5;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.author-card {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 28px;
  left: 22px;
  display: flex;
  padding: 19px 22px;
  flex-direction: column;
  border-radius: 15px;
  background: rgba(7, 29, 54, .94);
  box-shadow: var(--shadow);
  color: white;
}

.author-card strong {
  color: var(--gold);
  font-size: 21px;
}

.author-card span {
  color: #edf2f6;
  font-size: 14px;
}

.audience-entry {
  padding: 34px 0 38px;
  border-top: 1px solid rgba(217, 166, 75, .28);
  background: var(--navy);
  color: white;
}

.audience-entry h2 {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: clamp(1.75rem, 2.6vw, 2.6rem);
  text-align: center;
}

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

.audience-entry-card {
  display: flex;
  min-height: 190px;
  padding: 24px;
  justify-content: space-between;
  flex-direction: column;
  border: 1px solid rgba(217, 166, 75, .48);
  border-radius: 15px;
  background: rgba(255, 255, 255, .08);
  color: white;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.audience-entry-card:hover,
.audience-entry-card:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .13);
  outline: none;
  transform: translateY(-3px);
}

.audience-entry-card h3 {
  margin-bottom: 10px;
  color: var(--gold);
}

.audience-entry-card p {
  margin-bottom: 18px;
  color: white;
  font-size: 17px;
  line-height: 1.45;
}

.audience-entry-more {
  color: var(--gold);
  font-weight: 850;
}

.trust-strip {
  padding: 28px 0;
  border-block: 1px solid #e5dccd;
  background: var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-card {
  min-height: 155px;
  padding: 20px;
  border: 1px solid #ded3c1;
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 24px rgba(7, 29, 54, .06);
}

.trust-card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-dark);
  font-size: 20px;
  line-height: 1.15;
}

.trust-card p,
.trust-card small {
  margin: 0;
  color: #111;
  font-size: 15px;
  line-height: 1.42;
}

.trust-card small {
  display: block;
  margin-top: 7px;
  font-weight: 800;
}

.screen-bg {
  position: absolute;
  z-index: 0;
}

.responsive-picture {
  display: block;
}

.visual-screen > .container,
.final-screen > .container {
  position: relative;
  z-index: 2;
}

.screen-two {
  min-height: 920px;
  background: var(--navy-3);
  color: white;
}

.screen-two .screen-bg {
  inset: 0 auto 0 0;
  width: 56%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.screen-two::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 40, 57, 0) 0%, rgba(19, 40, 57, .15) 36%, rgba(19, 40, 57, .92) 54%, #132839 70%);
  content: "";
  pointer-events: none;
}

.why-panel {
  width: 53%;
  margin-left: auto;
}

.screen-two p,
.screen-two li,
.screen-two blockquote {
  color: white;
  font-size: 19px;
}

.screen-two .soft {
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  font-size: 21px;
}

.closing {
  max-width: 900px;
  margin: 38px auto 0;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.screen-two .closing {
  font-size: 22px;
}

.quotes {
  display: grid;
  margin: 30px 0;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quotes blockquote {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(4, 20, 38, .74);
  font-weight: 750;
}

.extra-example[hidden] {
  display: none;
}

.screen-two .examples-source {
  padding: 14px 17px;
  border-left: 3px solid var(--gold);
  background: rgba(4, 20, 38, .58);
  font-size: 15px;
}

.screen-two .respect-note {
  padding: 19px 22px;
  border-radius: 13px;
  background: rgba(255, 250, 240, .96);
  color: #05070a;
  font-size: 19px;
  font-weight: 750;
}

.path,
.exam-flow {
  display: flex;
  padding: 19px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 15px;
  background: rgba(4, 20, 38, .74);
  color: white;
}

.path span,
.exam-flow span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  font-weight: 750;
  text-align: center;
}

.path i,
.exam-flow i {
  color: var(--gold);
  font-style: normal;
}

.course-solution-block {
  width: min(1120px, 88%);
  margin: 42px auto 0;
}

.solution {
  display: grid;
  padding: 34px;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  border: 1px solid rgba(217, 166, 75, .6);
  border-radius: 18px;
  background: rgba(4, 20, 38, .84);
}

.solution small,
.kicker {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.screen-two .solution small {
  color: var(--gold);
}

.screen-two .btn.secondary {
  border-color: white;
  color: white;
}

.screen-two .btn.secondary:hover {
  background: white;
  color: var(--navy);
}

.screen-two .training-result {
  max-width: 1040px;
  margin: 30px auto 0;
  padding: 20px 24px;
  border-radius: 13px;
  background: rgba(255, 250, 240, .96);
  color: #05070a;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.screen-three {
  min-height: 100svh;
}

.screen-three .screen-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.screen-three-mobile-image {
  display: none;
}

.screen-three::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 20, 38, .05), rgba(4, 20, 38, .2) 36%, rgba(4, 20, 38, .9) 58%, rgba(4, 20, 38, .98));
  content: "";
  pointer-events: none;
}

.screen-three-copy {
  width: 54%;
  margin-left: auto;
}

.screen-three p,
.screen-three li {
  color: white;
  font-size: 19px;
}

.question {
  margin: 27px 0;
  padding: 26px;
  border: 1px solid rgba(217, 166, 75, .4);
  border-radius: 14px;
  background: rgba(4, 20, 38, .72);
}

.strong {
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}

.dark .strong {
  color: var(--gold);
}

.timeline {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 58px;
  padding: 20px 16px 0;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 16px;
  background: rgba(4, 20, 38, .74);
}

.timeline div {
  position: relative;
  padding: 21px;
  border-top: 2px solid rgba(217, 166, 75, .65);
}

.timeline div::before {
  position: absolute;
  top: -8px;
  left: 20px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.timeline span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  margin-bottom: 44px;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 58px;
}

.section-head h2,
.section-head p {
  margin: 0;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.screen-four .section-head,
#lesson .section-head {
  display: block;
}

.screen-four .section-head p,
#lesson .section-head p {
  max-width: 760px;
  margin: 26px 0 0 auto;
}

.wide-image {
  overflow: hidden;
  margin-bottom: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.wide-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.system {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.system article {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.system article.featured {
  border-color: #dbc493;
  background: #fffaf1;
}

.system span,
.step span {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 850;
}

.system p,
.step p {
  margin: 0;
  color: #111;
  font-size: 16px;
}

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

.step {
  overflow: hidden;
  border: 1px solid #dfd3c1;
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 38px rgba(7, 29, 54, .07);
}

.step img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.step div {
  padding: 20px;
}

.step h3 {
  font-size: 18px;
}

.two {
  display: grid;
  grid-template-columns: minmax(340px, .68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 44px;
}

.story {
  padding: 27px;
  border: 1px solid #ead8b6;
  border-radius: 14px;
  background: #fffaf0;
}

.story p:last-child {
  margin: 0;
}

.image-card {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.skill-conclusion {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 22px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  background: #fff8e9;
  color: #05070a;
  font-size: 27px;
  font-weight: 900;
  text-align: center;
}

.accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

details {
  border-radius: 11px;
}

summary {
  cursor: pointer;
}

.accordion details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
}

.accordion summary {
  display: grid;
  min-height: 0;
  padding: 0 18px 18px;
  grid-template-areas:
    "thumb thumb thumb"
    "number copy toggle";
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 16px 14px;
  list-style: none;
}

.program-thumb {
  grid-area: thumb;
  display: block;
  width: calc(100% + 36px);
  height: 275px;
  margin: 0 -18px;
  border: 0;
  border-bottom: 1px solid rgba(217, 166, 75, .36);
  border-radius: 0;
  background: rgba(255, 255, 255, .08);
  object-fit: cover;
}

.accordion summary::-webkit-details-marker,
.product-group > summary::-webkit-details-marker,
.faq summary::-webkit-details-marker,
.review-toggle::-webkit-details-marker {
  display: none;
}

.accordion summary > span,
.accordion summary b {
  color: var(--gold);
  font-weight: 850;
}

.accordion summary > span:first-child {
  grid-area: number;
}

.accordion .summary-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
}

.accordion summary b {
  grid-area: toggle;
  justify-self: end;
}

.accordion summary small {
  color: #d8e1e8;
  font-size: 15px;
}

.accordion details[open] summary b {
  transform: rotate(45deg);
}

.accordion details > p {
  padding: 0 18px 20px 74px;
  color: white;
  font-size: 17px;
}

.course-components {
  display: grid;
  margin-bottom: 38px;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.component-card {
  padding: 26px;
  border: 1px solid rgba(217, 166, 75, .38);
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
}

.component-card .component-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 15px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.component-card h3 {
  color: white;
}

.component-card p,
.component-card li {
  color: white;
}

.component-list {
  display: flex;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.component-list li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  font-size: 14px;
}

#program .component-conclusion {
  margin: 0 0 42px;
  padding: 21px 24px;
  border-radius: 13px;
  background: white;
  color: var(--navy);
  font-size: 20px;
  font-weight: 850;
  text-align: center;
}

.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 58px;
}

#audience .image-card {
  overflow: hidden;
  height: 100%;
  min-height: 100%;
  border-radius: 18px;
  background: var(--navy-3);
}

#audience .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tabs {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.tabs button {
  min-height: 44px;
  padding: 10px 17px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
}

.tabs button.active {
  background: var(--navy);
  color: white;
}

.tab-panel {
  min-height: 390px;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel p,
.tab-panel li {
  color: #111;
  font-size: 18px;
}

.audience-time {
  margin: 38px 0 16px;
  padding: 24px 28px;
  border-left: 5px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: white;
  box-shadow: 0 10px 28px rgba(7, 29, 54, .07);
}

.audience-time h3 {
  margin-bottom: 9px;
}

.audience-time p {
  margin: 0;
  color: #111;
  font-size: 25px;
  line-height: 1.45;
}

.warning-card {
  padding: 30px;
  border: 1px solid #d8c49e;
  border-radius: 16px;
  background: #fff8e9;
}

.warning-card .kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 16px;
}

.warning-card p,
.warning-card li {
  color: #111;
  font-size: 25px;
  line-height: 1.45;
}

.yuri-proof {
  display: grid;
  margin-top: 18px;
  padding: 20px 24px;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 20px;
  border: 1px solid #e0d3bd;
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 30px rgba(7, 29, 54, .07);
}

.yuri-proof img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
}

.yuri-proof blockquote {
  margin: 0 0 8px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-size: 24px;
  line-height: 1.45;
  font-weight: 750;
}

.yuri-proof p {
  margin: 0;
  color: #34495b;
  font-size: 18px;
  line-height: 1.45;
}

.audience-final {
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  font-size: 20px;
  font-weight: 850;
}

.audience-wide-image {
  max-width: 900px;
  margin: 25px auto 0;
}

.author {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: start;
  gap: 60px;
}

.portrait {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.stats {
  display: grid;
  margin: 28px 0;
  grid-template-columns: 1fr;
  gap: 10px;
}

.stats div {
  display: flex;
  padding: 18px 21px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--light);
}

.stats strong {
  font-size: 22px;
}

.stats span {
  color: #111;
  font-size: 16px;
  line-height: 1.45;
}

.quote {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: #fff8e9;
  font-size: 18px;
  font-weight: 700;
}

.author-name {
  color: var(--gold-dark);
}

.placeholders {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.placeholder {
  display: flex;
  min-height: 210px;
  padding: 22px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px dashed #9ca9b5;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(7, 29, 54, .03), rgba(217, 166, 75, .07)), white;
  color: #77838e;
  text-align: center;
}

.placeholder strong {
  font-size: 13px;
  letter-spacing: .08em;
}

.placeholder small {
  margin-top: 7px;
}

.documents-heading {
  margin: 42px 0 18px;
  color: var(--navy);
  text-align: center;
}

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

.document-card {
  display: flex;
  min-width: 0;
  padding: 12px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8f8f6;
  box-shadow: 0 12px 32px rgba(7, 29, 54, .08);
  color: var(--navy);
  cursor: zoom-in;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.document-card:hover,
.document-card:focus-visible {
  border-color: var(--gold-dark);
  box-shadow: 0 16px 38px rgba(7, 29, 54, .14);
  outline: none;
  transform: translateY(-3px);
}

.document-preview {
  display: grid;
  height: 238px;
  padding: 8px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: white;
}

.document-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.document-caption {
  display: block;
  padding: 14px 8px 5px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.course-includes {
  margin: 34px 0 30px;
  padding: 30px;
  border: 1px solid #d8c9ac;
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 14px 36px rgba(7, 29, 54, .08);
}

.course-includes h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.course-includes-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  list-style: none;
}

.course-includes-list li {
  position: relative;
  padding-left: 25px;
  color: #263b4d;
  line-height: 1.5;
}

.course-includes-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  content: "✓";
  font-weight: 900;
}

.course-includes-price {
  margin: 26px 0 0;
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: var(--navy);
  color: white;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.4;
}

.zoom-hint {
  margin: -10px 0 24px;
  color: #111;
  font-size: 20px;
  font-weight: 850;
  text-align: center;
}

.carousel-sources {
  display: none;
}

.device-carousel {
  position: relative;
  margin: 0 auto 42px;
  padding: 32px 66px 24px;
  border: 1px solid #d8c9ac;
  border-radius: 24px;
  background: linear-gradient(150deg, #fffdf8, #e9edf1);
  box-shadow: var(--shadow);
}

.device-stage {
  display: flex;
  min-height: 510px;
  align-items: end;
  justify-content: center;
}

.laptop-device {
  width: min(1120px, 94%);
}

.laptop-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 12px solid #17202a;
  border-bottom-width: 18px;
  border-radius: 18px 18px 8px 8px;
  background: #111;
}

.laptop-base {
  width: 112%;
  height: 18px;
  margin-left: -6%;
  border-radius: 2px 2px 18px 18px;
  background: linear-gradient(#cfd4da, #8d969f);
  box-shadow: 0 12px 20px rgba(7, 29, 54, .25);
}

.device-image {
  width: 100%;
  height: 100%;
  background: white;
  object-fit: cover;
  object-position: center top;
  cursor: zoom-in;
}

.course-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 48px;
  height: 64px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(7, 29, 54, .16);
  border-radius: 12px;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(7, 29, 54, .18);
  color: white;
  cursor: pointer;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}

.course-arrow:hover {
  background: var(--gold-dark);
}

.course-prev {
  left: 10px;
}

.course-next {
  right: 10px;
}

.course-caption {
  margin-top: 25px;
  color: #111;
  font-size: 20px;
  font-weight: 850;
  text-align: center;
}

.interest {
  display: grid;
  margin-top: 52px;
  padding: 34px;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 42px;
  border: 1px solid #dbc493;
  border-radius: 18px;
  background: #fff8e9;
  color: #111;
}

.interest p {
  color: #111;
}

.interest img {
  width: 100%;
  height: auto;
  max-height: 480px;
  border: 5px solid rgba(7, 29, 54, .12);
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  justify-self: center;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 112px) 0;
  background: linear-gradient(180deg, #f7f1e7, #fffefa);
}

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

.review-card {
  display: flex;
  min-height: 440px;
  padding: 24px;
  flex-direction: column;
  border: 1px solid #e2d6c3;
  border-radius: 17px;
  background: white;
  box-shadow: 0 12px 36px rgba(7, 29, 54, .08);
}

.review-head {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 15px;
}

.review-head img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.review-head h3 {
  margin: 0 0 5px;
  font-size: 19px;
}

.review-role {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f4ead8;
  color: #725119;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.review-short {
  color: var(--navy);
  font-size: 16px;
  font-weight: 650;
}

.review-card details {
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.review-toggle {
  min-height: 48px;
  padding: 14px 0 0;
  color: var(--gold-dark);
  font-weight: 850;
  list-style: none;
}

.review-full {
  max-height: 360px;
  margin-top: 14px;
  padding: 18px;
  overflow-y: auto;
  border-radius: 12px;
  background: var(--cream);
  color: #111;
  font-size: 15px;
}

.review-full p:last-child {
  margin-bottom: 0;
}

.reviews-more {
  display: none;
  margin: 24px auto 0;
}

.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  padding: 0;
  place-items: center;
  background: rgba(3, 14, 27, .94);
}

.modal.open {
  display: grid;
}

.modal img {
  width: auto;
  height: auto;
  max-width: calc(100vw - 36px);
  max-height: calc(100vh - 36px);
  object-fit: contain;
}

.modal button {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  width: 54px;
  height: 54px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 5px 20px rgba(0, 0, 0, .5);
  color: white;
  cursor: pointer;
  font-size: 32px;
}

.materials-modal {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: none;
  padding: 70px 22px 28px;
  overflow-y: auto;
  background: rgba(3, 14, 27, .96);
}

.materials-modal.open {
  display: block;
}

.materials-dialog {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(217, 166, 75, .48);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .4);
}

.materials-dialog > h2 {
  margin-bottom: 10px;
  color: var(--navy);
}

.materials-dialog > p {
  color: #263b4d;
}

.materials-close {
  position: fixed;
  z-index: 2;
  top: 14px;
  left: 14px;
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  cursor: pointer;
  font-size: 31px;
  line-height: 1;
}

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

.material-sample {
  display: flex;
  min-width: 0;
  padding: 10px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--navy);
  cursor: zoom-in;
  text-align: left;
}

.material-sample:hover,
.material-sample:focus-visible {
  border-color: var(--gold-dark);
  outline: none;
}

.material-sample img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 9px;
  background: #eef1f4;
  object-fit: contain;
}

.material-sample span {
  padding: 12px 5px 4px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.guided-screen {
  background: linear-gradient(180deg, #fffefa, #f5efe3);
}

.guided-intro {
  max-width: 900px;
  margin-bottom: 34px;
}

.guided-intro p {
  color: #263b4d;
  font-size: 20px;
}

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

.guided-card {
  display: flex;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  flex-direction: column;
  border: 1px solid #dcc79f;
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 34px rgba(7, 29, 54, .07);
}

.guided-top {
  position: relative;
  display: block;
  min-height: 0;
  margin-bottom: 20px;
}

.guided-icon {
  display: block;
  width: 100%;
  height: 275px;
  border-radius: 0;
  object-fit: cover;
}

.guided-number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.guided-card h3 {
  margin-right: 24px;
  margin-left: 24px;
  color: var(--navy);
}

.guided-card p {
  margin-right: 24px;
  margin-left: 24px;
  color: #263b4d;
  font-size: 17px;
  line-height: 1.5;
}

.guided-card > p:last-child {
  margin-bottom: 24px;
}

.guided-card .guided-note {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eadfcf;
  color: #5b4a2b;
  font-size: 15px;
}

.guided-final {
  margin: 32px 0 20px;
  padding: 25px 29px;
  border-left: 6px solid var(--gold);
  border-radius: 0 15px 15px 0;
  background: var(--navy);
  box-shadow: var(--shadow);
  color: white;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.45;
}

.guided-actions {
  text-align: center;
}

.pricing {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 46px;
}

.course-title {
  color: var(--gold);
}

.course-intro {
  padding: 28px;
  border-radius: 16px;
  background: rgba(255, 254, 250, .96);
  color: #111;
}

.course-intro h2 {
  color: var(--navy);
}

.course-intro .check li {
  color: #111;
}

.full-course-components {
  display: grid;
  margin-top: 24px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.full-course-components article {
  padding: 17px;
  border: 1px solid #ded4c3;
  border-radius: 12px;
  background: #fffaf0;
}

.full-course-components h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}

.full-course-components p,
.full-course-components li {
  color: #111;
  font-size: 14px;
}

.full-course-components ul {
  margin-bottom: 0;
  padding-left: 18px;
}

.price-card {
  overflow: hidden;
  border: 1px solid rgba(217, 166, 75, .55);
  border-radius: 20px;
  background: white;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
  color: var(--ink);
}

.price-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.price-card-body {
  padding: 30px;
}

.price-card-body strong {
  display: block;
  font-size: 58px;
  line-height: 1;
}

.price-card-body p,
.price-card-body li {
  color: #111;
}

#course .value,
#course .course-note {
  margin-top: 22px;
  padding: 24px 28px;
  border-radius: 14px;
  background: rgba(255, 254, 250, .96);
  color: #111;
}

.value {
  font-size: 20px;
  font-weight: 800;
}

.course-note {
  font-size: 15px;
}

.comparison {
  display: grid;
  margin-bottom: 50px;
  padding: 29px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  border: 1px solid #dcc79f;
  border-radius: 18px;
  background: #fffaf0;
}

.comparison div {
  display: flex;
  padding: 20px;
  align-items: center;
  flex-direction: column;
  border-radius: 12px;
  background: white;
}

.comparison strong {
  font-size: 38px;
}

.comparison i {
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 800;
}

.comparison p {
  grid-column: 1 / -1;
  margin: 0;
  font-weight: 800;
  text-align: center;
}

#products .container {
  display: flex;
  flex-direction: column;
}

#products .label {
  order: 1;
}

#products .section-head {
  order: 2;
}

#products .comparison {
  order: 3;
}

.product-group-method {
  order: 4;
}

#products .other-products-toggle {
  order: 5;
}

.product-group-additional {
  order: 6;
}

.product-group-periods {
  order: 7;
}

#products .conditions {
  order: 8;
}

.product-group {
  border-top: 1px solid var(--line);
}

.other-products-toggle {
  display: flex;
  width: min(520px, 100%);
  min-height: 54px;
  margin: 28px auto 12px;
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--gold-dark);
  border-radius: 11px;
  background: white;
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
}

.other-products-toggle .toggle-arrow {
  color: var(--gold-dark);
  font-size: 22px;
  transition: transform .24s ease;
}

.other-products-toggle[aria-expanded="true"] .toggle-arrow {
  transform: rotate(180deg);
}

.product-group > summary {
  display: flex;
  padding: 27px 0 21px;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.product-group > summary h3 {
  margin: 0;
  font-size: 26px;
}

.product-group > summary span {
  display: none;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}

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

.product {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 35px rgba(7, 29, 54, .06);
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.product:hover,
.product:focus-within {
  border-color: #2d8c62;
  box-shadow: 0 16px 42px rgba(32, 126, 84, .24), 0 0 0 2px rgba(45, 140, 98, .18);
  transform: translateY(-2px);
}

.product > img,
.product > .placeholder {
  width: 100%;
  height: 275px;
  min-height: 275px;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

.product-buy {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  height: 275px;
  padding: 18px;
  place-items: center;
  background: rgba(32, 126, 84, .82);
  color: white;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .08em;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transition: opacity .24s ease;
}

.product:hover .product-buy,
.product:focus-within .product-buy,
.product-buy:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

.product-body {
  padding: 21px;
}

.product-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 13px;
}

.product-title h4 {
  font-size: 19px;
}

.product-title strong {
  color: var(--gold-dark);
  white-space: nowrap;
}

.product-body > p {
  min-height: 80px;
  color: #111;
  font-size: 15px;
}

.product-body details {
  border-top: 1px solid var(--line);
}

.product-body summary {
  padding-top: 13px;
  font-weight: 800;
}

.product-body details p {
  color: #111;
  font-size: 14px;
}

.product-body details ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #111;
  font-size: 14px;
}

.product-body details li + li {
  margin-top: 7px;
}

@media (hover: none) {
  .product-buy {
    top: 223px;
    height: 52px;
    padding: 9px 14px;
    background: rgba(32, 126, 84, .92);
    font-size: 14px;
    opacity: 1;
    pointer-events: auto;
  }
}

.product-body details .draft-note {
  padding: 9px 11px;
  border-left: 3px solid var(--gold);
  background: #fff8e9;
  color: #725119;
}

.conditions {
  margin-top: 35px;
  padding: 26px;
  border-radius: 14px;
  background: var(--light);
  color: #111;
  font-size: 15px;
}

.final-screen {
  min-height: 100svh;
  background: #bcaea0;
}

.final-screen .screen-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-screen::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(188, 174, 160, .08), rgba(188, 174, 160, .32) 38%, rgba(188, 174, 160, .86) 58%, #bcaea0 100%);
  content: "";
}

.final-content {
  width: 58%;
  margin-left: auto;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 22px;
  background: rgba(255, 254, 250, .9);
  box-shadow: var(--shadow);
}

.final-screen .label,
.final-screen .label span {
  color: var(--gold-dark);
}

.final-screen .final-content h2 {
  color: #07131e;
}

.faq details {
  border-bottom: 1px solid rgba(16, 36, 58, .25);
  border-radius: 0;
}

.faq summary {
  position: relative;
  min-height: 58px;
  padding: 18px 42px 18px 0;
  color: #07131e;
  font-weight: 800;
  list-style: none;
}

.faq summary::after {
  position: absolute;
  right: 4px;
  color: var(--gold-dark);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

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

.faq details p {
  padding-right: 34px;
  color: #111;
  font-size: 16px;
}

.final {
  display: grid;
  width: min(1100px, 100%);
  margin: 60px auto 0;
  padding: 45px;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 22px;
  background: rgba(10, 35, 55, .94);
  box-shadow: var(--shadow);
  color: white;
}

.final h2,
.final li,
.final .kicker {
  color: white;
}

.final-price {
  display: flex;
  padding: 27px;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
  color: white;
  text-align: center;
}

.final-price strong {
  color: var(--gold);
  font-size: 54px;
  line-height: 1;
}

.final-price span {
  margin-bottom: 22px;
}

footer {
  padding: 27px 0 100px;
  background: #041426;
  color: #c4d0d9;
  font-size: 13px;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

footer nav {
  display: flex;
  width: min(1240px, calc(100% - 48px));
  margin: 18px auto 0;
  padding-top: 18px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

footer nav a {
  color: #c4d0d9;
  text-decoration-color: rgba(196, 208, 217, .45);
  text-underline-offset: 4px;
}

footer nav a:hover,
footer nav a:focus-visible {
  color: var(--gold);
}

.sticky-buy {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  max-width: 920px;
  min-height: 66px;
  margin: auto;
  padding: 10px 12px 10px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(217, 166, 75, .6);
  border-radius: 15px;
  background: rgba(7, 29, 54, .97);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  color: white;
}

.sticky-buy strong {
  color: var(--gold);
  font-size: 24px;
}

.back-top {
  position: fixed;
  z-index: 82;
  right: 18px;
  bottom: 104px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: var(--navy);
  color: white;
  text-decoration: none;
}

@media (min-width: 1181px) {
  .screen p,
  .screen li,
  .screen blockquote,
  .screen figcaption,
  .screen details p {
    text-shadow: 0 1px 0 rgba(255, 255, 255, .92), 0 1px 2px rgba(0, 0, 0, .18);
  }

  .dark p,
  .dark li,
  .screen-two p,
  .screen-two li,
  .screen-three p,
  .screen-three li {
    text-shadow: 0 1px 2px rgba(0, 0, 0, .82);
  }

  h1,
  h2,
  h3,
  h4,
  .label,
  .kicker,
  .btn,
  .tabs button {
    text-shadow: none;
  }
}

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

  .menu-btn {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 10px;
    align-items: stretch;
    justify-content: space-around;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    cursor: pointer;
  }

  .menu-btn span {
    height: 2px;
    background: var(--navy);
  }

  .overlay {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: block;
    visibility: hidden;
    background: rgba(4, 20, 38, .58);
    opacity: 0;
    transition: .2s;
  }

  .overlay.open {
    visibility: visible;
    opacity: 1;
  }

  .drawer {
    position: fixed;
    z-index: 110;
    inset: 0 auto 0 0;
    display: block;
    width: min(360px, 88vw);
    padding: 22px;
    transform: translateX(-104%);
    background: var(--paper);
    box-shadow: 25px 0 70px rgba(7, 29, 54, .22);
    transition: .22s;
  }

  .drawer.open {
    transform: translateX(0);
  }

  .drawer-top {
    display: flex;
    padding-bottom: 17px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }

  .drawer-top button {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
    font-size: 24px;
  }

  .drawer nav {
    display: flex;
    padding-top: 17px;
    flex-direction: column;
  }

  .drawer a {
    padding: 11px 4px;
    border-bottom: 1px solid #eceff2;
    font-weight: 700;
    text-decoration: none;
  }

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

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

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

@media (max-width: 900px) {
  .screen {
    padding: 76px 0;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-grid,
  .two,
  .section-head,
  .audience,
  .author,
  .pricing,
  .final {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: 100%;
    min-height: 0;
  }

  .hero-photo {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
  }

  .hero-photo img {
    width: 100%;
    height: auto;
  }

  .author-card {
    position: absolute;
    right: 18px;
    bottom: 20px;
    left: 18px;
    width: auto;
    margin: 0;
  }

  .screen-two,
  .final-screen {
    min-height: 0;
  }

  .screen-two .screen-bg,
  .final-screen .screen-bg {
    position: relative;
    z-index: 1;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .screen-two::after,
  .final-screen::after {
    display: none;
  }

  .screen-two > .container,
  .final-screen > .container {
    width: calc(100% - 30px);
    padding: 62px 0;
  }

  .why-panel,
  .screen-three-copy,
  .course-solution-block,
  .final-content {
    width: 100%;
    margin: 0;
  }

  .course-solution-block {
    margin-top: 34px;
  }

  .screen-three::after {
    display: none;
  }

  .screen-three {
    padding-top: 0;
    background: var(--navy);
  }

  .screen-three > .screen-bg {
    display: none;
  }

  .screen-three-mobile-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .screen-three > .container {
    padding-top: 48px;
  }

  .screen-four .wide-image img {
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .screen-three-copy {
    margin-left: 0;
  }

  .solution,
  .interest {
    grid-template-columns: 1fr;
  }

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

  .course-components,
  .full-course-components {
    grid-template-columns: 1fr 1fr;
  }

  #audience .image-card {
    height: auto;
    min-height: 0;
  }

  #audience .image-card img {
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .device-stage {
    min-height: 340px;
  }

  .final-screen {
    background: var(--navy-3);
  }

  .final-content {
    padding: 26px;
    background: rgba(10, 35, 55, .94);
  }

  .final-screen .label,
  .final-screen .label span,
  .final-screen .final-content h2,
  .final-screen .faq summary,
  .final-screen .faq p {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .75);
  }

  .final-screen .faq details {
    border-bottom-color: rgba(255, 255, 255, .25);
  }

  .final {
    margin-top: 38px;
    padding: 34px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

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

  .header {
    height: 64px;
  }

  .header-inner {
    width: calc(100% - 22px);
  }

  .desktop-buy {
    display: none;
  }

  .mobile-buy {
    display: inline;
  }

  .screen {
    padding: 62px 0;
  }

  .course-includes {
    padding: 22px 18px;
  }

  .course-includes-list {
    grid-template-columns: 1fr;
  }

  .course-includes-price {
    font-size: 18px;
  }

  .hero {
    padding-top: 88px;
  }

  h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.8vw, 2.75rem);
  }

  .hero-disclaimer {
    font-size: 13px;
  }

  .benefits,
  .quotes,
  .system,
  .steps,
  .course-components,
  .full-course-components,
  .reviews-grid,
  .products,
  .trust-grid,
  .audience-entry-grid,
  .documents-grid,
  .materials-grid,
  .guided-grid {
    grid-template-columns: 1fr;
  }

  .audience-entry-card {
    min-height: 0;
  }

  .audience-time p,
  .warning-card p,
  .warning-card li,
  .yuri-proof blockquote {
    font-size: 19px;
    line-height: 1.48;
  }

  .yuri-proof p {
    font-size: 17px;
  }

  .document-preview {
    height: 225px;
  }

  .materials-modal {
    padding: 68px 10px 18px;
  }

  .materials-dialog {
    padding: 18px 13px;
  }

  .guided-card {
    padding: 0;
  }

  .guided-top {
    min-height: 0;
    margin-bottom: 18px;
  }

  .guided-icon {
    width: 100%;
    height: 300px;
  }

  .guided-card h3,
  .guided-card p {
    margin-right: 20px;
    margin-left: 20px;
  }

  .guided-card > p:last-child {
    margin-bottom: 20px;
  }

  .guided-final {
    padding: 22px 19px;
    font-size: 19px;
  }

  .buttons,
  .buttons .btn {
    width: 100%;
  }

  .price-line {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-photo {
    border-width: 5px;
    border-radius: 18px 18px 42px 18px;
  }

  .author-card {
    right: 16px;
    bottom: 18px;
    left: 16px;
    padding: 15px;
  }

  footer nav {
    width: calc(100% - 28px);
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .trust-card {
    min-height: 0;
  }

  .screen-two > .container,
  .final-screen > .container {
    width: calc(100% - 24px);
    padding: 48px 0;
  }

  .screen-two p,
  .screen-two li,
  .screen-two blockquote {
    font-size: 17px;
  }

  .screen-two .soft,
  .screen-two .closing,
  .screen-two .respect-note {
    font-size: 18px;
  }

  .path,
  .exam-flow {
    align-items: stretch;
    flex-direction: column;
  }

  .path i,
  .exam-flow i {
    transform: rotate(90deg);
    text-align: center;
  }

  .timeline {
    padding-left: 30px;
    grid-template-columns: 1fr;
  }

  .timeline div {
    padding: 0 0 27px 28px;
    border-top: 0;
    border-left: 2px solid rgba(217, 166, 75, .65);
  }

  .timeline div::before {
    top: 0;
    left: -8px;
  }

  #lesson .step {
    display: block;
  }

  #lesson .step img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .accordion summary {
    min-height: 0;
    padding: 0 14px 14px;
    grid-template-areas:
      "thumb thumb thumb"
      "number copy toggle";
    grid-template-columns: 34px 1fr 20px;
    gap: 12px 10px;
  }

  .program-thumb {
    width: calc(100% + 28px);
    height: 300px;
    margin: 0 -14px;
    border-radius: 0;
  }

  .accordion details > p {
    padding: 0 14px 18px 58px;
  }

  .component-list {
    display: block;
    margin: 0;
  }

  .component-list li {
    margin-top: 7px;
  }

  .tabs {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .tabs button {
    padding: 9px 5px;
    font-size: 12px;
  }

  .tab-panel {
    min-height: 0;
  }

  .yuri-proof {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }

  .yuri-proof img {
    width: 64px;
    height: 64px;
  }

  .yuri-proof blockquote {
    grid-column: 1 / -1;
    padding-left: 14px;
    font-size: 16px;
  }

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

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

  .device-carousel {
    padding: 22px 43px 18px;
  }

  .device-stage {
    min-height: 0;
  }

  .laptop-device {
    width: 100%;
  }

  .course-arrow {
    width: 36px;
    height: 50px;
    font-size: 33px;
  }

  .course-prev {
    left: 3px;
  }

  .course-next {
    right: 3px;
  }

  .course-caption {
    font-size: 15px;
  }

  .reviews-grid .review-card:nth-child(n + 4) {
    display: none;
  }

  .reviews-grid.show-all .review-card {
    display: flex;
  }

  .reviews-more {
    display: flex;
  }

  .review-card {
    min-height: 0;
  }

  .review-full {
    max-height: 55vh;
    font-size: 16px;
  }

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

  .comparison p {
    grid-column: auto;
  }

  .product-group > summary span {
    display: inline;
  }

  .product-group > summary h3 {
    font-size: 21px;
  }

  .product > img,
  .product > .placeholder {
    height: 300px;
    min-height: 300px;
  }

  .product-buy {
    top: 248px;
  }

  .product-body > p {
    min-height: 0;
  }

  .final-content,
  .final {
    padding: 22px 17px;
  }

  .sticky-buy {
    right: 8px;
    bottom: 8px;
    left: 8px;
    min-height: 58px;
    padding: 8px 9px 8px 14px;
  }

  .sticky-buy span {
    display: none;
  }

  .sticky-buy strong {
    font-size: 20px;
  }

  .sticky-buy .btn {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .back-top {
    right: 10px;
    bottom: 82px;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 22px);
  }

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

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

  #lesson .step {
    display: block;
  }

  #lesson .step img {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .yuri-proof {
    grid-template-columns: 56px 1fr;
  }

  .yuri-proof img {
    width: 56px;
    height: 56px;
  }
}
