:root {
  --navy: #304968;
  --deep: #213851;
  --yellow: #fbff00;
  --mint: #b9e2d2;
  --white: #fff;
  --paper: #f7f8fb;
  --ink: #1d334d;
  --violet: #5147ec;
  --coral: #ff776d;
  --line: rgba(48,73,104,.18)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: Inter,Arial,sans-serif
}

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

a {
  color: inherit
}

mark {
  padding: 0;
  background: none;
  color: var(--yellow)
}

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

.section {
  padding: clamp(72px,9vw,140px) clamp(22px,6vw,96px)
}

.header {
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(22px,6vw,96px);
  background: var(--navy);
  border-bottom: 2px solid rgba(255,255,255,.82)
}

.logo {
  width: 150px;
  height: 55px;
  display: flex;
  align-items: center;
  overflow: hidden
}

.logo img {
  width: 150px
}

.nav {
  display: flex;
  gap: 30px
}

.nav a,.header-button {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none
}

.header-button {
  justify-self: end;
  border: 1px solid rgba(255,255,255,.75);
  padding: 12px 16px
}

.menu-button {
  display: none;
  background: none;
  border: 0;
  color: white;
  padding: 10px
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px
}

.hero {
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(360px,.75fr);
  gap: clamp(30px,4vw,70px);
  min-height: calc(100svh - 88px);
  padding: 0 clamp(22px,6vw,96px);
  overflow: hidden
}

.hero-copy {
  padding: 30px 0 38px;
  position: relative;
  z-index: 2
}

.eyebrow,.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase
}

.eyebrow i,.section-tag:before {
  content: '';
  display: block;
  width: 42px;
  height: 5px;
  background: var(--yellow)
}

.hero-title {
  position: relative;
  margin-top: 18px
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: Oswald,'Arial Narrow',sans-serif;
  font-size: clamp(68px,8.5vw,132px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: .84;
  text-transform: uppercase
}

.hero h1 mark {
  display: block
}

.hero-title>span {
  position: absolute;
  right: 1%;
  top: 53%;
  transform: rotate(-5deg);
  color: var(--mint);
  font-family: Georgia,serif;
  font-size: clamp(18px,2.1vw,32px);
  font-style: italic;
  white-space: nowrap
}

.hero-subtitle {
  display: flex;
  max-width: 760px;
  margin: 25px 0 18px;
  font-size: clamp(18px,1.7vw,25px);
  font-weight: 700;
  line-height: 1.35
}

.hero-subtitle:before {
  content: '';
  flex: none;
  margin: 7px 14px 0 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--yellow)
}

.hero-quote {
  max-width: 760px;
  margin: 0;
  padding: 17px 22px;
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45
}

.hero-quote p {
  margin-bottom: 8px
}

.hero-quote cite {
  font-style: normal;
  font-weight: 700
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px
}

.hero-actions p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .07em;
  text-transform: uppercase
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  text-decoration: none;
  font-family: Oswald,sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .025em;
  text-transform: uppercase;
  transition: transform .2s,box-shadow .2s
}

.button:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 var(--deep)
}

.button-primary {
  background: var(--yellow);
  color: var(--deep)
}

.button b {
  font: 22px Arial
}

.hero-photo {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #f7f8fb
}

.hero-photo:before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 50px;
  background: var(--navy)
}

.hero-photo>img {
  position: absolute;
  z-index: 2;
  width: 190%;
  max-width: none;
  right: -50%;
  bottom: -17%;
  filter: drop-shadow(-12px 18px 18px rgb(27 42 61/.2))
}

.dot-grid {
  width: 70px;
  height: 70px;
  background-image: radial-gradient(circle,currentColor 2px,transparent 3px);
  background-size: 18px 18px
}

.offer {
  position: absolute;
  z-index: 4;
  left: 18px;
  right: 18px;
  bottom: 24px;
  padding: 15px 18px;
  background: var(--deep);
  box-shadow: 9px 9px var(--yellow);
  text-decoration: none
}

.offer span {
  display: block;
  color: var(--yellow);
  font: 600 21px Oswald,sans-serif;
  text-transform: uppercase
}

.offer small {
  display: block;
  margin-top: 4px
}

.offer strong {
  display: block;
  margin-top: 3px;
  font-size: 24px
}

.offer del {
  margin-left: 8px;
  font-size: 15px;
  font-weight: 400;
  opacity: .55
}

