/* ============================================
   Letrea Landing — Pixel-Perfect Stylesheet
   ============================================ */

/* TIPOGRAPHY */
@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('assets/webfonts/AtkinsonHyperlegibleNext-Bold.woff2') format('woff2'),
        url('assets/webfonts/AtkinsonHyperlegibleNext-Bold.ttf') format('ttf'); 
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('assets/webfonts/AtkinsonHyperlegibleNext-Medium.woff2') format('woff2'),
        url('assets/webfonts/AtkinsonHyperlegibleNext-Medium.ttf') format('ttf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('assets/webfonts/AtkinsonHyperlegibleNext-Regular.woff2') format('woff2'),
        url('assets/webfonts/AtkinsonHyperlegibleNext-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Atkinson Hyperlegible Next Italic';
    src: url('assets/webfonts/AtkinsonHyperlegibleNext-LightItalic.woff2') format('woff2'),
        url('assets/webfonts/AtkinsonHyperlegibleNext-LightItalic.ttf') format('ttf');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* COLORS & FONT STYLES */
:root {
  --sand-20:      #F9F8F6;

  --yellow-100:   #FFDB5B;
  --yellow-50:    #FFEA9E;

  --blue-100:     #6B9CF7;
  --blue-50:      #8BB1F9;
  --blue-20:      #D8E5FD;

  --pink-100:     #F3B5E2;
  --pink-50:      #F5CCE8;
  --pink-20:      #F9E2F1;

  --orange-50:    #FCC3A6;
  --orange-20:    #FEDECD;

  --green-100:    #68CB90;
  --green-50:     #99DCB4;
  --green-20:     #D5F1E0;

  --black:        #171717;
  --white:        #FFFFFF;

  --typography:          'Atkinson Hyperlegible Next', sans-serif;
  --typography-italic:   'Atkinson Hyperlegible Next Italic', sans-serif;

  --font-weight-bold:    600;
  --font-weight-medium:  500;
  --font-weight-regular: 400;

}
/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--typography) !important;
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  font-weight: var(--font-weight-regular);
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
}
h1, .h1 {
  font-size: 54px;
}
h2, .h2 {
  font-size: 38px;
}
h3, .h3 {
  font-size: 36px;
}
h4, .h4 {
  font-size: 30px;
}
h5, .h5 {
  font-size: 24px;
  line-height: 1.3;
}
h6, .h6 {
  font-size: 22px;
}
.animate,
.hero-items {
  opacity:0;
    transform: translateY(50px);
    transition:
        opacity 1s ease,
        transform 1.2s ease;
}
.hero-items {
  transform: translateY(15px);
}
.animate.visible,
.hero-items.visible {
  opacity:1;
  transform: translateY(0);
}
/* Blinks */
.blink-title span:not(.blink) {
  position: relative;
  z-index: 2;
}
.blink-title .blink {
  position: relative;
  z-index: 1;
}
.blink-title .blink::after {
  content: '';
  position: absolute;
  display: inline-block;
  top: -38px;
  right: -60px;
  transform: scale(.9);
}
#coming_soon .blink-title .blink::after {
  transform: scale(.9) rotate(-12deg);
  top: -48px;
  right: -52px;
}
#coming_soon .blink-title .blink::after {
  animation: blink-bounce-soon 3s ease-in-out .6s infinite;
}
.blink-title .blink.visible::after {
  animation: blink-bounce 3s ease-in-out .6s infinite;
}
@keyframes blink-bounce {
  0% {
    transform: rotate(0) scale(.9);
  } 10% {
    transform: rotate(-12deg) scale(.95);
  } 30% {
    transform: rotate(12deg) scale(.95);
  } 40% {
    transform: rotate(0deg) scale(.9);
  } 100% {
    transform: rotate(0deg) scale(.9);
  }
}
@keyframes blink-bounce-soon {
  0% {
    transform: rotate(-12deg) scale(.9);
  } 10% {
    transform: rotate(-24deg) scale(.95);
  } 30% {
    transform: rotate(0deg) scale(.95);
  } 40% {
    transform: rotate(-12deg) scale(.9);
  } 100% {
    transform: rotate(-12deg) scale(.9);
  }
}
.blink-title .blink.green::after {
  content: url('assets/blink-green.svg');
}
.blink-title .blink.blue::after {
  content: url('assets/blink-blue.svg');
}
.blink-title .blink.yellow::after {
  content: url('assets/blink-yellow.svg');
}
.blink-title .blink.colors::after {
  content: url('assets/blink-colors.svg');
}
/* Container */
.container {
  width: 100%;
  /* max-width: 1160px; */
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 24px;
}
/* Buttons */
.btn {
  position: relative;
  display: block;
  width: fit-content;
}
.btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* gap: 8px; */
  font-weight: var(--font-weight-medium);
  font-size: 18px;
  line-height: 1;
  padding: 16px 24px;
  border-radius: 10px;
  transition:
    transform 0.18s ease,
    /* box-shadow 0.18s ease, */
    top 0.18s ease;
  position: relative;
  height: 54px;
  z-index: 2;
}
.btn::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  background-color: var(--black);
  /* z-index: -1; */
  border-radius: 10px;
  bottom: -3px;
  left: 0;
  transition: all 0.18s ease;
  width: 100%;
  height: 100%;
}
.btn:hover {
  top: 1px;
}
.btn:hover::after {
  transform: translateY(-1px);
}
.btn.icon.arrow span {
  padding: 10px 24px;
}
.btn.icon.arrow span::after {
  content: url(assets/arrow-icon.svg);
  position: relative;
  display: inline-block;
  scale: .8;
  top: 1.5px;
  margin-left: 2px;
  left: 4px;
}
.btn-primary span {
  background: var(--yellow-100);
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-primary.pink span {
  background: var(--pink-100);
}
.btn-primary.blue span {
  background: var(--blue-100);
}
.btn-primary.green span {
  background: var(--green-100);
}
.btn-sm {
  opacity: 1 !important;
}
.btn-sm span {
  padding: 6px 16px 4px 8px;
  font-size: 14px;
  border-radius: 8px;
  background: var(--pink-100);
  color: var(--black);
  border: 2px solid var(--black);
  height: initial;
}
.btn-sm span::before {
  content: url('assets/user-icon.svg');
  display: inline-block;
  position: relative;
  scale: .9;
  top: 1px;
}
/* Tags */
.tag {
  display: inline-block;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  color: var(--black);
  background: var(--yellow-100);
  margin-bottom: 20px;
}
.tag-green {
  background: var(--green-50);
}
.tag-pink {
  background: var(--pink-100);
}
.tag-blue {
  background: var(--blue-50);
}
.tag-white {
  background: var(--white);
}
/* ============================================
   Header & Navigation
   ============================================ */
.hide-text {
  text-indent: -9999999px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
}
.logo-mark {
  flex-shrink: 0;
  height: 52px;
}
.nav-list {
  display: flex;
  align-items: center;
}
.nav-list li:not(:last-child) {
  margin-right: 26px;
}
.nav-list a {
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: var(--black);
  transition: opacity 0.2s;
  opacity: .8;
}
.nav-list a:hover {
  opacity: 1;
}
.nav-cta a {
  color: var(--black) !important;
  font-weight: var(--font-weight-bold);
  height: initial;
}
/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  /* gap: 5px; */
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span:not(:last-child) {
  margin-bottom: 5px;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Sections Common
   ============================================ */
.section {
  padding: 90px 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 36px;
}
.section-title {
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 20px;
  color: var(--black);
  line-height: 1.4;
}

/* ============================================
   S01 - Hero
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 70px;
  overflow: visible;
  background: var(--sand-20);
  height: calc(100vh - 68px);
  max-height: 740px;
  min-height: fit-content;
  display: flex;
  align-items: center;
}
#coming_soon .hero {
  max-height: initial;
  min-height: calc(100vh - 68px);
}
.decorative-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 60px; */
  align-items: center;
  justify-content: space-between;
}
.hero-content {
  max-width: 480px;
  padding-right: 60px;
}
.hero-title {
  font-weight: var(--font-weight-bold);
  font-size: clamp(36px, 46px, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--black);
}
#coming_soon .hero-title {
  font-size: 54px;
}
.hero-title .accent {
  color: var(--blue-100);
}
.hero-lead {
  font-size: 18px;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 28px;
  max-width: 400px;
}
#coming_soon .hero-lead {
  margin-bottom: 0;
  font-size: 20px;
  margin-bottom: 12px;
}
#coming_soon .hero-lead:last-child {
  margin-bottom: 0;
}
.hero-video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.hero-video img,
.hero-video video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
}
.hero-bg {
  position: absolute;
  overflow: visible;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  max-width: 92vw;
}

