:root {
  color-scheme: light;
  --navy: #101d39;
  --navy-soft: #1b2b4c;
  --ink: #17213a;
  --ivory: #f6f0e5;
  --paper: #fffaf1;
  --yellow: #ffc94a;
  --orange: #e77942;
  --orange-deep: #bd5129;
  --muted: #62676f;
  --line: rgb(16 29 57 / 18%);
  --shell: min(358px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  background: var(--ivory);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.48;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  margin-bottom: 20px;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 23px;
  line-height: 1.08;
}

p {
  margin-bottom: 20px;
}

::selection {
  color: var(--navy);
  background: var(--yellow);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--navy);
  transform: translateY(-160%);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.title-desktop,
.desktop-nav {
  display: none;
}

.title-mobile {
  display: block;
  white-space: nowrap;
}

.section {
  position: relative;
  padding-block: 84px;
}

.section-heading {
  position: relative;
  z-index: 2;
}

.section-heading > p:last-child {
  margin-bottom: 0;
}

.section-kicker,
.eyebrow,
.track-label {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  color: var(--navy);
  border: 1px solid var(--yellow);
  border-radius: 7px;
  background: var(--yellow);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.button--light {
  border-color: var(--paper);
  background: var(--paper);
}

.button--outline-light {
  color: var(--paper);
  border-color: rgb(255 250 241 / 64%);
  background: transparent;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.header-cta,
.desktop-section-cta {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  height: 64px;
  border-bottom: 1px solid var(--line);
  background: rgb(255 250 241 / 96%);
  backdrop-filter: blur(12px);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  width: 142px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.mobile-menu {
  margin-left: auto;
}

.mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
}

.mobile-menu[open] summary span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] summary span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  top: 64px;
  right: 0;
  left: 0;
  display: grid;
  gap: 0;
  padding: 18px 16px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 22px 44px rgb(16 29 57 / 14%);
}

.mobile-menu nav > a:not(.button) {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu nav .button {
  margin-top: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.hero-layout {
  padding-block: 52px 62px;
}

.hero .eyebrow {
  color: var(--navy);
}

.hero h1 {
  margin-bottom: 28px;
  font-size: 61px;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.hero-subtitle {
  margin-bottom: 24px;
  color: var(--orange-deep);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.hero-description {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 21px;
}

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

.hero-actions .button {
  width: 100%;
}

.text-link {
  font-weight: 800;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 462px;
  margin: 44px 0 0;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 426px;
  object-fit: contain;
  object-position: 50% 100%;
}

.paper-shape {
  position: absolute;
  display: block;
  content: "";
}

.paper-shape--orange {
  z-index: 0;
  top: 42px;
  right: -22px;
  width: 310px;
  height: 338px;
  background: var(--orange);
  clip-path: polygon(5% 5%, 98% 0, 95% 94%, 0 100%);
  transform: rotate(5deg);
}

.paper-shape--yellow {
  z-index: 1;
  top: 19px;
  left: -30px;
  width: 290px;
  height: 360px;
  background: var(--yellow);
  clip-path: polygon(0 2%, 96% 0, 100% 97%, 4% 100%);
  transform: rotate(-4deg);
}

.hero-visual figcaption {
  position: absolute;
  z-index: 3;
  right: 4px;
  bottom: 0;
  width: 270px;
  margin: 0;
  padding: 14px 16px;
  color: var(--paper);
  background: var(--navy);
  box-shadow: 8px 8px 0 var(--orange);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
  transform: rotate(-2deg);
}

.hero-visual--desktop {
  display: none;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid rgb(16 29 57 / 18%);
  list-style: none;
}

.hero-facts li {
  min-height: 118px;
  padding: 18px 8px 0;
  border-right: 1px solid rgb(16 29 57 / 18%);
}

.hero-facts li:first-child {
  padding-left: 0;
}

.hero-facts li:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 34px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.hero-facts span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.section-visual {
  margin: 42px 0 46px;
}

.section-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.problems {
  color: var(--paper);
  background: var(--navy);
}

.problems,
.results,
.tracks {
  padding-top: 70px;
}

.problems .section-kicker {
  color: var(--yellow);
}

.problems .section-heading > p:last-child {
  color: rgb(255 250 241 / 76%);
}

.problems h2 {
  font-size: 33px;
  white-space: nowrap;
}

.problems-visual {
  width: calc(100% - 28px);
  height: auto;
  margin: 28px auto 44px;
}

.problems-visual img {
  height: auto;
}

.problem-list,
.result-list,
.week-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list {
  display: grid;
  gap: 22px;
}

.problem-list li {
  position: relative;
  padding: 26px 23px 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 8px 9px 0 rgb(255 201 74 / 24%);
}

.problem-list li:nth-child(odd) {
  transform: rotate(-0.8deg);
}

.problem-list li:nth-child(even) {
  transform: rotate(0.8deg);
}

.problem-list li:nth-child(3n) {
  box-shadow: 8px 9px 0 rgb(231 121 66 / 28%);
}

.problem-number {
  display: block;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.problem-list h3 {
  margin-bottom: 12px;
}

.problem-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.problems-transition {
  margin: 48px 0 0;
  padding: 28px 24px;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 10px 10px 0 var(--orange);
}

.problems-transition p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.45;
}

.problems-transition .problems-transition-lead {
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

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

.results h2 {
  color: var(--orange-deep);
  font-size: 34.5px;
  white-space: nowrap;
}

.tracks h2 {
  font-size: 32.5px;
  white-space: nowrap;
}

.results-visual {
  height: 292px;
  margin: 28px -10px 46px;
}

.result-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 26px 0;
  border-top: 1px solid rgb(16 29 57 / 30%);
}

.result-list li:last-child {
  border-bottom: 1px solid rgb(16 29 57 / 30%);
}

.result-list > li > span {
  color: var(--orange);
  font-size: 17px;
  font-weight: 850;
}

.result-list h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.result-list p {
  margin-bottom: 0;
}

.tracks {
  color: var(--paper);
  background: var(--navy);
}

.tracks .section-kicker {
  color: var(--yellow);
}

.tracks-visual {
  height: auto;
  margin: 24px 0 46px;
}

.tracks-visual img {
  height: auto;
}

.track-list {
  display: grid;
  gap: 20px;
}

.track-list article {
  padding: 28px 24px;
  color: var(--navy);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--orange);
}

.track-list article:last-child {
  background: var(--yellow);
  box-shadow: 10px 10px 0 var(--navy-soft);
}

.track-label {
  color: var(--orange);
}

.track-list article:last-child .track-label {
  color: var(--navy);
}

.track-list h3 {
  margin-bottom: 24px;
  font-size: 28px;
}

.track-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.track-list li {
  position: relative;
  padding: 13px 0 13px 25px;
  border-top: 1px solid rgb(16 29 57 / 22%);
}

.track-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--orange);
  content: "→";
  font-weight: 900;
}

.track-list article:last-child li::before {
  color: var(--navy);
}

.program {
  padding-top: 72px;
  background: var(--ivory);
}

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

.program-visual {
  display: none;
  height: auto;
  margin: 22px -8px 24px;
}

.program-visual img {
  height: auto;
}

.program-intro {
  max-width: 720px;
  margin-top: 22px;
  margin-bottom: 32px;
}

.program-list {
  border-top: 1px solid var(--line);
}

.program-list details {
  border-bottom: 1px solid var(--line);
}

.program-list summary {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.2;
  list-style: none;
}

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

.program-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--orange);
  content: "+";
  font-size: 28px;
  line-height: 1;
}

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