.audience,.reviews {
  background: var(--paper);
  color: var(--ink)
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px
}

.section-heading>p {
  padding-top: 12px;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase
}

.section-heading h2,.reasons h2,.free-copy h2,.author h2,.final h2 {
  margin: 0;
  font: 600 clamp(54px,7vw,108px)/.9 Oswald,sans-serif;
  text-transform: uppercase
}

.section-heading mark,.reasons mark,.free-copy mark,.author mark {
  color: var(--navy)
}

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

.info-card {
  position: relative;
  padding: 40px;
  border: 2px solid var(--navy);
  overflow: hidden
}

.info-card:nth-child(2),.info-card:nth-child(3) {
  background: var(--navy);
  color: white
}

.info-card>span {
  position: absolute;
  right: 20px;
  top: 10px;
  color: var(--yellow);
  font: 600 72px Oswald,sans-serif
}

.info-card h3 {
  position: relative;
  max-width: 520px;
  margin: 0 0 14px;
  font: 600 clamp(26px,3vw,42px)/1 Oswald,sans-serif;
  text-transform: uppercase
}

.info-card p {
  max-width: 58ch;
  margin: 0;
  line-height: 1.6
}

.reasons {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px,8vw,130px);
  background: var(--navy)
}

.reasons-intro {
  position: sticky;
  top: 40px;
  align-self: start
}

.reasons-intro>p:last-child {
  max-width: 42ch;
  margin-top: 30px;
  line-height: 1.65;
  color: rgba(255,255,255,.8)
}

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

.reason-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 27px 0;
  border-top: 1px solid rgba(255,255,255,.35)
}

.reason-list li:last-child {
  border-bottom: 1px solid rgba(255,255,255,.35)
}

.reason-list li>span {
  color: var(--yellow);
  font: 500 34px Oswald,sans-serif
}

.reason-list h3 {
  margin: 0 0 9px;
  font: 600 clamp(24px,2.5vw,36px)/1.05 Oswald,sans-serif;
  text-transform: uppercase
}

.reason-list p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255,255,255,.78)
}

.free-lesson {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px,8vw,120px);
  background: #cdecf5;
  color: var(--ink)
}

.audience .section-tag:before,
.author .section-tag:before,
.free-copy .section-tag:before,
.reviews .section-tag:before {
  background: var(--navy)
}

.free-copy>p:not(.section-tag) {
  max-width: 50ch;
  margin: 28px 0;
  line-height: 1.65
}

.result-list article {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  padding: 28px 0;
  border-top: 2px solid var(--navy)
}

.result-list article:last-child {
  border-bottom: 2px solid var(--navy)
}

.result-list article>span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 700
}

.result-list article>b {
  font: 500 42px Oswald,sans-serif;
  opacity: .24
}

.result-list h3 {
  margin: 0 0 8px;
  font: 600 clamp(23px,2.4vw,34px)/1.05 Oswald,sans-serif;
  text-transform: uppercase
}

.result-list p {
  margin: 0;
  line-height: 1.55
}

.learning {
  background: var(--navy);
  color: white
}

.learning .section-heading mark {
  color: var(--yellow)
}

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

.learning-grid article {
  position: relative;
  min-height: 320px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.48)
}

.learning-grid article:nth-child(1),.learning-grid article:nth-child(4) {
  background: white;
  color: var(--ink)
}

.learning-grid article>span {
  color: var(--yellow);
  font: 600 52px Oswald,sans-serif
}

.learning-grid article:nth-child(1)>span,.learning-grid article:nth-child(4)>span {
  color: var(--navy)
}

.learning-grid h3 {
  margin: 55px 0 14px;
  font: 600 clamp(27px,3vw,42px)/1 Oswald,sans-serif;
  text-transform: uppercase
}

.learning-grid p {
  margin: 0;
  line-height: 1.62
}

