/* ============================================================
   Improov — Landing v2 (modernizada)
   Tema oscuro #0F0F10 · acento teal #458898
   Display: Syne (heros) + Glancyr · Body: TT Hoves
   ============================================================ */
@import url('assets/tokens.css');

:root {
  --page-bg: #0f0f10;
  --surface: #1a1a1c;
  --surface-2: #202023;
  --line: #2a2a2e;
  --line-2: #34343a;
  --teal: #458898;
  --teal-hi: #52a0b3;
  --teal-deep: #2f5f6a;
  --ink: #ffffff;
  --mut: #b4b4ba;
  --mut-2: #7c7c84;
  --gutter: clamp(20px, 5vw, 80px);
  --maxw: 1200px;
  --font-hero: 'Syne', 'Glancyr', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
.tnum {
  font-feature-settings: 'tnum' 1;
}

/* ---------- layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  width: 100%;
}
.section {
  padding-block: clamp(72px, 10vw, 140px);
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-hi);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--teal);
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--teal);
  --fg: #fff;
  --bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 10px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform var(--t-fast) var(--ease-out),
    background var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out),
    border-color var(--t-fast) var(--ease-out);
}
.btn:hover {
  background: var(--teal-hi);
  box-shadow: 0 8px 24px rgba(69, 136, 152, 0.35);
}
.btn:active {
  transform: translateY(1px);
}
.btn--ghost {
  --bg: transparent;
  --fg: #fff;
  --bd: #3a3a42;
}
.btn--ghost:hover {
  --bg: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  border-color: #55555f;
}
.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 9px;
}
.btn--lg {
  padding: 16px 30px;
  font-size: 16px;
}
.btn--block {
  width: 100%;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background var(--t-med) var(--ease-out),
    border-color var(--t-med),
    backdrop-filter var(--t-med);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15, 15, 16, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: auto;
  width: 140px;
  mix-blend-mode: screen;
}
.nav__links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav__links a {
  font-size: 14.5px;
  color: var(--mut);
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  padding-block: 4px;
  transition: color var(--t-fast);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1.5px;
  width: 0;
  background: var(--teal);
  transition: width var(--t-med) var(--ease-out);
}
.nav__links a:hover {
  color: #fff;
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav__burger {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__burger .ico--close {
  display: none;
}
.nav.open .nav__burger .ico--open {
  display: none;
}
.nav.open .nav__burger .ico--close {
  display: block;
}
/* mobile dropdown panel */
.nav__panel {
  display: none;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 6px var(--gutter) 24px;
  background: rgba(15, 15, 16, 0.975);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  max-height: calc(100dvh - 62px);
  overflow-y: auto;
}
.nav.open .nav__panel {
  display: flex;
}
.nav__panel a:not(.btn) {
  font-size: 17px;
  color: var(--mut);
  font-weight: 500;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
}
.nav__panel a:not(.btn):active {
  color: #fff;
}
.nav__panel-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: clamp(120px, 16vh, 180px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 95% at 50% 4%,
      rgba(15, 15, 16, 0.2) 0%,
      rgba(15, 15, 16, 0.55) 50%,
      rgba(15, 15, 16, 0.99) 100%
    ),
    linear-gradient(
      180deg,
      rgba(15, 15, 16, 0.3) 0%,
      rgba(15, 15, 16, 0.15) 26%,
      rgba(15, 15, 16, 0.99) 100%
    );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  padding-inline: var(--gutter);
}
.hero h1 {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.hero h1 .hl {
  color: var(--teal-hi);
}
.hero__sub {
  margin: 26px auto 0;
  max-width: 560px;
  color: var(--mut);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.hero__mock {
  position: relative;
  z-index: 2;
  width: min(1040px, 92vw);
  margin: clamp(40px, 6vw, 80px) auto -8%;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
}
.hero__mock img {
  width: 100%;
}

.scrollhint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mut-2);
}
.scrollhint .mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--mut-2);
  border-radius: 12px;
  position: relative;
}
.scrollhint .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: var(--mut-2);
  transform: translateX(-50%);
  animation: wheel 1.6s var(--ease-in-out) infinite;
}
@keyframes wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
}