.program-week {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.program-topic {
  display: block;
}

.program-island {
  display: block;
  height: 76px;
  margin-top: 4px;
  background-image: url("assets/images/generated/illustration-program-v2.webp");
  background-repeat: no-repeat;
  background-size: auto 76px;
  order: 3;
  justify-self: start;
}

.program-island--1 {
  width: 119px;
  background-position: 0 center;
}

.program-island--2 {
  width: 100px;
  background-position: -119px center;
}

.program-island--3 {
  width: 93px;
  background-position: -221px center;
}

.program-island--4 {
  width: 96px;
  background-position: -318px center;
}

.program-island--5 {
  width: 105px;
  background-position: -419px center;
}

.program-list details > div {
  padding: 0 0 24px;
}

.program-list details p {
  margin-bottom: 14px;
  color: var(--muted);
}

.program-list details p:last-child {
  margin-bottom: 0;
}

.program-list strong {
  color: var(--navy);
}

.final-meeting {
  margin-top: 30px;
  padding: 28px 24px;
  color: var(--paper);
  background: var(--navy);
  box-shadow: 10px 10px 0 var(--yellow);
}

.final-meeting > p:first-child {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-meeting > p:last-child {
  margin-bottom: 0;
  color: rgb(255 250 241 / 78%);
}

.week {
  padding-top: 64px;
  color: var(--navy);
  background: var(--orange);
}

.week h2 {
  font-size: 32.5px;
  white-space: nowrap;
}

.week-visual {
  height: auto;
  margin-block: 28px 30px;
  margin-inline: 8px;
}

.week-visual img {
  display: block;
  height: auto;
}

.week-steps {
  display: grid;
  gap: 14px;
}

.week-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 23px 20px;
  background: var(--paper);
}

.week-steps > li > span {
  color: var(--orange);
  font-size: 29px;
  font-weight: 850;
  line-height: 1;
}

.week-steps h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

.week-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.expert {
  padding-top: 56px;
  background: var(--paper);
}

.expert-frame {
  position: relative;
  width: calc(100% - 28px);
  aspect-ratio: 1023 / 1537;
  margin: 8px auto 48px;
  padding: 10px;
  background: var(--ivory);
  box-shadow:
    -9px 10px 0 var(--orange),
    9px -9px 0 var(--yellow),
    14px 9px 0 var(--navy);
  transform: rotate(-0.7deg);
}

.expert-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-name {
  margin: 28px 0 18px;
  color: var(--orange-deep);
  font-size: 31px;
  line-height: 1.05;
}

.expert-bio {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.expert-bio li {
  position: relative;
  padding: 17px 0 17px 25px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  line-height: 1.45;
}

.expert-bio li::before {
  position: absolute;
  top: 25px;
  left: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.expert-results {
  margin-top: 34px;
  padding: 25px 21px 27px;
  background: var(--yellow);
  box-shadow: 7px 8px 0 var(--orange);
}

.expert-results h3 {
  margin: 0 0 15px;
  font-size: 25px;
  line-height: 1.08;
}

.expert-results p {
  margin: 0 0 19px;
  font-size: 16px;
  line-height: 1.45;
}

.expert-results ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expert-results li {
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  line-height: 1.45;
}

.expert-results li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--navy);
  font-weight: 900;
  content: "→";
}

.reviews {
  padding-top: 64px;
  padding-bottom: 48px;
  color: var(--paper);
  background: var(--navy);
}

.reviews .section-kicker {
  color: var(--yellow);
}

.reviews .section-heading > p:last-child {
  color: rgb(255 250 241 / 76%);
}

.review-controls {
  display: none;
}

.review-list {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 44px -16px 0;
  padding: 0 16px 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-padding-inline: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.review-list::-webkit-scrollbar {
  display: none;
}

.review-list article {
  flex: 0 0 calc(100% - 40px);
  overflow: hidden;
  border: 1px solid rgb(255 250 241 / 14%);
  background: var(--navy-soft);
  box-shadow: 9px 9px 0 var(--yellow);
  scroll-snap-align: start;
}

.review-list video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 6px solid var(--paper);
  background: var(--navy);
  object-fit: cover;
}

.review-video {
  position: relative;
  min-width: 0;
  background: var(--navy);
}

.review-video video {
  display: block;
}

.review-play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  padding: 0;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--orange);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.review-play::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--navy);
  content: "";
}