.author {
  display: grid;
  grid-template-columns: minmax(320px,.75fr) minmax(0,1.25fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(45px,8vw,120px);
  row-gap: 18px;
  background: var(--paper);
  color: var(--ink)
}

.author-tag {
  grid-column: 1;
  grid-row: 1;
  margin: 0
}

.author-photo {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  min-height: 780px;
  overflow: hidden;
  border-radius: 160px 0 0;
  background: radial-gradient(circle at 75% 17%,var(--yellow) 0 42px,transparent 43px),var(--navy)
}

.author-photo img {
  position: absolute;
  width: 115%;
  max-width: none;
  left: -8%;
  bottom: -1%
}

.author-photo .dot-grid {
  position: absolute;
  right: 30px;
  top: 35px;
  color: var(--yellow)
}

.author-copy {
  grid-column: 2;
  grid-row: 1 / 3
}

.author-copy ul {
  list-style: none;
  margin: 35px 0;
  padding: 0
}

.author-copy li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-top: 1px solid var(--line);
  line-height: 1.55
}

.author-copy li:before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--yellow);
  text-shadow: 0 0 0 var(--navy)
}

.author-note {
  padding: 24px;
  background: var(--navy);
  color: white
}

.author-note p {
  margin: 0 0 13px;
  line-height: 1.6
}

.author-note p:last-child {
  margin: 0
}

.review-grid {
  columns: 3 280px;
  column-gap: 18px
}

.review {
  break-inside: avoid;
  margin: 0 0 18px;
  padding: 25px;
  border: 2px solid var(--navy);
  background: white
}

.review:nth-child(2n) {
  background: var(--navy);
  color: white
}

.review>span {
  color: var(--yellow);
  font: 700 68px/1 Georgia,serif
}

.review p {
  margin: -16px 0 18px;
  line-height: 1.62
}

.review cite {
  font-size: 11px;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .68
}

.final {
  position: relative;
  text-align: center;
  background: var(--deep);
  overflow: hidden
}

.final-tag {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  text-align: left
}

.final h2 {
  margin: 26px 0
}

.final-text {
  max-width: 660px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.6
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 30px clamp(22px,6vw,96px);
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.3);
  font-size: 12px;
  text-transform: uppercase
}

.footer a {
  text-decoration: none
}

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

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

@media(max-width:980px) {
  .header {
    grid-template-columns: 1fr auto
  }

  .nav {
    display: none;
    position: absolute;
    z-index: 20;
    left: 0;
    right: 0;
    top: 72px;
    flex-direction: column;
    padding: 25px;
    background: var(--deep)
  }

  .nav.is-open {
    display: flex
  }

  .header-button {
    display: none
  }

  .menu-button {
    display: block
  }

  .hero {
    grid-template-columns: 1fr
  }

  .hero-photo {
    min-height: 650px
  }

  .hero-photo>img {
    width: 150%;
    right: -24%;
    bottom: -12%
  }

  .reasons,.free-lesson,.author {
    grid-template-columns: 1fr
  }

  .reasons-intro {
    position: static
  }

  .author-photo {
    min-height: 650px
  }

  .header {
    height: 72px
  }

  .logo,.logo img {
    width: 125px
  }

}

@media(max-width:640px) {
  .section {
    padding: 70px 18px
  }

  .hero {
    padding: 0 18px;
    min-height: 0
  }

  .hero-copy {
    padding-top: 23px
  }

  .hero h1 {
    font-size: clamp(55px,17vw,78px)
  }

  .hero-subtitle {
    font-size: 17px
  }

  .hero-quote {
    padding: 16px;
    font-size: 12px
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column
  }

  .button {
    width: 100%;
    font-size: 17px
  }

  .hero-photo {
    min-height: 510px
  }

  .hero-photo>img {
    width: 170%;
    right: -37%;
    bottom: -13%
  }

  .offer {
    left: 0;
    right: 10px
  }

  .section-heading {
    display: block
  }

  .section-heading h2 {
    font-size: 54px
  }

  .card-grid,.learning-grid {
    grid-template-columns: 1fr
  }

  .info-card,.learning-grid article {
    min-height: 280px
  }

  .reason-list li {
    grid-template-columns: 56px 1fr;
    gap: 12px
  }

  .result-list article {
    grid-template-columns: 42px 1fr
  }

  .result-list article>b {
    display: none
  }

  .author-photo {
    min-height: 520px
  }

  .author-photo img {
    width: 126%;
    left: -14%
  }

  .footer {
    flex-direction: column;
    text-align: center
  }

}

.hero-photo {
  background: var(--navy)
}

.hero-photo:before {
  content: none
}

.hero-photo>img {
  width: 125%;
  right: -7%;
  bottom: -2%
}

.hero h1 {
  line-height: .9;
  letter-spacing: normal
}