/* ============================================
   S02 - For Who
   ============================================ */
.cards-list {
  display: flex;
  justify-content: space-between;
}
.card {
  background: var(--white);
  /* border-radius: 20px; */
  overflow: hidden;
  margin-right: 24px;
  width: calc(100% - 24px);
}
.card:last-child {
  margin-right: 0;
}
.card-image {
  width: 100%;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px 56px 14px 14px;
}
.card-body {
  padding-top: 20px;
}
.card-title {
  /* font-size: 18px; */
  font-weight: var(--font-weight-bold);
  margin-bottom: 4px;
  color: var(--black);
}
.card-text {
  font-size: 18px;
  color: var(--black);
  line-height: 1.4;
}
/* ============================================
   S03 - Adapted
   ============================================ */
/* Feature grid */
section.adaptated {
  padding-top: 30px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 20px; */
  max-width: 980px;
  margin-inline: auto;
  background-color: var(--green-20);
  max-width: initial;
  padding: 50px 50px 18px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.feature-card {
  margin-bottom: 32px;
  width: calc((100% / 2) - 20px);
}
.feature-title {
  /* font-size: 17px; */
  font-weight: var(--font-weight-bold);
  margin-bottom: 6px;
  color: var(--black);
}
.feature-text {
  font-size: 18px;
  color: var(--black);
  line-height: 1.4;
}

/* ============================================
   S04 - Interface
   ============================================ */
.interface {
  background-color: var(--sand-20);
}
.interface-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  justify-content: space-between;
}
.interface-content {
  max-width: 440px;
  padding-right: 70px;
}
.interface-content .section-title {
  text-align: left;
  margin-bottom: 12px;
}
.interface-content .section-subtitle {
  text-align: left;
  margin-bottom: 24px;
  font-size: 18px;
}
 .button-container {
  display: flex;
  align-items: center;
 }
 .btn.play-button {
  margin-right: 12px;
  display: none;
 }
