:root {
  --bg: #f7fcfb;
  --surface: #ffffff;
  --surface-alt: #f9fbfb;
  --text: #1f1f1f;
  --muted: #6b7280;
  --muted-soft: #9ca3af;
  --mint: #14b8a6;
  --mint-strong: #0f766e;
  --coral: #ff6b6b;
  --line: rgba(15, 23, 42, 0.08);
  --shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.16);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  font-synthesis: none;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.12), transparent 28%),
    linear-gradient(180deg, #f0fdfa 0%, #f9fefc 24%, #ffffff 100%);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page {
  overflow: clip;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 32px), 864px);
}

.section {
  padding: 72px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.03), rgba(255, 255, 255, 0));
}

.section__head {
  text-align: center;
  margin-bottom: 36px;
}

.section__head h2,
.cta h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.25rem);
  line-height: 1.1;
  font-weight: 600;
}

.section__head p,
.cta p {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero {
  padding: 48px 0 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 24px;
  width: fit-content;
}

.brand__mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--mint), #2dd4bf);
  color: #fff;
  box-shadow: 0 10px 18px rgba(20, 184, 166, 0.24);
}

.brand__mark svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.brand__name {
  font-family: "Outfit", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600 !important;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
}

.hero__content {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero__copy {
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: 36px;
  line-height: 45px;
  font-weight: 600;
}

.hero h1 span {
  display: block;
  margin-top: 0;
  background: linear-gradient(90deg, var(--mint), #2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 20px auto 0;
  max-width: 359px;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.hero__actions .button {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 24px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 10px 22px rgba(255, 107, 107, 0.28);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
}

.button--mint {
  color: #fff;
  background: var(--mint);
  box-shadow: 0 10px 22px rgba(20, 184, 166, 0.24);
}

.button--full {
  width: 100%;
}

.button__play {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.hero__meta {
  margin-top: 20px;
  color: var(--muted-soft);
  font-size: 0.9rem;
}

.hero__meta::before {
  content: "+50.000";
  margin-right: 4px;
  color: var(--mint);
  font-weight: 700;
}

.hero__pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.pill,
.choice-pill,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.43;
}

.tag {
  justify-content: flex-start;
  min-height: 52px;
  padding: 16px;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 20px;
}

.tag__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #14b8a6;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
}

.pill {
  justify-content: flex-start;
  font-size: 14px;
  line-height: 20px;
  white-space: normal;
  text-align: left;
  width: 100%;
}

.pill__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #14b8a6;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
}

.phone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.phone__screen {
  width: min(100%, 320px);
  border: 6px solid #101828;
  border-radius: 40px;
  overflow: hidden;
  background: #fafafa;
  box-shadow: var(--shadow);
}

.phone__status,
.phone__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid #f3f4f6;
}

.phone__status {
  min-height: 40px;
  padding: 0 24px 1px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

.phone__signal {
  width: 28px;
  height: 12px;
  position: relative;
}

.phone__signal::before,
.phone__signal::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.phone__signal::before {
  inset: 0 8px 0 0;
  border: 1.5px solid var(--muted-soft);
}

.phone__signal::after {
  width: 8px;
  height: 8px;
  right: 0;
  top: 2px;
  background: var(--muted-soft);
}

.phone__header {
  display: grid;
  gap: 8px;
  justify-content: start;
  min-height: 66.5px;
  padding: 12px 16px 1px;
}

.phone__header small,
.phone__summary,
.phone__card small,
.phone__card span,
.workout-item small,
.phone__footer-row small {
  color: var(--muted-soft);
}

.phone__header strong,
.phone__card strong,
.workout-item strong {
  display: block;
}

.phone__header small {
  font-size: 9px;
  line-height: 13.5px;
  font-weight: 400;
}

.phone__header strong {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.phone__body {
  padding: 16px;
}

.phone__summary {
  margin: 0 0 16px;
  max-width: 255px;
  font-size: 10px !important;
  line-height: 16.25px !important;
  font-weight: 400;
  letter-spacing: 0;
}

.phone__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.phone__badges span,
.reality-chip {
  min-height: 27.5px;
  padding: 6px 13px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f3f4f6;
  color: var(--muted);
  font-size: 9px;
  line-height: 13.5px;
  font-weight: 500;
}

.phone__card,
.reality-card,
.step-card,
.price-card,
.feature-card,
.testimonial,
.info-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.phone__card {
  min-height: 370.367px;
  padding: 10px 12px 0;
  border-radius: 24px;
}

.phone__card-top {
  display: flex;
  gap: 10px;
  margin-bottom: 9px;
}

.phone__step,
.step-card__index,
.workout-item > span,
.testimonial__avatar,
.info-card__icon,
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone__step {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--mint);
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}

.phone__step--muted {
  background: rgba(20, 184, 166, 0.12);
  color: var(--mint);
}

.phone__focus {
  display: block;
  margin: 0 0 10px;
  color: #14b8a6 !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 8px !important;
  line-height: 12.8px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
}

.phone__list {
  margin: 0 -12px;
  padding: 1px 12px 0;
  border-top: 1px solid #f3f4f6;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.05), transparent);
  border-radius: 0 0 24px 24px;
}

.workout-item {
  display: flex;
  gap: 10px;
  min-height: 47.195px;
  padding: 9px;
  margin-top: 6px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
}

.workout-item > span {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--mint);
  font-size: 8px;
  line-height: 12px;
  font-weight: 700;
}