.hero-free-intro {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.86)
}

.course-link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(190px,auto);
  grid-template-rows: auto;
  align-items: center;
  width: max-content;
  max-width: 100%;
  gap: 2px 22px;
  margin-top: 14px;
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.72);
  text-decoration: none
}

.course-link span {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  font: 600 17px Oswald,sans-serif;
  text-transform: uppercase
}

.course-pricing {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: baseline;
  justify-content: end;
  column-gap: 12px;
  row-gap: 3px;
  text-align: right
}

.course-pricing del {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: white;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  opacity: .6
}

.course-pricing strong {
  grid-column: 2;
  grid-row: 1;
  color: var(--yellow);
  font-size: 34px;
  line-height: 1
}

.course-pricing small {
  grid-column: 1/3;
  grid-row: 2;
  max-width: 240px;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase
}

.course-link>b {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  font: 20px Arial
}

.final .final-course-link {
  width: min(720px,100%);
  margin: 36px auto 0;
  padding-right: 54px;
  text-align: left
}

.final .final-course-link>b {
  right: 18px
}

.reasons mark {
  color: var(--yellow)
}

@media(min-width:981px) {
  .hero-quote {
    position: relative;
    z-index: 5;
    width: calc(100% + clamp(34px,4vw,72px));
    max-width: none
  }

}

@media(max-width:980px) {
  .hero-photo>img {
    width: auto;
    height: 112%;
    right: 8%;
    bottom: -12%
  }

}

@media(max-width:640px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr
  }

  .hero-copy {
    display: contents
  }

  .eyebrow {
    display: flex;
    order: 0;
    margin-bottom: 0;
    padding-top: 23px
  }

  .hero-title {
    order: 1;
    padding-top: 0
  }

  .hero-subtitle {
    order: 2
  }

  .hero-quote {
    order: 3;
    width: 100%;
    max-width: none
  }

  .hero-photo {
    order: 4;
    z-index: 4;
    margin-top: 0;
    overflow: visible
  }

  .hero-free-intro {
    order: 5
  }

  .hero-actions {
    order: 6
  }

  .course-link {
    order: 7;
    width: calc(100% - 28px);
    margin: 0 0 28px
  }

  .course-link>b {
    right: -28px
  }

  .hero-photo>img {
    width: auto;
    height: 110%;
    right: -2%;
    bottom: -10%;
    transform: translateY(-60px)
  }

}

@media(max-width:640px) {
  .hero-free-intro {
    position: relative;
    z-index: 6;
    align-self: start;
    min-height: 0;
    height: auto;
    margin: -250px 12px 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--deep);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(20,38,57,.16)
  }

  .hero-actions {
    position: relative;
    z-index: 6;
    margin: 14px 12px 0
  }

  .course-link {
    position: relative;
    z-index: 6;
    width: calc(100% - 52px);
    margin: 16px 12px 30px;
    background: rgba(33,56,81,.94)
  }

}

@media(max-width:640px) {
  .cta-stack {
    order: 5;
    position: relative;
    z-index: 6;
    margin-top: -350px;
    padding: 0 12px 30px
  }

  .cta-stack .hero-free-intro {
    margin: 0;
    padding: 14px 16px
  }

  .cta-stack .hero-actions {
    margin: 14px 0 0
  }

  .cta-stack .course-link {
    width: calc(100% - 28px);
    margin: 16px 0 0
  }

}

@media(min-width:641px) and (max-width:980px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr
  }

  .hero-copy {
    display: contents
  }

  .eyebrow {
    order: 0;
    padding-top: 28px
  }

  .hero-title {
    order: 1
  }

  .hero-subtitle {
    order: 2
  }

  .hero-quote {
    order: 3;
    width: 100%;
    max-width: none
  }

  .hero-photo {
    order: 4;
    z-index: 4;
    overflow: visible
  }

  .cta-stack {
    order: 5;
    position: relative;
    z-index: 6;
    width: min(720px,calc(100% - 56px));
    margin: -300px 0 0 28px;
    padding-bottom: 40px
  }

  .cta-stack .hero-free-intro {
    align-self: start;
    min-height: 0;
    height: auto;
    margin: 0;
    padding: 16px 18px;
    border-radius: 14px;
    background: var(--deep);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(20,38,57,.16)
  }

  .cta-stack .hero-actions {
    position: relative;
    z-index: 6;
    margin: 16px 0 0
  }

  .cta-stack .course-link {
    position: relative;
    z-index: 6;
    margin: 16px 0 0;
    background: rgba(33,56,81,.94)
  }

}

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

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

  .button {
    transition: none
  }

}