.btn.play-button span::before {
  content: url('assets/Icon-play.svg');
  position: relative;
  display: inline-block;
  scale: .8;
  top: 1px;
  margin-right: 4px;
}
.btn.play-button span {
  padding: 16px 24px 16px 16px;
}
.interface-visual {
  border-radius: 16px;
  overflow: hidden;
}
.interface-visual img,
.interface-visual video {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ============================================
   S05 - Benefits
   ============================================ */
.cards-benefits {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
.benefit-card {
  text-align: left;
  width: calc((100% / 4) - 22px);
  margin-bottom: 32px;
}
.benefit-title {
  font-weight: var(--font-weight-bold);
  color: var(--black);
  margin-bottom: 8px;
}
.benefit-text {
  font-size: 18px;
  color: var(--black);
  line-height: 1.4;
  margin-top: 16px;
}

/* ============================================
   S06 - CTA - Try
   ============================================ */
.try-block {
  display: flex;
  align-items: center;
  padding: 20px 0 32px;
}
.try-block .container > div {
  background-color: var(--sand-20);
  padding: 70px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.try-block .container > div:hover .banner-bg-blink {
  animation: blink-try-bounce 1s ease;
}
@keyframes blink-try-bounce {
  0% {
    transform: rotate(0);
  } 30% {
    transform: rotate(-12deg);
  } 70% {
    transform: rotate(12deg);
  } 100% {
    transform: rotate(0deg);
  }
}
.banner-bg-blink {
  position: absolute;
  pointer-events: none;
  right: -10%;
  top: -40%;
}
.try-block .section-subtitle {
  width: 78%;
}
.try-content {
  position: relative;
  z-index: 1;
}
.try-box {
  max-width: 520px;
}
.try-box .section-title {
  margin-bottom: 10px;
}
.try-box .section-subtitle {
  margin-bottom: 24px;
  font-size: 18px;
}

/* ============================================
   S07 - Exercises
   ============================================ */
.exercises-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 40px;
}
.ex-card {
  border-radius: 14px;
  padding: 60px 24px 28px;
  /* margin-right: 20px; */
  width: calc((100% / 4) - 20px);
  position: relative;
  cursor: pointer;
}
.ex-card.orange {
  background-color: var(--orange-20);
}
.ex-card.green {
  background-color: var(--green-20);
}
.ex-card.blue {
  background-color: var(--blue-20);
}
.ex-card.pink {
  background-color: var(--pink-20);
}
.ex-card:hover .ex-icon {
  animation: bounce .6s linear;
}
@keyframes bounce {
  0% {
    transform: rotate(0) scale(.9);
  }30% {
    transform: rotate(12deg) scale(.9) ;
  }
  70% {
    transform: rotate(-12deg) scale(.9);
  } 100% {
    transform: rotate(0deg) scale(.9);
  }
}
 .ex-card.orange .ex-icon,
 .ex-card.blue .ex-icon {
  right: 12px;
 }
.ex-icon {
  top: -40px;
  right: 0;
  position: absolute;
  transform: scale(.9);
}
.ex-title {
  /* font-size: 17px; */
  font-weight: var(--font-weight-bold);
  color: var(--black);
  margin-bottom: 6px;
}
.ex-text {
  font-size: 18px;
  color: var(--black);
  line-height: 1.4;
}

/* ============================================
   S08 - How it works
   ============================================ */
.how-it-works {
  background-color: var(--sand-20);
  padding-bottom: 30px;
}
.steps-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 32px;
}
.step-card {
  position: relative;
  width: calc((100% / 3) - 24px);
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--pink-50);
  color: var(--black);
  font-weight: var(--font-weight-bold);
  margin-bottom: 16px;
}
.step-title {
  font-weight: var(--font-weight-bold);
  color: var(--black);
  margin-bottom: 6px;
}
.step-text {
  font-size: 18px;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 24px;
}
.step-image {
  overflow: hidden;
}
.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px 56px 14px 14px;
}