/* ============================================================
   SECTION HEADERS (Glancyr — medio peso, no super bold)
   ============================================================ */
.shead {
  max-width: 720px;
}
.shead--center {
  margin-inline: auto;
  text-align: center;
}
.shead h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-top: 18px;
  text-wrap: balance;
}
.shead p {
  margin-top: 18px;
  color: var(--mut);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
}

/* big Syne title */
.bigtitle {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* ============================================================
   SOFTWARE — BENTO
   ============================================================ */
.sw__head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.sw__head .bigtitle {
  margin: 0 auto;
}
.sw {
  padding-bottom: 0;
}
.sw__head p {
  margin: 20px auto 0;
  color: var(--mut);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.6;
  max-width: 720px;
}

/* scroll-driven sequence */
.swseq {
  position: relative;
  height: 520vh;
  margin-top: clamp(24px, 3vw, 40px);
}
.swseq__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swseq__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.5vh, 28px);
}
.swseq__frame {
  position: relative;
  width: 100%;
  height: min(74vh, 720px);
}
.swseq__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.7s var(--ease-out);
  pointer-events: none;
}
.swseq__img.is-active {
  opacity: 1;
  transform: none;
}
.swseq__dots {
  display: flex;
  gap: 9px;
}
.swseq__dots span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--line-2);
  transition:
    width 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}
.swseq__dots span.is-active {
  background: var(--teal);
  width: 28px;
}

.bento {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) minmax(0, 1.34fr);
  gap: 14px;
  margin-top: clamp(40px, 5vw, 64px);
  min-height: 580px;
}
/* sidebar rail */
.bento__rail {
  background: #0b0b0c;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bento__rail-logo {
  display: flex;
  justify-content: center;
  padding: 6px 0 16px;
}
.bento__rail-logo img {
  width: 26px;
  height: 26px;
  opacity: 0.95;
}
.bento__rail-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bento__rail span,
.bento__rail-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 11px 4px;
  border-radius: 12px;
  font-size: 10.5px;
  color: var(--mut-2);
  text-align: center;
  line-height: 1.1;
  transition:
    color var(--t-fast),
    background var(--t-fast);
}
.bento__rail span img,
.bento__rail-foot img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}
.bento__rail span.is-active {
  background: var(--teal);
  color: #fff;
}
.bento__rail span.is-active img {
  opacity: 1;
}
.bento__rail-foot {
  margin-top: auto;
}

/* cards */
.bento__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bento-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform var(--t-med) var(--ease-out),
    border-color var(--t-med);
}
.bento-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
}
.bento-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 27px);
  letter-spacing: -0.01em;
  line-height: 1.12;
}
.bento-card p {
  margin-top: 12px;
  color: var(--mut);
  font-size: 14px;
  line-height: 1.55;
}
.bento-card--lg {
  flex: 1.45;
}
.bento-card--sm {
  flex: 0.7;
  justify-content: center;
}
.bento-card--teal {
  flex: 1.45;
  background: var(--teal);
  border-color: var(--teal);
}
.bento-card--teal:hover {
  border-color: var(--teal-hi);
}
.bento-card--teal h3 {
  color: #fff;
}
.bento-card--teal p {
  color: rgba(255, 255, 255, 0.86);
}
/* right column — mockups CSS */
.bento-card--cal {
  flex: 1.2;
  padding: 20px;
}
.calm {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 14px;
}
.calm__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calm__new {
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
}
.calm__month {
  color: var(--mut);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.calm__week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  flex: 1;
}
.calm__day {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.calm__day .dh {
  font-size: 10px;
  color: var(--mut-2);
  text-align: center;
  margin-bottom: 2px;
  font-weight: 600;
}
.calm .chip {
  height: 18px;
  border-radius: 5px;
  display: block;
}
.calm .chip.h2 {
  height: 30px;
}
.calm .chip.h3 {
  height: 42px;
}
.calm .chip.t1 {
  background: rgba(69, 136, 152, 0.85);
}
.calm .chip.t2 {
  background: rgba(69, 136, 152, 0.45);
}
.calm .chip.t3 {
  background: rgba(255, 255, 255, 0.1);
}

.bento-card--rutina {
  flex: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
}
.rtm {
  background: #0b0b0c;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rtm__btn {
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  align-self: flex-start;
}
.rtm__row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: var(--mut);
}
.rtm__row b {
  font-weight: 600;
  color: #fff;
  font-size: 12px;
}
.rtm__row i {
  flex: 1;
  height: 6px;
  border-radius: 99px;
  background: var(--line-2);
}
.rtm__dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(69, 136, 152, 0.5);
  flex: 0 0 auto;
}
.bento-card__rt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.bento-card__rt h3 {
  font-size: clamp(20px, 1.8vw, 26px);
}

