:root {
  --ink: #211d1b;
  --cream: #f3eee4;
  --cream-deep: #e6dfd1;
  --muted: #7d766c;
  --pink: #ed0f7d;
  --blue: #35a7df;
  --orange: #f57f19;
  --white: #fffdf9;
  --shadow: 0 24px 60px rgba(38, 33, 27, .24);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

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

.site-header {
  background: #f6f1e8;
  border-bottom: 1px solid rgba(33, 29, 27, .08);
  box-shadow: 0 3px 20px rgba(33, 29, 27, .05);
}

.navbar {
  min-height: 58px;
  padding: 8px 0;
}

.navbar-brand {
  margin-right: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-mark img {
  display: block;
  width: 46px;
  height: auto;
}

.navbar-nav {
  gap: 22px;
}

.nav-link {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink);
}

.btn-hot {
  --bs-btn-bg: var(--pink);
  --bs-btn-border-color: var(--pink);
  --bs-btn-hover-bg: #d8086d;
  --bs-btn-hover-border-color: #d8086d;
  --bs-btn-active-bg: #bc075f;
  --bs-btn-active-border-color: #bc075f;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  min-height: 36px;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 900;
}

.site-header .btn-hot,
.site-header .btn-hot:hover,
.site-header .btn-hot:focus,
.site-header .btn-hot:active {
  color: #fff;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.grid-lines::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    repeating-conic-gradient(from 258deg at 50% 0, rgba(237, 15, 125, .42) 0 1deg, transparent 1deg 9deg);
  opacity: .62;
  transform: perspective(800px) rotateX(56deg) translateY(-38%);
  transform-origin: 50% 0;
}

.grid-lines > .container-xl {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 114px 0 126px;
}

.container-xl {
  max-width: 1150px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #b4b4b4;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.eyebrow.centered {
  justify-content: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-title {
  max-width: 430px;
  font-size: clamp(74px, 11vw, 142px);
  line-height: 1;
  text-transform: none;
}

.hero-title span {
  display: block;
}

.pink {
  color: var(--pink);
}

.blue {
  color: var(--blue);
}

.hero-copy {
  max-width: 430px;
  margin: 28px 0 18px;
  color: rgba(255, 253, 249, .7);
  font-size: 16px;
  line-height: 1.55;
}

.mini-proof,
.small-note {
  max-width: 430px;
  color: rgba(255, 253, 249, .62);
  font-size: 14px;
  line-height: 1.5;
}

.dot-pink {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  max-width: 430px;
  margin: 24px 0 14px;
}

.form-control {
  min-height: 46px;
  border: 0;
  border-radius: 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.hero-product-image {
  display: block;
  width: min(570px, 100%);
  height: auto;
  margin-left: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pink-card,
.orange-card {
  color: #fff;
  background: var(--pink);
}

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

.lesson-card {
  position: relative;
  margin: 12px 0 18px;
  padding: 22px;
  border-radius: 6px;
}

.lesson-card::after,
.sample-head::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, .32);
  content: "";
}

.lesson-card b {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: 33px;
  line-height: 1;
}

.lesson-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.download-row,
.resource-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 16px;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(33, 29, 27, .08);
}

.download-row b {
  color: var(--pink);
  font-size: 13px;
}

.video-section,
.cycle-section,
.sample-section,
.questions-section {
  padding: 92px 0;
}

.video-section h2,
.cycle-section h2,
.questions-section h2 {
  font-size: clamp(48px, 6vw, 74px);
  line-height: 1;
}

.video-poster {
  position: relative;
  display: block;
  width: min(680px, 100%);
  margin: 44px auto 24px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 9px;
  background: #d9d3c4;
  box-shadow: 0 28px 70px rgba(33, 29, 27, .32);
}

.video-poster img {
  display: block;
  width: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 10px 24px rgba(237, 15, 125, .45);
  transform: translate(-50%, -50%);
}

.play-button::before {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  content: "";
}

.section-caption {
  max-width: 590px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.built-section,
.platform-section {
  padding: 88px 0;
}

.built-section h2,
.platform-section h2,
.sample-section h2 {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
}

.built-section .container-xl,
.sample-section .container-xl {
  max-width: 980px;
}

.feature-card {
  height: 100%;
  min-height: 214px;
  padding: 28px;
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
}

.icon-box {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
}

.icon-box i {
  font-size: 16px;
  line-height: 1;
}

.pink-bg {
  background: var(--pink);
}

.blue-bg {
  background: var(--blue);
}

.orange-bg {
  background: var(--orange);
}

.feature-card h3,
.cycle-card h3 {
  font-size: 22px;
  line-height: 1;
}

.feature-card p,
.cycle-card p {
  margin: 12px 0 0;
  color: #6f675d;
  font-size: 15px;
  line-height: 1.55;
}

.cycle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  margin: 46px auto 32px;
}

.cycle-card {
  position: relative;
  min-height: 210px;
  padding: 24px 18px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(33, 29, 27, .12);
}

.cycle-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -32px;
  color: #9a9186;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-size: 15px;
  font-weight: 900;
  transform: translateY(-50%);
}

.cycle-number {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.cycle-card small {
  display: block;
  margin-top: 12px;
  color: #9a9186;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cycle-note {
  display: flex;
  gap: 10px;
  align-items: center;
  width: min(500px, 100%);
  padding: 16px 22px;
  border-radius: 999px;
  color: #8a6272;
  background: #ffd7e9;
  font-size: 14px;
  text-align: left;
}

.cycle-note span {
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--pink);
}