.review-play[hidden] {
  display: none;
}

.review-play:active {
  transform: translate(-50%, calc(-50% + 1px)) scale(0.98);
}

.review-copy {
  padding: 22px 18px 25px;
  color: var(--paper);
  font-size: 15px;
  line-height: 1.5;
}

.review-copy p,
.review-copy blockquote,
.review-copy ul {
  margin: 0 0 16px;
}

.review-copy > :last-child {
  margin-bottom: 0;
}

.review-copy blockquote {
  padding-left: 14px;
  border-left: 3px solid var(--yellow);
  font-style: normal;
}

.review-copy ul {
  display: grid;
  gap: 7px;
  padding-left: 20px;
}

.reviews-proof {
  margin-top: 32px;
  padding: 20px 18px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
}

.reviews-proof p {
  margin: 0;
}

.tariffs {
  padding-top: 64px;
  padding-bottom: 48px;
  background: #fff;
}

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

.tariff-controls {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.tariff-arrow {
  display: inline-grid;
  width: 52px;
  height: 48px;
  place-items: center;
  padding: 0 0 3px;
  color: var(--yellow);
  border: 1px solid var(--navy);
  border-radius: 7px;
  background: var(--navy);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.tariff-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.34;
}

.tariff-list {
  display: flex;
  gap: 12px;
  margin: 18px calc((100vw - var(--shell)) / -2) 0;
  padding-inline: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.tariff-list::-webkit-scrollbar {
  display: none;
}

.tariff-card {
  flex: 0 0 calc(100vw - 48px);
  min-width: 0;
  display: grid;
  grid-template-rows: auto 180px minmax(0, 1fr);
  gap: 22px;
  align-self: start;
  height: 600px;
  padding: 28px 24px;
  color: var(--ink);
  border: 1px solid var(--navy);
  background: var(--yellow);
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.tariff-card:nth-child(2) {
  color: var(--ink);
  background: var(--orange);
}

.tariff-label {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tariff-card h3 {
  margin-bottom: 12px;
  font-size: 30px;
}

.tariff-price {
  display: block;
  font-size: 27px;
  line-height: 1.05;
}

.tariff-card-visual {
  width: 100%;
  height: 180px;
  margin: 0 auto;
}

.tariff-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tariff-intro {
  margin-bottom: 18px;
  font-weight: 800;
}

.tariff-body {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 12px;
  min-height: 0;
}

.tariff-brief {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.tariff-actions {
  display: grid;
  gap: 10px;
}

.tariff-features,
.tariff-benefits {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tariff-features li,
.tariff-benefits li {
  position: relative;
  padding-left: 30px;
}

.tariff-features li::before,
.tariff-benefits li::before {
  content: none;
}

.tariff-item-icon {
  position: absolute;
  top: 0.08em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 3px;
  background: var(--yellow);
  box-shadow: 2px 2px 0 rgb(16 29 57 / 18%);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-2deg);
}

.tariff-features li:nth-child(even) .tariff-item-icon,
.tariff-benefits li:nth-child(even) .tariff-item-icon {
  background: var(--orange);
  transform: rotate(2deg);
}

.tariff-scroll-hint {
  display: none;
}

.tariff-note {
  margin: 24px 0 18px;
  font-weight: 800;
  line-height: 1.35;
}

.tariff-benefits {
  color: inherit;
}

.tariff-card li strong,
.tariff-dialog li strong {
  font-weight: 800;
}

.tariff-card .button {
  width: 100%;
  margin: 0;
  color: var(--yellow);
  border-color: var(--navy);
  background: var(--navy);
}

.tariff-dialog {
  width: min(358px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 24px;
  color: var(--ink);
  border: 1px solid var(--navy);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--orange);
}

.tariff-dialog::backdrop {
  background: rgb(16 29 57 / 72%);
}

.tariff-dialog-heading {
  position: sticky;
  z-index: 2;
  top: -24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  margin: -24px -24px 24px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.tariff-dialog-heading h3 {
  margin-bottom: 12px;
  font-size: 30px;
}

.tariff-dialog-heading .tariff-label {
  margin-bottom: 10px;
}

.tariff-dialog-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0 0 4px;
  color: var(--paper);
  border: 1px solid var(--navy);
  border-radius: 7px;
  background: var(--navy);
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
}

.tariff-dialog-content {
  font-size: 16px;
  line-height: 1.48;
}

.tariff-dialog-content .tariff-details {
  display: block;
}

.tariff-dialog.payment-dialog {
  width: min(600px, calc(100% - 32px));
  overflow-y: auto;
}

.payment-dialog-content {
  min-height: 120px;
}

.getcourse-widget[hidden] {
  display: none;
}

.getcourse-widget,
.getcourse-widget iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
}

.getcourse-widget {
  overflow: hidden;
}

.getcourse-widget iframe {
  border: 0;
}

.payment-widget-loading,
.getcourse-widget noscript {
  display: block;
  margin: 0;
  padding: 24px 0;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.getcourse-widget:has(iframe) .payment-widget-loading {
  display: none;
}

body:has(.tariff-dialog[open]) {
  overflow: hidden;
}

.manager {
  display: grid;
  gap: 26px;
  margin-top: 40px;
  padding: 30px 24px;
  color: var(--paper);
  background: var(--navy);
  box-shadow: 10px 10px 0 var(--orange);
}

.manager h2 {
  font-size: 35px;
}

.manager p:last-child {
  margin-bottom: 0;
  color: rgb(255 250 241 / 74%);
}

.manager .button {
  width: 100%;
}

.faq {
  padding-top: 56px;
  padding-bottom: 48px;
  background: var(--paper);
}

.faq h2 {
  font-size: 36px;
}

.faq-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 21px 42px 21px 0;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 19px;
  right: 3px;
  color: var(--orange);
  content: "+";
  font-size: 25px;
  line-height: 1;
}

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

.faq-list p {
  padding: 0 22px 22px 0;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding-block: 42px;
  color: var(--navy);
  background: var(--ivory);
}

.footer-layout {
  display: grid;
  gap: 24px;
}

.brand--footer {
  width: 160px;
}

.footer-layout p {
  margin-bottom: 7px;
  font-size: 13px;
}

.footer-layout p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

@media (min-width: 820px) {
  :root {
    --shell: 780px;
  }

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

  body {
    padding-bottom: 0;
    font-size: 18px;
  }

  h2 {
    font-size: 62px;
  }

  h3 {
    font-size: 27px;
  }

  .title-mobile,
  .mobile-menu {
    display: none;
  }

  .title-desktop {
    display: block;
  }

  .section {
    padding-block: 112px;
  }

  .problems,
  .results,
  .tracks {
    padding-top: 92px;
  }

  .section-heading {
    max-width: 720px;
  }

  .site-header,
  .header-layout {
    height: 76px;
  }

  .header-layout {
    gap: 18px;
  }

  .brand {
    width: 145px;
  }

  .desktop-nav {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-left: auto;
  }

  .desktop-nav a {
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
  }

  .desktop-nav a[href="#faq"] {
    font-weight: 500;
  }

  .header-cta.button {
    display: inline-flex;
    min-height: 40px;
    padding: 10px 14px;
    flex: 0 0 auto;
    color: var(--paper);
    border-color: var(--orange-deep);
    background: var(--orange-deep);
    font-size: 12px;
    white-space: nowrap;
  }

  .desktop-section-cta {
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 30px;
  }

  .program .desktop-section-cta {
    margin-top: 54px;
  }

  .desktop-section-cta .button {
    min-width: 300px;
    min-height: 60px;
    color: var(--paper);
    border-color: var(--orange-deep);
    background: var(--orange-deep);
    box-shadow: 5px 5px 0 var(--navy);
    font-size: 18px;
  }

  .hero-layout {
    display: grid;
    grid-template-columns: 360px 390px;
    grid-template-areas:
      "eyebrow eyebrow"
      "title title"
      "subtitle visual"
      "description visual"
      "actions visual"
      "facts facts";
    column-gap: 30px;
    padding-block: 34px 24px;
  }

  .hero-copy {
    display: contents;
  }

  .hero .eyebrow {
    grid-area: eyebrow;
    margin-bottom: 10px;
  }

  .hero h1 {
    grid-area: title;
    margin-bottom: 24px;
    font-size: 76px;
    line-height: 0.86;
  }

  .hero-subtitle {
    grid-area: subtitle;
    margin-bottom: 18px;
    font-size: 29px;
    line-height: 1.02;
  }

  .hero-description {
    grid-area: description;
    width: auto;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-actions {
    grid-area: actions;
    display: flex;
    gap: 22px;
    align-items: center;
  }

  .hero-actions .button {
    width: auto;
  }

  .hero-visual--mobile {
    display: none;
  }

  .hero-visual--desktop {
    position: relative;
    grid-area: visual;
    display: block;
    align-self: center;
    width: 410px;
    height: 300px;
    margin: 0 0 0 -10px;
  }

  .hero-visual--desktop img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
  }

  .hero-facts {
    grid-area: facts;
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid rgb(16 29 57 / 14%);
    border-radius: 8px;
    background: var(--ivory);
  }

  .hero-facts li {
    display: flex;
    min-height: 78px;
    padding: 16px 22px;
    gap: 12px;
    align-items: center;
  }

  .hero-facts li:first-child {
    padding-left: 22px;
  }

  .hero-facts strong {
    margin: 0;
    font-size: 36px;
  }

  .hero-facts span {
    font-size: 13px;
  }

  .section-visual {
    margin-block: 58px 66px;
  }

  .problems h2,
  .results h2,
  .tracks h2,
  .week h2,
  .faq h2 {
    font-size: 58px;
    white-space: normal;
  }

  .problems-visual {
    grid-area: visual;
    align-self: center;
    width: 310px;
    height: auto;
    margin: 0 0 0 auto;
  }

  .problems {
    padding-block: 64px 68px;
  }

  .problems > .shell {
    display: grid;
    grid-template-columns: 440px 310px;
    grid-template-areas:
      "heading visual"
      "list list"
      "transition transition";
    column-gap: 30px;
  }

  .problems .section-heading {
    grid-area: heading;
    max-width: none;
  }

  .problems h2 {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 0.96;
  }

  .problems .section-heading > p:last-child {
    font-size: 15px;
    line-height: 1.42;
  }

  .problem-list {
    grid-area: list;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 34px;
  }

  .problem-list li {
    min-height: 228px;
    padding: 20px 18px;
  }

  .problem-number {
    margin-bottom: 13px;
    font-size: 11px;
  }

  .problem-list h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .problem-list p {
    font-size: 14px;
    line-height: 1.4;
  }

  .problems-transition {
    grid-area: transition;
    display: grid;
    grid-template-columns: 255px 1fr;
    gap: 28px;
    align-items: center;
    width: 100%;
    margin: 30px 0 0;
    padding: 24px 28px;
  }

  .problems-transition p {
    font-size: 15px;
    line-height: 1.42;
  }

  .problems-transition .problems-transition-lead {
    margin-bottom: 0;
    font-size: 18px;
  }

  .results-visual,
  .week-visual {
    width: 760px;
    height: 420px;
    margin-inline: auto;
  }

  .week {
    padding-block: 64px 68px;
    background: var(--yellow);
  }

  .week > .shell {
    display: grid;
    grid-template-columns: 450px 300px;
    grid-template-areas:
      "heading visual"
      "steps steps";
    column-gap: 30px;
  }

  .week .section-heading {
    grid-area: heading;
    max-width: none;
  }

  .week h2 {
    margin-bottom: 0;
    font-size: 43px;
    line-height: 0.96;
  }

  .week-visual {
    grid-area: visual;
    align-self: center;
    width: 300px;
    height: 220px;
    margin: 0;
  }

  .week-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
  }

  .program-visual {
    display: none;
  }

  .program-intro {
    margin-top: 18px;
  }

  .program-island {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: block;
    align-self: center;
    margin-top: 0;
    order: 0;
  }

  .program {
    padding-top: 96px;
  }

  .tracks {
    padding-block: 64px 68px;
  }

  .tracks > .shell {
    display: grid;
    grid-template-columns: 440px 310px;
    grid-template-areas:
      "heading visual"
      "tracks tracks";
    column-gap: 30px;
  }

  .tracks .section-heading {
    grid-area: heading;
    max-width: none;
  }

  .tracks h2 {
    margin-bottom: 0;
    font-size: 44px;
    line-height: 0.96;
  }

  .tracks-visual {
    grid-area: visual;
    align-self: center;
    width: 320px;
    margin: 0 0 0 -10px;
  }

  .results {
    padding-block: 64px 68px;
  }

  .results > .shell {
    display: grid;
    grid-template-columns: 450px 300px;
    grid-template-areas:
      "heading visual"
      "list list";
    column-gap: 30px;
  }

  .results .section-heading {
    grid-area: heading;
    max-width: none;
  }

  .results h2 {
    margin-bottom: 18px;
    font-size: 44px;
    line-height: 0.96;
  }

  .results .section-heading > p:last-child {
    font-size: 15px;
    line-height: 1.42;
  }

  .results-visual {
    grid-area: visual;
    align-self: center;
    width: 300px;
    height: 230px;
    margin: 0;
  }

  .result-list {
    grid-area: list;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
    border: 0;
  }

  .result-list li {
    grid-column: span 2;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    min-height: 238px;
    padding: 20px 18px;
    border: 1px solid rgb(16 29 57 / 18%);
    border-radius: 7px;
    background: var(--ivory);
  }

  .result-list li:nth-child(even) {
    border-right: 1px solid rgb(16 29 57 / 18%);
  }

  .result-list li:nth-child(n + 4) {
    grid-column: span 3;
    min-height: 178px;
  }

  .result-list li:last-child {
    grid-column: span 3;
    min-height: 178px;
    border-right: 1px solid rgb(16 29 57 / 18%);
  }

  .result-list > li > span {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    border-radius: 50%;
    background: var(--yellow);
    font-size: 12px;
  }

  .result-list h3 {
    margin-bottom: 9px;
    font-size: 18px;
    line-height: 1.12;
  }

  .result-list p {
    font-size: 14px;
    line-height: 1.4;
  }

  .track-list {
    grid-area: tracks;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 34px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 10px 10px 0 var(--orange);
  }

  .track-list article {
    min-height: 0;
    padding: 26px 28px 24px;
    box-shadow: none;
  }

  .track-list article:last-child {
    border-left: 1px solid rgb(16 29 57 / 20%);
    box-shadow: none;
  }

  .track-list h3 {
    margin-bottom: 16px;
    font-size: 24px;
  }

  .track-list li {
    padding: 9px 0 9px 22px;
    font-size: 14px;
    line-height: 1.38;
  }

  .track-list li::before {
    top: 9px;
  }

  .program-list summary {
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 5px;
    padding: 18px 54px 18px 0;
    font-size: 23px;
  }

  .program-week {
    grid-column: 2;
    grid-row: 1;
  }

  .program-topic {
    grid-column: 2;
    grid-row: 2;
  }

  .program-list summary::after {
    top: 50%;
    transform: translateY(-50%);
  }

  .program-list details > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    padding: 0 0 30px 130px;
  }

  .final-meeting {
    padding: 38px 40px;
  }

  .week-steps {
    position: relative;
    grid-area: steps;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 34px;
  }

  .week-steps::before {
    position: absolute;
    z-index: 0;
    top: 25px;
    right: 12.5%;
    left: 12.5%;
    height: 2px;
    background: rgb(16 29 57 / 48%);
    content: "";
  }

  .week-steps li {
    position: relative;
    display: block;
    min-height: 0;
    padding: 0;
    background: transparent;
  }

  .week-steps > li > span {
    position: relative;
    z-index: 1;
    display: flex;
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    border-radius: 50%;
    background: var(--navy);
    font-size: 24px;
  }

  .week-steps li > div {
    min-height: 230px;
    padding: 18px 15px;
    border-radius: 7px;
    background: var(--paper);
  }

  .week-steps h3 {
    margin-bottom: 9px;
    font-size: 19px;
    line-height: 1.12;
  }

  .week-steps p {
    font-size: 14px;
    line-height: 1.42;
  }

  .expert-layout {
    display: grid;
    grid-template-columns: 260px 490px;
    grid-template-areas:
      "photo title"
      "photo name"
      "photo bio"
      "results results";
    column-gap: 30px;
    align-items: start;
  }

  .expert {
    padding-block: 64px 68px;
  }

  .expert-frame {
    grid-area: photo;
    width: 250px;
    aspect-ratio: 4 / 5;
    margin: 0;
    padding: 8px;
  }

  .expert-frame img {
    object-position: 50% 18%;
  }

  .expert-copy {
    display: contents;
  }

  .expert-copy h2 {
    grid-area: title;
    margin-bottom: 10px;
    font-size: 48px;
  }

  .expert-name {
    grid-area: name;
    margin: 0 0 14px;
    font-size: 32px;
  }

  .expert-bio {
    grid-area: bio;
  }

  .expert-bio li {
    padding: 11px 0 11px 22px;
    font-size: 16px;
    line-height: 1.42;
  }

  .expert-bio li::before {
    top: 17px;
  }

  .expert-results {
    grid-area: results;
    display: grid;
    grid-template-columns: 280px 1fr;
    column-gap: 30px;
    margin-top: 34px;
    padding: 26px 28px 28px;
    color: var(--paper);
    background: var(--navy);
    box-shadow: 8px 8px 0 var(--orange);
  }

  .expert-results h3 {
    grid-column: 1;
    margin: 0;
    color: var(--paper);
    font-size: 27px;
  }

  .expert-results p {
    grid-column: 2;
    margin: 0;
    align-self: end;
    color: rgb(255 250 241 / 76%);
    font-size: 16px;
    line-height: 1.42;
  }

  .expert-results ul {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 24px;
    counter-reset: expert-result;
  }

  .expert-results li {
    min-height: 128px;
    padding: 0 20px;
    border-left: 1px solid rgb(255 250 241 / 22%);
    font-size: 16px;
    line-height: 1.4;
    counter-increment: expert-result;
  }

  .expert-results li:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .expert-results li:last-child {
    padding-right: 0;
  }

  .expert-results li::before {
    position: static;
    display: block;
    margin-bottom: 10px;
    color: var(--yellow);
    content: "0" counter(expert-result);
    font-size: 13px;
    font-weight: 850;
  }

  .reviews {
    padding-block: 64px 58px;
  }

  .reviews .shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    grid-template-areas:
      "heading proof"
      "controls controls"
      "list list";
    column-gap: 30px;
    row-gap: 22px;
  }

  .reviews .section-heading {
    grid-area: heading;
    max-width: none;
  }

  .reviews .section-heading h2 {
    font-size: 48px;
  }

  .reviews .section-heading > p:last-child {
    max-width: 490px;
    font-size: 16px;
    line-height: 1.45;
  }

  .review-controls {
    grid-area: controls;
    display: flex;
    gap: 10px;
    justify-self: end;
  }

  .review-arrow {
    color: var(--navy);
    border-color: var(--yellow);
    background: var(--yellow);
  }

  .review-list {
    grid-area: list;
    display: flex;
    gap: 18px;
    align-items: stretch;
    margin: 0;
    padding: 0 8px 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 0;
  }

  .review-list article {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    flex: 0 0 calc((100% - 26px) / 2);
    min-width: 0;
    padding-bottom: 0;
    color: var(--navy);
    border-color: var(--paper);
    background: var(--paper);
    box-shadow: 7px 7px 0 var(--yellow);
    scroll-snap-align: start;
  }

  .review-list article:nth-child(even) {
    box-shadow: 7px 7px 0 var(--orange);
  }

  .review-list video {
    height: 100%;
    aspect-ratio: auto;
    border-width: 5px;
    border-right: 0;
  }

  .review-copy {
    padding: 18px 16px 20px;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.42;
  }

  .review-copy p,
  .review-copy blockquote,
  .review-copy ul {
    margin-bottom: 12px;
  }

  .review-copy blockquote {
    border-left-color: var(--orange);
  }

  .reviews-proof {
    grid-area: proof;
    align-self: start;
    margin: 28px 0 0;
    padding: 20px 18px;
    font-size: 18px;
    line-height: 1.28;
    text-align: left;
  }

  .tariffs {
    padding-block: 38px 44px;
  }

  .tariffs-heading h2 {
    font-size: 54px;
  }

  .tariff-controls {
    display: none;
  }

  .tariff-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
    transition: none;
  }

  .tariff-card {
    flex: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto 100px auto minmax(0, 1fr) auto;
    grid-template-areas:
      "summary"
      "visual"
      "brief"
      "details"
      "actions";
    gap: 0;
    align-self: stretch;
    height: 510px;
    padding: 0;
    scroll-snap-align: none;
  }

  .tariff-card:nth-child(2) {
    z-index: 1;
    height: 510px;
    margin: 0;
    box-shadow: none;
  }

  .tariff-summary {
    grid-area: summary;
    padding: 18px 20px 0;
  }

  .tariff-card-visual {
    grid-area: visual;
    width: 100%;
    height: 100px;
    margin: 0 auto;
    padding-inline: 14px;
  }

  .tariff-body {
    display: contents;
  }

  .tariff-card h3 {
    margin-bottom: 6px;
    font-size: 26px;
  }

  .tariff-label {
    margin-bottom: 8px;
  }

  .tariff-price {
    font-size: 23px;
  }

  .tariff-brief {
    grid-area: brief;
    padding: 2px 20px 16px;
    font-size: 14px;
    line-height: 1.42;
  }

  .tariff-actions {
    grid-area: actions;
    gap: 8px;
    padding: 12px 18px 16px;
    background: var(--paper);
  }

  .tariff-card .button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 11px 12px;
    font-size: 15px;
    justify-self: stretch;
  }

  .tariff-card .tariff-details-button {
    display: none;
  }

  .tariff-card .tariff-details[hidden] {
    grid-area: details;
    display: block !important;
    min-width: 0;
    padding: 16px 18px 12px;
    overflow-y: scroll;
    color: var(--navy);
    border-top: 1px solid var(--navy);
    background: var(--paper);
    font-size: 13px;
    line-height: 1.4;
    scrollbar-color: var(--orange) transparent;
    scrollbar-width: thin;
  }

  .tariff-card .tariff-scroll-hint {
    position: sticky;
    z-index: 1;
    top: -16px;
    display: block;
    margin: -16px -18px 12px;
    padding: 8px 18px 7px;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .tariff-scroll-hint span {
    color: var(--orange);
    font-size: 17px;
    font-weight: 1000;
    text-shadow: 0.65px 0 currentColor, -0.65px 0 currentColor;
  }

  .tariff-card .tariff-details::-webkit-scrollbar {
    width: 6px;
  }

  .tariff-card .tariff-details::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--orange);
  }

  .tariff-card .tariff-features,
  .tariff-card .tariff-benefits {
    display: grid;
    gap: 11px;
  }

  .tariff-card .tariff-features li,
  .tariff-card .tariff-benefits li {
    margin-bottom: 0;
  }

  .tariff-card .tariff-intro {
    margin-bottom: 14px;
  }

  .tariff-card .tariff-note {
    margin: 18px 0 14px;
    font-size: 14px;
  }

  .tariff-dialog {
    width: min(720px, calc(100% - 64px));
    max-height: calc(100dvh - 64px);
    padding: 36px;
  }

  .tariff-dialog-heading {
    top: -36px;
    margin: -36px -36px 32px;
    padding: 32px 36px 24px;
  }

  .tariff-dialog-heading h3 {
    font-size: 38px;
  }

  .manager {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 0;
    align-items: stretch;
    margin-top: 28px;
    padding: 0;
  }

  .manager > div {
    display: block;
    padding: 28px 30px 30px;
  }

  .manager .section-kicker {
    margin-bottom: 12px;
  }

  .manager h2 {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1;
  }

  .manager p:last-child {
    max-width: 470px;
    font-size: 15px;
    line-height: 1.45;
  }

  .manager .button {
    align-self: center;
    justify-self: center;
    width: calc(100% - 48px);
    min-width: 0;
    min-height: 62px;
    margin: 24px;
    padding: 16px 18px;
    color: var(--yellow);
    border: 2px solid var(--yellow);
    border-radius: 7px;
    background: transparent;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .faq-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 50px;
    align-items: start;
  }

  .faq-list {
    width: auto;
    margin-top: 0;
  }

  .faq {
    padding-block: 60px 48px;
  }

  .faq .section-heading {
    max-width: none;
  }

  .faq h2 {
    font-size: 42px;
  }

  .faq-list summary {
    padding: 16px 36px 16px 0;
    font-size: 15px;
  }

  .faq-list summary::after {
    top: 14px;
  }

  .faq-list p {
    padding: 0 28px 17px 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .site-footer {
    padding-block: 24px;
  }

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

  .brand--footer {
    width: 132px;
  }

  .footer-layout p {
    font-size: 12px;
  }
}