/* ============================================================
   APP / PHONES
   ============================================================ */
.app {
  background: linear-gradient(
    180deg,
    var(--page-bg),
    #0c1416 60%,
    var(--page-bg)
  );
}
.phones {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  padding-inline: var(--gutter);
  margin-inline: calc(-1 * var(--gutter));
  scrollbar-width: none;
}
.phones::-webkit-scrollbar {
  display: none;
}
.phone {
  flex: 0 0 auto;
  height: min(480px, 60vh);
  scroll-snap-align: center;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
  transition: transform var(--t-med) var(--ease-out);
}
.phone img {
  height: 100%;
  width: auto;
}
.phone:hover {
  transform: translateY(-6px);
}

.app-feats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.app-feat {
  background: var(--surface);
  padding: 32px 28px;
  transition: background var(--t-fast);
}
.app-feat:hover {
  background: var(--surface-2);
}
.app-feat .n {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--teal-hi);
  font-weight: 600;
}
.app-feat h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  margin-top: 14px;
  letter-spacing: -0.01em;
}
.app-feat p {
  margin-top: 10px;
  color: var(--mut);
  font-size: 14.5px;
  line-height: 1.55;
}

.clock {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
.clock__txt {
  padding: clamp(28px, 4vw, 56px);
  align-self: center;
}
.clock__txt h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.clock__txt p {
  margin-top: 14px;
  color: var(--mut);
  font-size: 16px;
  line-height: 1.6;
  max-width: 420px;
}
.clock__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.clock__tags span {
  padding: 7px 14px;
  border: 1px solid var(--line-2);
  border-radius: 99px;
  font-size: 12.5px;
  color: var(--mut);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.clock__media {
  background: #0c1214;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-left: 1px solid var(--line);
}
.clock__media img {
  height: 380px;
  width: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
}

/* ============================================================
   CARRERA — banner full-bleed, texto izquierda, phone derecha
   ============================================================ */
.carrera {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-block: clamp(24px, 3vw, 40px);
}
.carrera__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.carrera__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.carrera__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 15, 16, 0.92) 0%,
    rgba(15, 15, 16, 0.66) 42%,
    rgba(15, 15, 16, 0.28) 100%
  );
}
.carrera .wrap {
  position: relative;
  z-index: 2;
}
.carrera__grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.carrera__txt {
  max-width: 520px;
}
.carrera__txt h2 {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.carrera__txt p {
  margin-top: 20px;
  color: var(--mut);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  max-width: 440px;
}
.stores {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.stores a {
  transition:
    transform var(--t-fast),
    opacity var(--t-fast);
}
.stores a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.stores img {
  height: 50px;
  width: auto;
}
.carrera__media {
  display: flex;
  justify-content: center;
}
.carrera__media img {
  width: 140%;
  max-width: 780px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.6));
}

/* ============================================================
   PRICING
   ============================================================ */