.platform-section p {
  max-width: 430px;
  color: rgba(255, 253, 249, .7);
  font-size: 16px;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 13px;
  max-width: 430px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 253, 249, .86);
  font-size: 15px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.check-list li::before {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  font-size: 10px;
  content: "✓";
}

.platform-ui {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr 180px;
  width: min(650px, 100%);
  margin-left: auto;
  padding-top: 30px;
  overflow: hidden;
  border: 3px solid rgba(255, 253, 249, .6);
  border-radius: 9px;
  background: #f2ecdf;
  box-shadow: var(--shadow);
}

.platform-panel-image {
  display: block;
  width: min(650px, 100%);
  height: auto;
  margin-left: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fake-address {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 30px;
  padding-left: 24px;
  color: #9b958b;
  background: #fff;
  font-size: 10px;
  line-height: 30px;
}

.platform-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 355px;
  padding: 32px 18px;
  color: rgba(255, 253, 249, .55);
  background: #171514;
  font-size: 11px;
}

.platform-sidebar strong {
  color: var(--blue);
  font-family: "Anton", Impact, sans-serif;
  font-size: 18px;
}

.platform-sidebar b {
  color: rgba(255, 253, 249, .78);
}

.platform-content,
.resource-list {
  padding: 20px;
}

.unit-card,
.age-card {
  padding: 18px;
  border-radius: 6px;
}

.unit-card h3 {
  margin: 8px 0;
  font-size: 33px;
  line-height: 1;
}

.text-block {
  margin: 16px 0;
  padding: 15px;
  border-radius: 5px;
  color: #fff;
  background: var(--pink);
}

.text-block b,
.text-block span,
.age-card b,
.age-card span {
  display: block;
}

.text-block span,
.age-card span {
  font-size: 14px;
}

.platform-content p {
  color: var(--muted);
  font-size: 15px;
}

.sample-section {
  padding-bottom: 42px;
}

.sample-card {
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(33, 29, 27, .1);
}

.sample-head {
  position: relative;
  min-height: 150px;
  padding: 25px;
}

.sample-head h3 {
  margin: 6px 0;
  font-size: 36px;
  line-height: 1;
}

.sample-head small {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sample-body {
  padding: 25px;
}

.sample-body small {
  color: #a39b91;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sample-body p {
  margin: 8px 0 18px;
  font-size: 16px;
  line-height: 1.55;
}

.sample-body a {
  float: right;
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 20px;
  text-decoration: none;
}

.sample-body a::after {
  margin-left: 8px;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
}

.questions-section {
  padding-top: 56px;
}

.faq-accordion {
  width: 100%;
  margin-top: 48px;
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(33, 29, 27, .11);
  background: transparent;
}

.accordion-item:first-child {
  border-top: 1px solid rgba(33, 29, 27, .11);
}

.accordion-button {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 8px;
  width: 100%;
  color: var(--ink);
  background: transparent;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  padding-bottom: 18px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
}

.accordion-button::after {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  margin-top: 4px;
  margin-right: 0;
  margin-left: auto;
  border: 1px solid var(--pink);
  border-radius: 50%;
  background-color: var(--pink);
  background-image: none;
  color: #fff;
  content: "\f077";
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transform: none;
}

.accordion-button.collapsed::after {
  border-color: rgba(33, 29, 27, .2);
  background-color: transparent;
  color: #6f675d;
  content: "\f078";
  transform: none;
}

.accordion-body {
  max-width: 820px;
  padding: 0 84px 34px 8px;
  color: #6f6b66;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
}

.site-footer {
  padding: 20px 0;
  color: rgba(255, 253, 249, .48);
  background: #14110f;
  font-size: 13px;
}

.vision-modal {
  --bs-modal-width: 80vw;
  background: rgba(36, 129, 176, .88);
}

.vision-modal .modal-dialog {
  max-width: 80vw;
}

.vision-modal .modal-content {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vision-modal .modal-body {
  padding: 0;
}

.vision-modal video {
  display: block;
  max-height: 82vh;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 25px 75px rgba(0, 0, 0, .34);
}

.vision-modal .btn-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 18px 0 10px;
  }

  .navbar-nav {
    gap: 4px;
  }

  .hero {
    padding: 76px 0 86px;
  }

  .hero-product-image,
  .platform-panel-image,
  .platform-ui {
    margin: 0 auto;
  }

  .cycle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cycle-card::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 62px;
  }

  .hero-title {
    font-size: 82px;
  }

  .hero-copy,
  .platform-section p {
    font-size: 14px;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .lesson-card b,
  .unit-card h3 {
    font-size: 25px;
  }

  .video-section,
  .cycle-section,
  .built-section,
  .platform-section,
  .sample-section,
  .questions-section {
    padding: 64px 0;
  }

  .video-section h2,
  .cycle-section h2,
  .questions-section h2,
  .built-section h2,
  .platform-section h2,
  .sample-section h2 {
    font-size: 48px;
  }

  .faq-accordion {
    margin-top: 34px;
  }

  .accordion-button {
    padding: 22px 0;
    font-size: 18px;
  }

  .accordion-button:not(.collapsed) {
    padding-bottom: 12px;
  }

  .accordion-button::after {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    margin-left: 16px;
  }

  .accordion-body {
    padding: 0 46px 26px 0;
    font-size: 16px;
  }

  .cycle-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .platform-ui {
    grid-template-columns: 1fr;
  }

  .platform-sidebar {
    min-height: 0;
  }

  .vision-modal,
  .vision-modal .modal-dialog {
    --bs-modal-width: 94vw;
    max-width: 94vw;
  }
}

@media (max-width: 430px) {
  .container-xl {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-title {
    font-size: 72px;
  }

  .cycle-note {
    align-items: flex-start;
    border-radius: 18px;
  }
}