.review-carousel {
  position: relative
}

.review-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain
}

.review-viewport::-webkit-scrollbar {
  display: none
}

.review-track {
  display: flex;
  gap: 18px
}

.review-track .review {
  display: flex;
  flex: 0 0 calc((100% - 36px)/3);
  flex-direction: column;
  min-height: 360px;
  margin: 0;
  scroll-snap-align: start
}

.review-track .review cite {
  margin-top: auto
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px
}

.review-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 600 18px Oswald,sans-serif
}

.review-counter i {
  width: 64px;
  height: 2px;
  background: var(--navy)
}

.review-buttons {
  display: flex;
  gap: 10px
}

.review-buttons button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 24px;
  cursor: pointer;
  transition: background .2s,color .2s,opacity .2s
}

.review-buttons button:hover:not(:disabled) {
  background: var(--navy);
  color: white
}

.review-buttons button:disabled {
  opacity: .3;
  cursor: default
}

@media(max-width:980px) {
  .review-track .review {
    flex-basis: calc((100% - 18px)/2)
  }

}

@media(max-width:640px) {
  .review-track .review {
    flex-basis: 100%;
    min-height: 330px
  }

  .review-controls {
    margin-top: 18px
  }

}

.author-photo {
  display: flex;
  align-self: start;
  justify-content: center;
  min-height: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent
}

.author-photo img {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: auto;
  left: auto;
  bottom: auto;
  object-fit: contain;
  object-position: top center
}

@media(max-width:980px) {
  .author {
    grid-template-rows: auto auto auto;
    row-gap: 18px
  }

  .author-tag {
    grid-column: 1;
    grid-row: 1
  }

  .author-photo {
    grid-column: 1;
    grid-row: 2;
    min-height: 0
  }

  .author-photo img {
    width: min(100%,560px);
    max-width: 560px
  }

  .author-copy {
    grid-column: 1;
    grid-row: 3
  }

}

@media(max-width:640px) {
  .author-photo {
    min-height: 0
  }

  .author-photo img {
    width: 100%;
    max-width: 430px;
    left: auto
  }

}

.hero-quote-mark {
  float: left;
  height: auto;
  margin: 1px 11px -8px 0;
  color: var(--navy);
  font: 700 72px/.8 Georgia,serif
}

.hero-quote-mark+p {
  margin-top: 0
}

.author-quote-mark {
  float: left;
  margin: 2px 11px -8px 0;
  color: var(--yellow);
  font: 700 72px/.8 Georgia,serif
}

.info-card>span.info-icon {
  position: relative;
  float: right;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  right: auto;
  top: auto;
  margin: 0 0 14px 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--navy);
  font: 400 43px/1 Arial,sans-serif
}

.info-card:nth-child(2)>span.info-icon,.info-card:nth-child(3)>span.info-icon {
  color: var(--yellow)
}

.info-card>span.info-icon-cycle {
  font-size: 46px
}

.info-card>span.info-icon-privacy:before {
  content: '';
  width: 25px;
  height: 20px;
  margin-top: 9px;
  border: 3px solid currentColor;
  border-radius: 4px
}

.info-card>span.info-icon-privacy:after {
  content: '';
  position: absolute;
  top: 15px;
  width: 17px;
  height: 16px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 11px 11px 0 0
}

.info-card>span.info-icon-obstacle {
  font: 600 40px/1 Oswald,sans-serif
}

.info-card>span.info-icon-repeat {
  font-size: 38px
}

.info-card>span.info-icon-privacy:before {
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: 28px;
  height: 23px;
  margin: 0;
  transform: translateX(-50%);
  border: 3px solid currentColor;
  border-radius: 4px
}

.info-card>span.info-icon-privacy:after {
  left: 50%;
  top: 12px;
  width: 19px;
  height: 20px;
  transform: translateX(-50%);
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0
}

.info-card>span.info-icon-privacy i {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 39px;
  width: 5px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 50% 50% 2px 2px;
  background: currentColor
}

.info-card>span.info-icon-privacy {
  border: 0;
  border-radius: 0
}