.planes {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.markzone {
  position: relative;
  overflow: hidden;
}
.markzone__iso {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 0;
  opacity: 0.08;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.markzone__iso img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
}
#resenas {
  position: relative;
  z-index: 1;
}
.planes .wrap {
  position: relative;
  z-index: 1;
}
.toggle {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--surface);
  margin-top: 28px;
}
.toggle button {
  border: 0;
  background: transparent;
  color: var(--mut);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 99px;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.toggle button.active {
  background: var(--teal);
  color: #fff;
}
.toggle .save {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.16);
  padding: 2px 7px;
  border-radius: 99px;
}
.toggle button.active .save {
  background: rgba(0, 0, 0, 0.18);
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  align-items: stretch;
}
.plan {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform var(--t-med) var(--ease-out),
    border-color var(--t-med);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}
.plan--feat {
  border-color: var(--teal);
  background: linear-gradient(
    180deg,
    rgba(69, 136, 152, 0.12),
    var(--surface) 42%
  );
}
.plan--ent {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    var(--surface) 42%
  );
}

/* angled corner tab */
.plan__badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  background: var(--teal);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 18px 8px 26px;
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%);
}
.plan__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 7px;
  row-gap: 2px;
  margin-top: 14px;
  min-height: 58px;
}
.plan__price .amt {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.plan__price .amt--text {
  font-size: 30px;
}
.plan__price .per {
  color: var(--mut-2);
  font-size: 15px;
  white-space: nowrap;
}
.plan__desc {
  margin-top: 10px;
  color: var(--mut);
  font-size: 14px;
  line-height: 1.5;
  min-height: 42px;
}

/* Pro slider */
.plan__slider {
  margin-top: 18px;
}
.plan__track {
  position: relative;
  height: 18px;
  display: flex;
  align-items: center;
}
.plan__track input[type='range'] {
  position: relative;
  z-index: 2;
}
.plan__ticks {
  position: absolute;
  left: 9px;
  right: 9px;
  top: 50%;
  height: 0;
  z-index: 1;
  pointer-events: none;
}
.plan__ticks span {
  position: absolute;
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line-2);
  transform: translate(-50%, -50%);
  transition:
    border-color var(--t-fast),
    background var(--t-fast);
}
.plan__ticks span:nth-child(1) {
  left: 0%;
}
.plan__ticks span:nth-child(2) {
  left: 33.333%;
}
.plan__ticks span:nth-child(3) {
  left: 66.666%;
}
.plan__ticks span:nth-child(4) {
  left: 100%;
}
.plan__ticks span.done {
  border-color: var(--teal);
}
.plan__ticks span.here {
  background: var(--teal);
  border-color: var(--teal);
  width: 11px;
  height: 11px;
}
.plan__slider input[type='range'] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 99px;
  background: var(--line-2);
  outline: none;
  cursor: pointer;
}
.plan__slider input[type='range']::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    var(--teal) var(--fill, 0%),
    var(--line-2) var(--fill, 0%)
  );
}
.plan__slider input[type='range']::-moz-range-track {
  height: 5px;
  border-radius: 99px;
  background: var(--line-2);
}
.plan__slider input[type='range']::-moz-range-progress {
  height: 5px;
  border-radius: 99px;
  background: var(--teal);
}
.plan__slider input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -6.5px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--teal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform var(--t-fast);
}
.plan__slider input[type='range']::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--teal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.plan__slider input[type='range']:active::-webkit-slider-thumb {
  transform: scale(1.15);
}
.plan__athletes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 7px 14px;
  border: 1px solid var(--line-2);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mut);
}
.plan__athletes svg {
  color: var(--teal-hi);
}