/* ============================================
   S09- Subscriptions
   ============================================ */
.pricing-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: start;
  padding-top: 12px;
}
.pricing-card {
  border-radius: 20px;
  padding: 42px 28px 32px;
  position: relative;
  text-align: left;
  transition:
    top 0.25s ease, transform 1.2s ease, opacity 1s ease;
  width: calc((100% / 3) - 22px);
  position: relative;
  height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  top: 0;
}
.pricing-card:hover {
  top: -6px;
}
.pricing-card.green {
  background-color: var(--green-20);
}
.pricing-card.blue {
  background-color: var(--blue-20);
}
.pricing-card.pink {
  background-color: var(--pink-20);
}
.pricing-card div.card-bottom {
  padding-top: 24px;
}
.pricing-card div.card-bottom p {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.pricing-card div.card-bottom a,
.pricing-card div.card-bottom a span {
  width: 100%;
  text-align: center;
}
.pricing-tag {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  padding: 5px 12px;
  border-radius: 6px;
  color: var(--black);
  margin-bottom: 18px;
  position: absolute;
  top: -12px;
}
.blue .pricing-tag {
  background: var(--blue-50);
}
.pink .pricing-tag {
  background: var(--pink-50);
}
.pricing-name {
  /* font-size: 17px; */
  font-weight: var(--font-weight-bold);
  color: var(--black);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}
.price-value {
  font-size: 46px;
  font-weight: var(--font-weight-bold);
  color: var(--black);
  letter-spacing: -0.02em;
}
.price-period {
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  color: var(--black);
  margin-left: 4px;
}
.price-del {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 16px;
  opacity: .5;
  text-decoration: line-through;
  font-family: var(--typography-italic) !important;
}
.pricing-save {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  color: var(--black);
  background: var(--pink-50);
  padding: 4px 12px;
  border-radius: 6px;
  margin-top: -6px;
  margin-bottom: 14px;
}
#suscripciones .container > p {
  text-align: center;
  font-size: 18px;
  color: var(--black);
  opacity: .5;
  margin-top: 46px;
}
/* ============================================
   S10 - CTA - Contact
   ============================================ */