.phone__card-top small,
.phone__card-top span,
.phone__footer-row small {
  font-size: 9px;
  line-height: 13.5px;
  font-weight: 400;
}

.phone__card-top strong {
  margin: 2px 0;
  font-size: 11px;
  line-height: 17.6px;
  font-weight: 700;
}

.workout-item strong {
  font-size: 9px;
  line-height: 14.4px;
  font-weight: 600;
}

.workout-item small {
  margin-top: 2px;
  font-size: 8px;
  line-height: 12.8px;
  font-weight: 400;
}

.phone__footer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  margin-top: 8px;
  padding: 11px 13px 1px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.grid {
  display: grid;
  gap: 18px;
}

.info-card,
.feature-card,
.testimonial {
  padding: 24px;
}

.info-card__icon,
.feature-card__icon,
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

.info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  font-size: 24px;
  padding: 12px;
}

.info-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.feature-card__icon {
  padding: 12px;
}

.feature-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.info-card__icon,
.feature-card__icon--mint,
.testimonial__avatar {
  background: rgba(20, 184, 166, 0.12);
  color: var(--mint-strong);
}

.feature-card__icon--coral {
  background: rgba(255, 107, 107, 0.12);
  color: var(--coral);
}

.info-card h3,
.feature-card h3,
.step-card h3,
.reality-card h3,
.testimonial p,
.price-card h3 {
  margin: 0;
}

.info-card h3,
.feature-card h3,
.step-card h3,
.reality-card h3,
.price-card h3,
.footer__nav h3 {
  font-size: 18px;
  line-height: 25.2px;
  font-weight: 600;
  color: var(--text);
}

.price-card h3 {
  text-align: center;
}

.info-card p,
.feature-card p,
.step-card p,
.testimonial p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 20px;
  font-size: 14px;
  font-weight: 400;
}

.steps {
  display: grid;
  gap: 16px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
}

.step-card__index {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--mint), #2dd4bf);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.step-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
}

.step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: rgba(20, 184, 166, 0.1);
  flex-shrink: 0;
}

.step-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.step-card__title h3 {
  margin: 0;
}

.tags,
.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.reality-card {
  margin-top: 28px;
  padding: 24px;
}

.reality-card--exact {
  background: #fff;
}

.reality-card__row--column {
  margin-bottom: 24px;
}

.reality-card__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.reality-card small {
  color: var(--muted-soft);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.reality-grid {
  display: grid;
  gap: 12px;
}

.split-grid {
  display: grid;
  gap: 16px;
}

.split-pill {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 16px 20px;
  border-radius: 24px;
  background: #f8f8f8;
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.split-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--mint);
  flex-shrink: 0;
}

.exercise-meta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.exercise-meta p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.exercise-meta__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--mint);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.mini-pill::before {
  content: "✓";
  margin-right: 4px;
}

.reality-item {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-alt);
  border: 1px solid rgba(20, 184, 166, 0.08);
}

.reality-item strong,
.reality-item span {
  display: block;
}

.reality-item strong {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.reality-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.choice-grid {
  max-width: 960px;
  margin: 0 auto;
}

.choice-pill {
  justify-content: flex-start;
  min-height: 56px;
  padding: 16px;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-align: left;
}

.choice-pill__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #14b8a6;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial__author strong {
  font-size: 18px;
  line-height: 25.6px;
  font-weight: 600;
}

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  margin: 0 auto 28px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 999px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.billing-toggle__button {
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.billing-toggle__button.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.08);
}

.pricing-grid {
  display: grid;
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.price-card--featured {
  border-color: rgba(255, 107, 107, 0.28);
  box-shadow: 0 18px 36px rgba(255, 107, 107, 0.12);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.price-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  min-height: 36px;
  font-weight: 700;
}

.price-value {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.price-suffix,
.price-card__note {
  color: var(--muted-soft);
}

.price-card__note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}

.price-card__list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  flex: 1 1 auto;
}

.price-card__list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 20px;
  font-size: 14px;
  font-weight: 400;
}

.price-card > .button {
  margin-top: auto;
}

.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint);
  font-weight: 700;
}

.cta {
  padding: 72px 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--mint), #2dd4bf);
}

.cta h2 {
  color: var(--text);
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
}

.cta .button {
  margin-top: 28px;
}

.footer {
  background: #1f1f1f;
  color: #fff;
  padding: 48px 0 28px;
}

.brand--footer {
  margin: 0 0 16px;
}

.footer__copy,
.footer__nav a,
.footer__bottom {
  color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
  display: grid;
  gap: 32px;
}

.footer__nav {
  display: grid;
  gap: 12px;
}

.footer__nav h3 {
  margin: 0 0 4px;
  color: #fff;
}

.footer__nav a,
.footer__copy,
.footer__bottom {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero__actions .button {
    width: auto;
  }

  .hero__pills {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .container {
    width: min(calc(100% - 32px), 1120px);
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .brand {
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: 60px;
    line-height: 75px;
  }

  .hero p {
    max-width: 684px;
    font-size: 20px;
    line-height: 28px;
  }

  .hero__actions {
    gap: 16px;
    margin-top: 32px;
  }

  .hero__actions .button--primary {
    width: 281px;
  }

  .hero__actions .button--ghost {
    width: 252px;
  }

  .hero__meta {
    margin-top: 20px;
  }

  .hero__pills {
    margin-top: 76px;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .pill {
    min-height: 36px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    width: auto;
  }

  .phone {
    margin-top: 36px;
  }

  .phone__screen {
    width: 320px;
  }

  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }

  .reality-card__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
