:root {
  --ink: #1b1b1f;
  --orange: #ffaa4a;
  --orange-hover: #ffbd73;
  --paper: #f6f6f6;
  --white: #ffffff;
  --muted: #66666d;
  --line: #d9d9de;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  overscroll-behavior-x: none;
  overflow-x: clip;
}

body {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overscroll-behavior-x: none;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

main,
.site-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

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

h1, h2, h3 {
  line-height: 1.1;
  font-weight: 800;
  text-wrap: balance;
}

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

button, input, select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

button:disabled {
  opacity: .5;
  cursor: default;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 6px;
}

input:focus,
select:focus {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.wrap {
  width: min(1200px, calc(100% - 88px));
  min-width: 0;
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

h2 {
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -2px;
}

h3 {
  font-size: 26px;
  letter-spacing: -.7px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 100;
  background: white;
  padding: 12px 20px;
}

.skip-link:focus {
  top: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 56px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  transition: background .2s, color .2s;
}

.button span {
  font-size: 24px;
  line-height: 1;
  transition: transform .25s var(--ease);
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button-orange {
  color: var(--ink);
  background: var(--orange);
}

.button-orange:hover {
  background: var(--orange-hover);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: #38383e;
}

.button-outline {
  border-color: #65656c;
  color: white;
  background: transparent;
}

.button-outline:hover {
  background: white;
  border-color: white;
  color: var(--ink);
}

.hero {
  color: white;
  background: var(--ink);
  overflow: clip;
}

.hero-layout {
  min-height: 720px;
  padding-top: 76px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 64px;
  align-items: center;
}

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

.hero-brand-mark {
  width: min(100%, 410px);
  justify-self: end;
}

.hero-brand-mark img,
.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-brand-mark img {
  filter:
    drop-shadow(1px 0 0 #ffaa4acc)
    drop-shadow(-1px 0 0 #ffaa4acc)
    drop-shadow(0 1px 0 #ffaa4acc)
    drop-shadow(0 -1px 0 #ffaa4acc)
    drop-shadow(0 0 12px #ffaa4a40);
}

.footer-logo img {
  filter: drop-shadow(0 0 1px var(--orange)) drop-shadow(0 0 5px #ffaa4a40);
}

.hero h1 {
  font-size: clamp(70px, 7.8vw, 110px);
  line-height: .98;
  letter-spacing: -5.5px;
}

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

.hero-description {
  font-size: 22px;
  line-height: 1.6;
  max-width: 480px;
  margin: 29px 0 20px;
  color: #e3e3e8;
}

.hero-author {
  font-size: 18px;
  color: #bdbdc5;
  margin-bottom: 31px;
}

.hero-author span {
  color: var(--orange);
  font-weight: 700;
}

.method {
  background: var(--orange);
  padding-top: 57px;
  padding-bottom: 56px;
}

.method-heading {
  font-size: 27px;
  letter-spacing: -.7px;
}

.method-letters {
  display: flex;
  align-items: stretch;
  margin: 20px -7px 34px;
}

.method-letters button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 56px;
  padding: 5px 0 13px;
  border: 0;
  border-bottom: 4px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(76px, 18vw, 218px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -8px;
  transition:
    transform .28s var(--ease),
    border-color .2s,
    opacity .2s;
}

.method-letters button:not([aria-selected="true"]) {
  opacity: .48;
}

.method-letters button[aria-selected="true"] {
  border-bottom-color: var(--ink);
  opacity: 1;
  transform: translateY(-5px);
}

.method-letters button:focus-visible {
  outline: 3px dashed var(--ink);
  outline-offset: 1px;
}

.method-fallback {
  font-size: clamp(65px, 18vw, 220px);
  letter-spacing: -.065em;
  font-weight: 800;
  line-height: 1.2;
  margin: 20px 0;
}

.method-panel {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 50px;
  padding-top: 28px;
  border-top: 1px solid #1b1b1f55;
}

.method-panel + .method-panel {
  margin-top: 25px;
}

.method-stage.is-enhanced {
  min-height: 162px;
}

.method-stage.is-enhanced .method-panel {
  margin-top: 0;
}

.method-panel h3 {
  font-size: 35px;
  letter-spacing: -1px;
}

.method-panel p {
  font-size: 21px;
  line-height: 1.6;
  max-width: 745px;
}

@media (hover: hover) and (pointer: fine) {
  .method-letters button:hover {
    transform: translateY(-8px);
  }
}

.section-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.section-intro > p {
  color: var(--muted);
  font-size: 19px;
  margin-top: 26px;
  max-width: 330px;
}

.program {
  background: var(--paper);
}

.lesson {
  border-top: 1px solid #bdbdc4;
}

.lesson:last-child {
  border-bottom: 1px solid #bdbdc4;
}

.lesson summary {
  list-style: none;
  cursor: pointer;
  padding: 27px 0;
}

.lesson summary::-webkit-details-marker,
.questions summary::-webkit-details-marker {
  display: none;
}

.lesson summary h3 {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 25px;
  font-size: 28px;
  line-height: 1.2;
}

.lesson summary span {
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s;
}

.lesson[open] summary span {
  transform: rotate(45deg);
}

.lesson-content {
  padding: 0 30px 30px 0;
}

.lesson-date {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 22px;
}

.lesson-content ul {
  margin: 0;
  padding-left: 20px;
}

.lesson-content li {
  font-size: 18px;
  line-height: 1.65;
  padding-left: 7px;
}

.lesson-content li + li {
  margin-top: 15px;
}

.kit-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 105px;
  align-items: center;
}

.kit-object {
  position: relative;
  isolation: isolate;
  width: 90%;
  max-width: 390px;
  aspect-ratio: 3 / 4;
  margin: 12px auto;
}

.kit-sheet {
  position: absolute;
  inset: 0;
  border: 1px solid #c5c5cc;
  border-radius: 3px;
  transform-origin: center bottom;
}

.sheet-back {
  background: #e5e5e9;
  transform: rotate(9deg);
  z-index: -2;
}

.sheet-middle {
  background: #f3f3f5;
  transform: rotate(3deg);
  z-index: -1;
}

.kit-cover {
  position: absolute;
  isolation: isolate;
  inset: 0;
  background: var(--ink);
  color: white;
  padding: 45px 34px;
  transform: rotate(-5deg);
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 10px 16px 25px #1b1b1f12;
}

.kit-cover > span {
  display: block;
  font-size: clamp(45px, 4.7vw, 67px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
}

.kit-cover > .cover-kicker {
  margin-bottom: 21px;
  color: #898990;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cover-highlight {
  color: var(--orange);
  font-style: normal;
}

.cover-seal {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 19%;
  display: grid !important;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 5px 0 #00000026;
  color: var(--white);
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: .04em !important;
  line-height: 1.05 !important;
  text-align: center;
  transform: rotate(11deg);
}

.cover-stripe {
  position: absolute;
  z-index: 1;
  left: -10%;
  right: -10%;
  bottom: 13%;
  display: grid;
  height: 18%;
  place-items: center;
  background: var(--orange);
  transform: rotate(-12deg);
}

.cover-stripe span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kit-copy > p {
  font-size: 19px;
  color: var(--muted);
  margin: 25px 0 32px;
}

.resource {
  border-top: 1px solid var(--line);
  padding: 23px 0;
}

.resource:last-child {
  padding-bottom: 0;
}

.resource h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.4px;
}

.resource p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 17px;
}

.about {
  background: #ededf0;
  padding-block: 64px;
}

.about-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
}

.about-photo {
  width: 100%;
  max-width: 250px;
  margin: 0;
  justify-self: start;
  align-self: stretch;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  border-radius: 4px;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 620px;
}

.about-copy > p {
  color: var(--muted);
  max-width: 430px;
  margin-top: 26px;
  font-size: 18px;
}

.about-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-social a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}

.about-social a:hover {
  border-color: var(--orange);
  color: var(--ink);
  background: var(--orange);
  transform: translateY(-2px);
}

.about-social svg {
  width: 23px;
  height: 23px;
}

.about blockquote {
  margin: 42px 0 0;
  border-left: 4px solid var(--orange);
  padding-left: 33px;
  font-size: 26px;
  line-height: 1.55;
  letter-spacing: -.4px;
}

.pricing {
  background: var(--ink);
  color: white;
}

.pricing-description {
  color: #bdbdc5;
  font-size: 18px;
  margin-top: 22px;
}

.prices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 53px;
}

.price-option {
  display: flex;
  flex-direction: column;
  padding: 0 25px;
  border-left: 1px solid #505058;
  min-width: 0;
}

.price-option:first-child {
  padding-left: 0;
  border-left: 0;
}

.price-option:last-child {
  padding-right: 0;
}

.price-option h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.4px;
  min-height: 2.4em;
}

.price-option > p {
  color: #bdbdc5;
  font-size: 16px;
  margin-top: 14px;
  min-height: 54px;
}

.price {
  color: var(--orange);
  font-size: 39px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 30px 0 34px;
  min-height: 71px;
}

.price > span {
  display: block;
  color: #bdbdc5;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 12px;
}

.price.pending {
  font-size: 30px;
  letter-spacing: -.7px;
  padding-top: 5px;
}

.price-option .button {
  width: 100%;
  margin-top: auto;
  font-size: 16px;
  padding-inline: 16px;
  gap: 10px;
}

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

.questions details:last-child {
  border-bottom: 1px solid var(--line);
}

.questions summary {
  list-style: none;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  padding: 23px 0;
  font-size: 19px;
  line-height: 1.5;
}

.questions summary span {
  font-size: 28px;
  line-height: 1;
  transition: transform .2s;
}

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

.questions details p {
  padding: 0 28px 25px 0;
  font-size: 17px;
  color: var(--muted);
}

.registration {
  background: #ededf0;
}

.registration-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.registration-intro > p {
  color: var(--muted);
  margin: 26px 0 33px;
  max-width: 350px;
}

.contact-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 17px;
}

.contact-link:hover {
  color: #aa4000;
}

.registration-form {
  background: #ffffff;
  padding: 34px;
}

.form-heading {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.field {
  min-width: 0;
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.field input,
.field select {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid #bcbcc4;
  border-radius: 2px;
  color: var(--ink);
  background: white;
  padding: 12px;
  font-size: 16px;
}

.registration-summary {
  padding: 21px;
  background: #f2f2f4;
  margin: 3px 0 23px;
  border-left: 3px solid var(--ink);
}

.registration-summary.is-pending {
  border-left-color: var(--orange);
}

.registration-summary > span {
  font-size: 15px;
  color: var(--muted);
}

.registration-summary output {
  display: block;
  margin-top: 8px;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -.6px;
  line-height: 1.3;
}

.registration-summary p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}

.registration-form .button {
  width: 100%;
}

#form-status:not(:empty) {
  margin-top: 22px;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
  font-size: 16px;
}

.payment-modal {
  width: min(520px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  overflow: auto;
}

.payment-modal::backdrop {
  background: #111114cc;
}

.payment-modal-panel {
  position: relative;
  padding: 42px;
}

.payment-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 28px;
  line-height: 1;
}

.payment-modal-kicker {
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-modal h2 {
  margin-top: 10px;
  padding-right: 36px;
  font-size: 38px;
}

.payment-modal-description {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
}

.payment-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.payment-method {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #f6f6f6;
  text-align: left;
  transition: border-color .2s, background .2s;
}

.payment-method:hover,
.payment-method:focus-visible {
  border-color: var(--orange);
  background: #fff7ee;
}

.payment-method strong,
.payment-method span {
  display: block;
}

.payment-method strong {
  font-size: 19px;
}

.payment-method span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.payment-method:disabled {
  opacity: .55;
  cursor: wait;
}

.payment-modal-status:not(:empty) {
  margin-top: 18px;
  padding-left: 13px;
  border-left: 3px solid var(--orange);
  font-size: 15px;
  line-height: 1.5;
}

.payment-modal-cancel {
  margin-top: 24px;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  background: transparent;
  font-size: 15px;
}

@media (max-width: 600px) {
  .payment-modal {
    width: calc(100% - 28px);
    max-height: calc(100dvh - 28px);
  }

  .payment-modal-panel {
    padding: 34px 22px 26px;
  }

  .payment-modal h2 {
    font-size: 30px;
  }
}

.site-footer {
  padding: 52px 0 28px;
  background: var(--ink);
  color: #bdbdc5;
}

.footer-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 42px;
}

.footer-identity {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  flex: 0 0 auto;
  width: 92px;
}

.footer-brand {
  color: var(--white);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -1.1px;
  line-height: 1;
}

.footer-brand span {
  color: var(--orange);
}

.footer-description {
  max-width: 380px;
  margin-top: 13px;
  font-size: 15px;
  line-height: 1.5;
}

.footer-domain {
  border-bottom: 1px solid #bdbdc578;
  padding-bottom: 4px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.3;
}

.footer-domain:hover {
  color: var(--orange);
  border-color: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 21px;
  border-top: 1px solid #ffffff20;
  font-size: 13px;
  line-height: 1.45;
}

.footer-bottom p:last-child {
  color: #818188;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #25d366;
  background: var(--white);
  border: 1px solid #25d366;
  border-radius: 50%;
  box-shadow: 0 3px 12px #0002;
}

.whatsapp-float svg {
  display: block;
  width: 27px;
  height: 27px;
}

.whatsapp-float:hover {
  background: #e9f9ef;
}

@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }

  .hero-layout {
    min-height: 650px;
    gap: 40px;
  }

  .hero-brand-mark {
    width: min(100%, 340px);
  }

  .hero h1 {
    font-size: 83px;
    letter-spacing: -4px;
  }

  .hero-description {
    font-size: 20px;
  }

  .section-layout,
  .kit-layout,
  .about-layout {
    gap: 60px;
  }

  .registration-layout {
    gap: 40px;
  }

  .price-option {
    padding-inline: 20px;
  }

  .price {
    font-size: 33px;
  }

  .price.pending {
    font-size: 26px;
  }

  .price-option .button {
    font-size: 15px;
    padding-inline: 12px;
  }
}

@media (max-width: 850px) {
  .section {
    padding: 74px 0;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(220px, .65fr);
    min-height: 600px;
    padding-block: 65px;
  }

  .hero-brand-mark {
    width: min(100%, 310px);
  }

  .hero h1 {
    font-size: 69px;
    letter-spacing: -3.5px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-author {
    font-size: 17px;
  }

  h2 {
    font-size: 42px;
    letter-spacing: -1.6px;
  }

  .method {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .method-heading {
    font-size: 25px;
  }

  .method-letters {
    margin-bottom: 27px;
  }

  .method-letters button {
    letter-spacing: -4px;
  }

  .method-panel {
    gap: 30px;
    grid-template-columns: .7fr 1.3fr;
  }

  .method-panel h3 {
    font-size: 29px;
  }

  .method-panel p {
    font-size: 19px;
  }

  .method-stage.is-enhanced {
    min-height: 186px;
  }

  .section-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-intro > p {
    max-width: 580px;
    margin-top: 20px;
  }

  .kit-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .kit-copy {
    order: -1;
    width: 100%;
    max-width: 680px;
  }

  .kit-object {
    width: min(72vw, 310px);
    max-width: 310px;
    margin: 8px auto 18px;
  }

  .kit-copy > p {
    font-size: 18px;
  }

  .kit-cover {
    padding: 35px 25px;
  }

  .kit-cover > span {
    font-size: 47px;
    letter-spacing: -2px;
  }

  .resource h3 {
    font-size: 20px;
  }

  .resource p {
    font-size: 16px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .about-layout > div,
  .about blockquote {
    width: 100%;
    max-width: 680px;
  }

  .about-photo {
    max-width: 210px;
    align-self: auto;
  }

  .about-photo img {
    height: auto;
    object-fit: contain;
  }

  .about-copy > p {
    max-width: 560px;
  }

  .about-social {
    margin-top: 20px;
  }

  .about blockquote {
    margin-top: 30px;
    padding: 4px 0 4px 25px;
    font-size: 22px;
    line-height: 1.5;
  }

  .prices {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 680px;
    margin-top: 38px;
  }

  .price-option,
  .price-option:first-child,
  .price-option:last-child {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    column-gap: 24px;
    padding: 24px;
    border: 1px solid #505058;
  }

  .price-option h3,
  .price-option > p {
    grid-column: 1;
  }

  .price-option h3 {
    min-height: 0;
  }

  .price-option > p {
    min-height: 0;
  }

  .price {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    min-height: 0;
    margin: 0;
    font-size: 34px;
    text-align: right;
  }

  .price-option .button {
    grid-column: 1 / -1;
    margin-top: 22px;
    font-size: 16px;
  }

  .registration-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .registration-intro > p {
    max-width: 560px;
    margin-top: 20px;
  }

  .registration-intro h2 br {
    display: none;
  }
}

@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }

  .section {
    padding: 59px 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 43px;
    padding-bottom: 37px;
    gap: 22px;
  }

  .hero-brand-mark {
    width: min(58vw, 230px);
    justify-self: start;
    margin-top: 12px;
  }

  .hero h1 {
    font-size: clamp(65px, 15vw, 84px);
    line-height: .98;
    letter-spacing: -3px;
  }

  .hero-description {
    font-size: 19px;
    max-width: 460px;
    margin-top: 24px;
  }

  .hero-author {
    margin-bottom: 25px;
  }

  .site-footer {
    padding-top: 42px;
  }

  .footer-main,
  .footer-bottom {
    display: block;
  }

  .footer-main {
    padding-bottom: 34px;
  }

  .footer-identity {
    align-items: flex-start;
    gap: 15px;
  }

  .footer-logo {
    width: 72px;
  }

  .footer-domain {
    display: inline-block;
    margin-top: 28px;
  }

  .footer-bottom p + p {
    margin-top: 7px;
  }
}

@media (max-width: 600px) {
  .button {
    font-size: 16px;
    padding: 15px 20px;
  }

  h2 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .method {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .method-heading {
    font-size: 24px;
    letter-spacing: -.5px;
  }

  .method-letters {
    margin: 20px -2px 23px;
  }

  .method-letters button {
    font-size: clamp(48px, 16vw, 88px);
    letter-spacing: 0;
    padding-bottom: 12px;
    border-bottom-width: 3px;
  }

  .method-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 24px;
  }

  .method-panel h3 {
    font-size: 30px;
  }

  .method-panel p {
    font-size: 18px;
    line-height: 1.7;
  }

  .method-stage.is-enhanced {
    min-height: 241px;
  }

  .lesson summary {
    padding: 24px 0;
  }

  .lesson summary h3 {
    font-size: 25px;
    letter-spacing: -.6px;
    gap: 18px;
  }

  .lesson-content {
    padding: 0 7px 28px 0;
  }

  .lesson-date,
  .lesson-content li {
    font-size: 17px;
  }

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

  .kit-copy {
    order: -1;
  }

  .kit-object {
    width: min(82vw, 285px);
    max-width: 285px;
    margin: 4px auto 16px;
    overflow: visible;
  }

  .kit-cover > span {
    font-size: clamp(43px, 13vw, 51px);
  }

  .cover-seal {
    right: 6%;
    bottom: 18%;
    width: 68px;
    height: 68px;
    font-size: 8px !important;
    border-width: 1.5px;
  }

  .resource h3 {
    font-size: 22px;
  }

  .resource p {
    font-size: 17px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-photo {
    width: min(46vw, 160px);
    justify-self: center;
  }

  .about {
    padding-block: 42px;
  }

  .about-layout h2 br {
    display: none;
  }

  .about blockquote {
    max-width: 100%;
    padding: 2px 0 2px 19px;
    font-size: 20px;
    line-height: 1.55;
    letter-spacing: 0;
  }

  .prices {
    margin-top: 34px;
    gap: 12px;
    overflow: visible;
    padding: 0;
  }

  .price-option,
  .price-option:first-child,
  .price-option:last-child,
  .price-option:nth-child(3) {
    border: 1px solid #505058;
    padding: 20px 18px;
  }

  .price-option:last-child {
    padding: 20px 18px;
  }

  .price-option h3 {
    font-size: 21px;
  }

  .price-option > p {
    font-size: 15px;
    margin-top: 7px;
  }

  .price {
    font-size: clamp(25px, 8vw, 32px);
    letter-spacing: -.8px;
  }

  .price-option .button {
    min-height: 50px;
    margin-top: 18px;
  }

  .questions summary {
    font-size: 18px;
  }

  .questions details p {
    font-size: 17px;
  }

  .registration-form {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .registration-summary {
    padding: 18px;
  }

  .registration-summary output {
    font-size: 25px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }

  footer .wrap {
    padding-right: 58px;
  }
}

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

  .hero h1 {
    font-size: 60px;
  }

  .method-heading {
    font-size: 23px;
  }

  .method-panel p {
    font-size: 17px;
  }

  .method-stage.is-enhanced {
    min-height: 246px;
  }

  .registration-form {
    padding: 21px;
  }
}

@media (max-width: 600px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  section,
  .wrap,
  .hero-layout,
  .kit-layout,
  .about-layout,
  .registration-layout {
    max-width: 100%;
    min-width: 0;
  }

  section,
  .site-footer {
    overflow-x: hidden;
    overflow-x: clip;
  }

  .method-letters {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-inline: 0;
    overflow: hidden;
  }

  .method-letters button {
    width: 100%;
    font-size: clamp(46px, 15vw, 72px);
  }

  .about blockquote {
    max-width: 100%;
    font-size: clamp(20px, 6vw, 23px);
    overflow-wrap: anywhere;
  }

  .kit-object,
  .kit-cover {
    max-width: 100%;
  }

  .prices {
    width: 100%;
    max-width: 100%;
    touch-action: pan-y;
  }
}

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

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

@media print {
  .button,
  .whatsapp-float,
  .registration,
  .method-letters,
  .skip-link {
    display: none !important;
  }

  .wrap {
    width: 100%;
  }

  .section {
    padding: 30px 0;
  }

  .method-panel[hidden] {
    display: grid !important;
  }

  .method-panel {
    break-inside: avoid;
  }

  .method-fallback[hidden] {
    display: block !important;
  }

  .hero,
  .pricing {
    color: black;
    background: white;
  }

  .lesson-content {
    display: block !important;
  }
}