.contact-band {
  background: var(--yellow-50);
  padding: 70px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.contact-box-light {
  text-align: center;
  max-width: 650px;
  margin-inline: auto;
}
.contact-box-light > p {
  font-size: 18px;
}
.contact-box-light .section-subtitle > a {
  font-weight: var(--font-weight-bold);
}
.contact-box-light > a {
  margin: auto;
  margin-top: 16px;
}
/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--white);
  padding: 22px 0;
  font-size: 14px;
  color: var(--black);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer-left a,
.footer-left span {
  margin-right: 24px;
}
.footer-right a {
  margin-right: 6px;
}
.footer-right a img {
  width: 80%;
}
.footer-left a:last-child,
.footer-right a:last-child {
  margin-right: 0;
}
.footer-left a {
  color: var(--black);
  transition: opacity 0.2s ease;
  opacity: .8;
}
.footer-left a:hover {
  opacity: 1;
}
.footer-right {
  display: flex;
  align-items: center;
}
.footer-right a {
  color: var(--black);
  transition:
    opacity 0.2s;
  display: inline-flex;
  opacity: .8;
}
.footer-right a:last-child {
  margin-right: 0;
}  
.footer-right a:hover {
  opacity: 1;
}
.footer-copy {
  font-family: var(--typography-italic);
}

/* ============================================
   Legal Text
   ============================================ */