.info-card>span.info-icon-privacy:before {
  bottom: 4px;
  width: 48px;
  height: 37px;
  border-width: 6px;
  border-radius: 5px
}

.info-card>span.info-icon-privacy:after {
  top: 4px;
  width: 29px;
  height: 29px;
  border-width: 6px;
  border-radius: 18px 18px 0 0
}

.info-card>span.info-icon-privacy i {
  top: 38px;
  width: 9px;
  height: 17px;
  border-radius: 3px
}

.info-card>span.info-icon-privacy i:before {
  content: '';
  position: absolute;
  left: 50%;
  top: -6px;
  width: 17px;
  height: 17px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: currentColor
}

.info-card>span.info-icon-privacy {
  border: 2px solid currentColor;
  border-radius: 50%
}

.info-card>span.info-icon-privacy:before {
  bottom: 10px;
  width: 36px;
  height: 28px;
  border-width: 4px;
  border-radius: 4px
}

.info-card>span.info-icon-privacy:after {
  top: 9px;
  width: 22px;
  height: 24px;
  border-width: 4px;
  border-radius: 14px 14px 0 0
}

.info-card>span.info-icon-privacy i {
  top: 37px;
  width: 7px;
  height: 13px
}

.info-card>span.info-icon-privacy i:before {
  top: -5px;
  width: 13px;
  height: 13px
}

.reason-list li>span.reason-check {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  font: 600 25px/1 Arial,sans-serif
}

.reason-list p a {
  color: var(--yellow);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px
}

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

.learning-grid article:nth-child(3) {
  background: white;
  color: var(--ink)
}

.learning-grid article:nth-child(3)>span {
  color: var(--navy)
}

@media(max-width:980px) {
  .learning-grid {
    grid-template-columns: 1fr
  }

}

.between-section-cta {
  display: flex;
  justify-content: center;
  padding: 0 clamp(22px,6vw,96px) 80px;
  background: var(--navy)
}

@media(max-width:640px) {
  .between-section-cta {
    padding: 0 18px 60px
  }

}

.author-copy li:before {
  color: var(--navy)
}

.review:nth-child(odd)>span {
  color: var(--navy)
}

.review-track .review-more {
  align-items: center;
  justify-content: center
}

.review-more .button {
  width: 100%;
  max-width: 290px;
  text-align: center
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px
}

.footer .social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  color: white;
  transition: border-color .2s,color .2s,transform .2s
}

.footer .social-link:hover {
  color: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px)
}

.social-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.social-links {
  gap: 14px
}

.footer .social-link {
  width: 66px;
  height: 66px;
  color: white;
  border: 0;
  overflow: hidden
}

.social-link svg {
  width: 35px;
  height: 35px;
  stroke-width: 1.8
}

.footer .social-link[href*="youtube.com"] {
  background: #ff0000
}

.footer .social-link[href*="instagram.com"] {
  background: linear-gradient(145deg,#405de6 0%,#833ab4 28%,#c13584 48%,#e1306c 65%,#fd1d1d 80%,#fcb045 100%)
}

.footer .social-link[href*="t.me"] {
  background: #229ed9
}

.footer .social-link:hover {
  color: white;
  border-color: transparent;
  filter: brightness(1.08);
  transform: translateY(-3px)
}

.header .logo,.header .logo img {
  width: 188px
}

.header .logo {
  height: 69px
}

.footer .logo,.footer .logo img {
  width: 281px
}

.footer .logo {
  height: 104px
}

@media(max-width:980px) {
  .header .logo,.header .logo img {
    width: 156px
  }

  .header .logo {
    height: 57px
  }

  .footer .logo,.footer .logo img {
    width: 235px
  }

  .footer .logo {
    height: 86px
  }

}

/* A clear, classic keyhole silhouette for the privacy card. */ .info-card>span.info-icon-privacy:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 16px;
  width: 20px;
  height: 20px;
  transform: translateX(-50%);
  border: 0;
  border-radius: 50%;
  background: currentColor;
}

.info-card>span.info-icon-privacy:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 31px;
  width: 18px;
  height: 23px;
  transform: translateX(-50%);
  border: 0;
  border-radius: 2px 2px 5px 5px;
  background: currentColor;
  clip-path: polygon(36% 0,64% 0,100% 100%,0 100%);
}

.info-card>span.info-icon-privacy i {
  display: none
}