@media (min-width: 1160px) {
  :root {
    --shell: 1120px;
  }

  .section-heading {
    max-width: 960px;
  }

  .hero-layout {
    grid-template-columns: 520px 560px;
    column-gap: 40px;
  }

  .hero-visual--desktop {
    width: 570px;
    height: 360px;
  }

  .problems > .shell,
  .tracks > .shell {
    grid-template-columns: 650px 430px;
    column-gap: 40px;
  }

  .problems-visual {
    width: 420px;
  }

  .tracks-visual {
    width: 440px;
  }

  .week > .shell,
  .results > .shell {
    grid-template-columns: 650px 430px;
    column-gap: 40px;
  }

  .week-visual {
    width: 430px;
    height: 280px;
  }

  .results-visual {
    width: 430px;
    height: 300px;
  }

  .expert-layout {
    grid-template-columns: 360px 720px;
    column-gap: 40px;
  }

  .expert-frame {
    width: 340px;
  }

  .expert-results {
    grid-template-columns: 360px 1fr;
    column-gap: 40px;
  }

  .reviews .shell {
    grid-template-columns: minmax(0, 1fr) 300px;
    column-gap: 40px;
  }

  .reviews .section-heading > p:last-child {
    max-width: 680px;
  }

  .review-list article {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .tariff-brief {
    min-height: 78px;
  }

  .manager {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .faq-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 60px;
  }
}

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

}