#legal_text {
  min-height: calc(100vh - 68px);
  padding: 70px 0;
}
#legal_text ul {
  list-style: initial;
  padding-left: 32px;
}
#legal_text h1,
#legal_text h2,
#legal_text h3,
#legal_text h4,
#legal_text h5,
#legal_text h6 {
  margin-bottom: 8px;
  margin-top: 32px;
}
#legal_text h2 + h3 {
  margin-top: 16px;
}
#legal_text h1 {
  margin-top: 0;
  line-height: 1.3;
}
#legal_text p {
  margin-bottom: 8px;
}
#legal_text ul {
  margin-top: 8px;
  margin-bottom: 8px;
}
#legal_text p + ul {
  margin-top: 0;
}
#legal_text ul + p {
  margin-top: 8px;
} 
#legal_text a {
  text-decoration: underline;
  transition: all .2s ease;
}
#legal_text a:hover {
  opacity: .7;
}
#legal_text table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}
#legal_text th, #legal_text td {
    padding: 12px;
    text-align: left;
}
/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1800px) {
  .hero-bg {
    right: -18vw;
    width: 110%;
    max-width: initial;
  }
}
@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .benefit-card {
    width: calc((100% / 2) - 22px);
  }
  .exercises {
    padding-bottom: 54px;
  }
  .ex-card {
    width: calc((100% / 2) - 16px);
  }
  .ex-card {
    margin-bottom: 36px;
  }
}
@media (max-width: 1024px) {
  h1, .h1 {
  font-size: 46px;
  }
  #coming_soon .hero-title {
    font-size: 46px;
  }
  h2, .h2 {
    font-size: 30px;
  }
  h3, .h3 {
    font-size: 26px;
  }
  h4, .h4 {
    font-size: 24px;
  }
  h5, .h5 {
    font-size: 22px;
  }
  h6, .h6 {
    font-size: 20px;
  }
  #legal_text h1 {
    font-size: 40px;
    line-height: 1.2;
  }
  .container,
  .nav-list {
    max-width: 720px;
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--black);
    padding: 20px 0 36px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    margin: auto;
    padding-inline: 24px;
  }
  .nav-list a {
    font-size: 18px;
  }
  .nav-list li:not(:last-child) {
    margin-bottom: 16px;
  }
  .nav-cta {
    margin-top: 8px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 600px;
    margin-inline: auto;
    padding-right: initial;
    padding-bottom: 56px;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero .btn {
    margin: auto;
  }
  .hero-bg {
    top: 13vw;
    transform: rotate(75deg);
    right: -34vw;
    width: 170vw;
  }
  .feature-grid {
    padding: 36px 36px 8px;
  }
  .interface-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .interface-content {
    max-width: 560px;
    margin-inline: auto;
    padding-right: 0;
    padding-bottom: 40px;
  }
  .button-container {
    justify-content: center;
  }
  .interface-content .section-title,
  .interface-content .section-subtitle {
    text-align: center;
  }
  .try-block {
    padding: 0 0 20px;
  }
  .banner-bg-blink {
    right: -42%;
    top: -60%;
    width: 90%;
  }
  .step-card {
    width: 100%; 
  }
  .cards-list {
    flex-direction: column;
  }
  .cards-list .card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 46px;
  }
  .cards-list .card:last-child {
    margin-bottom: 0;
  }
  .pricing-card {
    width: 100%;
    margin-bottom: 46px;
    padding-top: 52px;
    /* min-height: 355px; */
  }
  .pricing-card:last-child {
    margin-bottom: 0;
  }
  .pricing-card.green {
    padding-top: 32px;
  }
  .contact-box-light {
    max-width: 620px;
  }
  .footer-left a, .footer-left span {
    margin-right: 18px;
  }
  .footer-left {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-left > div {
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  h1, .h1 {
    font-size: 36px;
  }
  .hero-bg {
    right: -43vw;
    width: 190vw;
    top: 8%;
  }
  .blink-title .blink::after {
    content: '';
    display: none;
  }
  .section {
    padding: 70px 0;
  }
  .section-header {
    margin-bottom: 36px;
  }
  .hero-title {
    font-size: 36px;
  }
  section.adapted {
    padding-top: 40px;
  }
  .feature-card {
    width: 100%;
}
  .interface-inner {
    grid-template-columns: 1fr;
  }
  .button-container {
    flex-direction: column;
  }
  .button-container .btn.play-button {
    margin-bottom: 12px;
  }
  .ex-card {
    width: 100%;
  }
  .cards-benefits {
    margin-inline: auto;
    text-align: center;
  }
  .benefit-card {
    width: 100%;
  }
  .ex-card {
    min-height: 220px;
    align-content: flex-end;
    padding: 70px 24px 28px;
    margin-bottom: 56px;
  }
  .ex-card:last-child {
    margin-bottom: 0;
  }
  .ex-text {
    font-size: 18px;
  }
  .pricing-grid {
    margin-inline: auto;
  }
  .how-it-works .section-subtitle br,
  .exercises .section-subtitle br {
    display: none;
  }
  .try-block {
    min-height: auto;
    padding: 0 0 20px;
  }
  .try-block .container > div {
    padding: 160px 50px 50px;
  }
  .banner-bg-blink {
    right: -27%;
    top: -44%;
    width: 83%;
    transform: rotate(-15deg);
  }
  @keyframes blink-try-bounce {
    0% {
      transform: rotate(-15deg);
    } 30% {
      transform: rotate(-27deg);
    } 70% {
      transform: rotate(-3deg);
    } 100% {
      transform: rotate(-15deg);
    }
  }
  .step-card:last-child {
    margin-bottom: 0;
  }
  .site-footer {
    padding: 32px 0 22px;
    font-size: 16px;
  }
  .footer-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .footer-left {
    justify-content: center;
    align-items: center;
    padding-bottom: 12px;
    flex-direction: column-reverse;
  }
  .footer-left > div {
    margin: 16px auto 12px;
  }
}

@media (max-width: 480px) {
  h1, .h1 {
    font-size: 40px;
  }
  h2, .h2 {
    font-size: 30px;
  }
  h3, .h3 {
    font-size: 26px;
  }
  h4, .h4 {
    font-size: 24px;
  }
  h5, .h5 {
    font-size: 22px;
  }
  h6, .h6 {
    font-size: 20px;
  }
  #legal_text {
    padding: 40px 0;
  } 
  #legal_text h1 {
    font-size: 36px;
  }
  #coming_soon .hero-title {
    font-size: 40px;
  }
  .blink-title br {
    display: none;
  }
  .container {
    padding-inline: 16px;
  }
  .hero {
    padding: 50px 0 50px;
  }
  .feature-grid {
    padding: 28px 24px 8px;
  }
  .feature-card {
    margin-bottom: 24px;
  }
  .try-box .section-subtitle {
    font-size: 18px;
    width: 100%;
  }
  .ex-card {
    min-height: 260px;
  }
  .try-block .container > div {
    padding: 160px 32px 32px;
  }
  .banner-bg-blink {
    right: -34%;
    top: -34%;
    width: 95%;
  }
  .footer-left > div {
    margin: 24px auto 12px;
  }
  .footer-left a {
    display: block;
    margin-right: 0;
    margin-bottom: 8px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow-100);
  outline-offset: 3px;
  border-radius: 6px;
}