.plan__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan__list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--mut);
  line-height: 1.4;
}
.plan__list li svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--teal-hi);
}
.plan .btn {
  margin-top: auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.tcard {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t-med) var(--ease-out),
    border-color var(--t-med);
}
.tcard:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}
.tcard__stars {
  display: flex;
  gap: 3px;
  color: var(--teal-hi);
}
.tcard__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-top: 18px;
}
.tcard__quote {
  margin-top: 12px;
  color: var(--mut);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.tcard__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.tcard__av {
  width: 42px;
  height: 42px;
  border-radius: 99px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}
.tcard__name {
  font-weight: 600;
  font-size: 14.5px;
}
.tcard__role {
  font-size: 13px;
  color: var(--mut-2);
  margin-top: 2px;
}

/* ============================================================
   FOOTER (CTA integrado, estilo referencia)
   ============================================================ */
.footer {
  background: #252525;
  border-top: 1px solid var(--line);
  padding-block: clamp(32px, 4vw, 48px) 28px;
}
.footer__logo img {
  height: auto;
  width: 200px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}
.footer__cta {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.footer__cta .hl {
  color: var(--teal-hi);
}
.footer__cols {
  display: flex;
  gap: clamp(32px, 4vw, 64px);
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer__col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col li,
.footer__col a {
  color: var(--mut);
  font-size: 14.5px;
  transition: color var(--t-fast);
}
.footer__col a:hover {
  color: #fff;
}
.footer__col--social {
  margin-top: clamp(40px, 6vw, 90px);
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mut);
  transition: all var(--t-fast);
}
.footer__social a:hover {
  border-color: var(--teal);
  color: #fff;
  background: var(--surface);
}
.footer__bottom {
  margin-top: clamp(40px, 5vw, 64px);
  color: var(--mut-2);
  font-size: 13px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scrollhint .mouse::after {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links,
  .nav__cta .btn {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav.open {
    background: rgba(15, 15, 16, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .app-feats {
    grid-template-columns: 1fr 1fr;
  }
  .clock {
    grid-template-columns: 1fr;
  }
  .clock__media {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .tcards {
    grid-template-columns: 1fr;
  }
  .carrera__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .carrera__txt {
    max-width: none;
    margin-inline: auto;
  }
  .carrera__txt p {
    margin-inline: auto;
  }
  .stores {
    justify-content: center;
  }
  .carrera__media {
    order: 2;
  }
  .carrera__media img {
    max-width: 300px;
  }
  .swseq {
    height: auto;
  }
  .swseq__sticky {
    position: static;
    height: auto;
    padding-block: 8px;
  }
  .swseq__inner {
    gap: 16px;
  }
  .swseq__frame {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    height: 60vw;
    max-height: 420px;
  }
  .swseq__img {
    display: block;
    position: relative;
    inset: auto;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: none;
    scroll-snap-align: start;
    object-fit: contain;
  }
  .swseq__img {
    position: relative;
    inset: auto;
    height: auto;
    opacity: 1;
    transform: none;
  }
  .swseq__dots {
    display: none;
  }
  .bento {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .bento__rail {
    display: none;
  }
  .bento-card--rutina {
    grid-template-columns: 1fr;
  }
  .bento-card--cal {
    min-height: 200px;
  }
  .bento-card h3 {
    font-size: clamp(18px, 4vw, 24px);
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__cols {
    justify-content: flex-start;
  }
  .footer__col--social {
    margin-top: 0;
  }
}
@media (max-width: 560px) {
  .app-feats {
    grid-template-columns: 1fr;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .hero {
    padding-top: 120px;
  }
  .hero h1 {
    font-size: clamp(33px, 9vw, 48px);
  }
  .hero__mock {
    margin-bottom: -4%;
  }
  .bigtitle {
    font-size: clamp(30px, 8.5vw, 44px);
  }
  .carrera__bg::after {
    background: linear-gradient(
      180deg,
      rgba(15, 15, 16, 0.6),
      rgba(15, 15, 16, 0.92)
    );
  }
  .footer__cta {
    font-size: clamp(30px, 9vw, 44px);
  }
  .footer__social a {
    width: 42px;
    height: 42px;
  }
  .section {
    padding-block: clamp(56px, 12vw, 140px);
  }
  .swseq__dots {
    display: none;
  }
  .bento {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .bento__rail {
    display: none;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bento__col {
    gap: 12px;
  }
  .bento-card--rutina {
    grid-template-columns: 1fr;
  }
  .bento-card--cal {
    min-height: 280px;
  }
}
