:root {
  --ink: #111319;
  --muted: #64707d;
  --line: #e8edf2;
  --paper: #ffffff;
  --soft: #f5f7f1;
  --night: #071018;
  --blue: #1487ff;
  --blue-dark: #0759c7;
  --green: #c8ff35;
  --green-dark: #4b7d00;
  --coral: #ff6b4a;
  --violet: #7537ff;
  --shadow: 0 24px 80px rgba(10, 22, 36, .16);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 18px 20px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 16, 24, .68);
  backdrop-filter: blur(18px);
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.site-header.legal-header {
  color: var(--ink);
  border-color: rgba(7, 16, 24, .08);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.footer-cta h2,
.feature-card h3,
.steps h3,
.screen-card strong,
.proof-grid strong,
.price strong,
.testimonial blockquote,
.integrations p {
  font-family: "Sora", "Manrope", Arial, sans-serif;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  color: currentColor;
  opacity: .88;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  background: var(--green);
  color: #101510;
  box-shadow: 0 12px 30px rgba(200, 255, 53, .28);
}

.nav-cta {
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.nav-cta::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 48%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  opacity: 0;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px) scale(1.03);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 38px rgba(20, 135, 255, .32);
}

.nav-cta:hover::after,
.nav-cta:focus-visible::after {
  opacity: 1;
  animation: button-shine .7s ease;
}

.nav-cta:focus-visible {
  outline: 3px solid rgba(20, 135, 255, .28);
  outline-offset: 3px;
}

@keyframes button-shine {
  from {
    left: -70%;
  }

  to {
    left: 125%;
  }
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 34px rgba(20, 135, 255, .28);
}

.button.full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: currentColor;
}

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

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  padding: 132px 0 68px;
  color: #fff;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 10, 15, .9) 0%, rgba(5, 10, 15, .68) 42%, rgba(5, 10, 15, .28) 100%),
    linear-gradient(180deg, rgba(5, 10, 15, .08) 0%, rgba(5, 10, 15, .9) 100%);
}

.hero-bg {
  z-index: -2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: end;
  gap: 48px;
}

.hero-copy {
  padding: 52px 0 24px;
}

.eyebrow,
.section-kicker,
.price-label {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 8.4vw, 118px);
  line-height: .84;
  font-weight: 900;
}

.hero-subtitle {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.35;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 54px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #0a0d12;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.store-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .42);
  background: #000;
  box-shadow: 0 24px 52px rgba(0, 0, 0, .46);
}

.store-link img {
  height: 38px;
  width: auto;
}

.microcopy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 700;
}

.hero-device {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.phone-stack {
  width: min(520px, 100%);
  filter: drop-shadow(0 32px 60px rgba(0, 0, 0, .42));
}

.floating-panel {
  position: absolute;
  width: 210px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(10, 16, 24, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
}

.floating-panel span,
.proof-grid span,
.screen-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.floating-panel span {
  color: rgba(255, 255, 255, .62);
}

.floating-panel strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 16px;
}

.has-reveal [data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-reveal [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(2),
.screen-card:nth-child(2) {
  --reveal-delay: 90ms;
}

.feature-card:nth-child(3),
.screen-card:nth-child(3) {
  --reveal-delay: 180ms;
}

.feature-card:nth-child(4) {
  --reveal-delay: 270ms;
}

.panel-top {
  top: 98px;
  right: 6px;
}

.panel-bottom {
  left: 4px;
  bottom: 112px;
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.proof-grid div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
}

.section {
  padding: 110px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 54px;
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .98;
  letter-spacing: 0;
}

.section-lead,
.pricing-copy p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}

.intro-section {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.feature-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  margin-bottom: 64px;
  border-radius: 999px;
  color: #fff;
  background: var(--night);
  font-size: 12px;
  font-weight: 900;
}

.feature-card h3,
.steps h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.1;
}

.feature-card p,
.steps p,
.faq-list p,
.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}

.accent-blue .feature-number {
  background: var(--blue);
}

.accent-green .feature-number {
  color: var(--ink);
  background: var(--green);
}

.accent-coral .feature-number {
  background: var(--coral);
}

.app-showcase {
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.showcase-head {
  max-width: 820px;
  margin-bottom: 58px;
  text-align: center;
}

.showcase-head .section-kicker {
  color: var(--green);
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.screen-card {
  margin: 0;
}

.screen-card.offset {
  margin-top: 64px;
}

.screen-card img {
  width: 100%;
  border-radius: 36px;
  filter: drop-shadow(0 26px 54px rgba(0, 0, 0, .46));
}

.screen-card figcaption {
  margin-top: 22px;
  padding: 0 12px;
}

.screen-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.screen-card span {
  color: rgba(255, 255, 255, .66);
}

.how-section {
  background: var(--soft);
}

.how-section .section-kicker,
.intro-section .section-kicker,
.pricing-section .section-kicker,
.faq-section .section-kicker {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding: 4px 8px;
  color: var(--ink);
  background: linear-gradient(to bottom, transparent 42%, var(--green) 42%, var(--green) 92%, transparent 92%);
  border-radius: 3px;
}

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

.steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.integrations {
  padding: 42px 0;
  background: #fff;
}

.integrations-inner {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 540px);
  gap: 28px;
  align-items: center;
}

.integrations p {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 900;
}

.integrations img {
  width: 100%;
  justify-self: end;
}

.pricing-section {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 458px);
  gap: clamp(56px, 8vw, 108px);
  align-items: stretch;
}

.pricing-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  gap: 30px;
  padding: 18px 0;
}

.pricing-copy h2 {
  max-width: 680px;
}

.pricing-copy > p:not(.section-kicker) {
  max-width: 720px;
}

.pricing-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  max-width: 760px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-benefits li {
  position: relative;
  min-height: 28px;
  padding-left: 36px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.pricing-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  background: url("img/circle-check.svg") center / contain no-repeat;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-self: center;
  min-height: 0;
  padding: 42px 40px 36px;
  border: 1px solid #dfe4ea;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 70px rgba(10, 22, 36, .1);
}

.price-label {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}

.price small {
  color: var(--muted);
  font-weight: 800;
}

.price strong {
  font-size: clamp(48px, 5vw, 58px);
  line-height: .95;
  letter-spacing: 0;
}

.coupon-callout {
  display: grid;
  gap: 7px;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid rgba(75, 125, 0, .16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(200, 255, 53, .3), rgba(20, 135, 255, .08));
  color: var(--ink);
}

.coupon-callout span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.coupon-callout strong {
  width: fit-content;
  padding: 6px 10px;
  border: 1px dashed rgba(7, 16, 24, .26);
  border-radius: 6px;
  background: rgba(255, 255, 255, .7);
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: .04em;
}

.coupon-callout p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.price-footer {
  margin: 16px 0 0;
  padding-top: 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.price-stores {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-stores .store-link {
  width: 100%;
  min-width: 0;
}

.testimonial {
  padding: 98px 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
}

.testimonial-inner {
  max-width: 980px;
  text-align: center;
}

.community-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  min-height: 40px;
  margin: 0 0 30px;
  padding: 5px 16px 5px 8px;
  border-radius: 999px;
  background: #e9eaec;
  color: var(--ink);
  font-weight: 800;
  transition: background .18s ease, transform .18s ease;
}

.community-pill:hover {
  background: #dde1e5;
  transform: translateY(-1px);
}

.mini-avatars {
  display: flex;
  align-items: center;
}

.mini-avatars img {
  width: 28px;
  height: 28px;
  border: 2px solid #e9eaec;
  border-radius: 50%;
  object-fit: cover;
}

.mini-avatars img + img {
  margin-left: -9px;
}

.testimonial-track {
  position: relative;
  min-height: 360px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .26s ease, transform .26s ease;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.testimonial-slide blockquote {
  max-width: 850px;
  margin: 0;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 700;
}

.athlete {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.athlete img,
.avatar-initials {
  width: 78px;
  height: 78px;
  border-radius: 50%;
}

.athlete img {
  object-fit: cover;
}

.avatar-initials {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #071018;
  font-weight: 900;
}

.avatar-initials.coral {
  background: linear-gradient(135deg, var(--coral), var(--violet));
  color: #fff;
}

.athlete strong {
  font-size: 20px;
  font-weight: 800;
}

.carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.carousel-controls > button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background .18s ease, transform .18s ease;
}

.carousel-controls > button:hover {
  background: var(--soft);
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-controls .carousel-dot {
  width: 9px;
  height: 9px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8ced4;
}

.carousel-controls .carousel-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--ink);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 370px) 1fr;
  gap: 60px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item.open {
  border-color: rgba(20, 135, 255, .26);
  box-shadow: 0 18px 45px rgba(15, 34, 52, .08);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  cursor: pointer;
  border: 0;
  padding: 22px 24px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-family: inherit;
  font-size: 18px;
  font-weight: 900;
}

.faq-question::before {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
  transition: transform .24s ease;
}

.faq-item.open .faq-question::before {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .36s cubic-bezier(.2, .8, .2, 1), opacity .24s ease;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-answer p {
  padding: 0 24px 24px 46px;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 96px 0 34px;
  color: #fff;
  background: var(--night);
  isolation: isolate;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("img/hero-runner.jpg") center / cover no-repeat;
  filter: grayscale(.15);
  transform: scale(1.02);
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 24, .92) 0%, rgba(7, 16, 24, .72) 54%, rgba(7, 16, 24, .9) 100%),
    linear-gradient(180deg, rgba(7, 16, 24, .48) 0%, rgba(7, 16, 24, .9) 100%);
}

.footer > .container {
  position: relative;
  z-index: 2;
}

.footer-cta {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.footer-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .94;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(150px, .6fr));
  gap: 42px;
  margin-top: 88px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.footer-about p {
  max-width: 300px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.footer-column a {
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  font-weight: 800;
  transition: color .18s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-legal {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  font-weight: 700;
}

.legal-page {
  background: #fff;
}

.legal-main {
  padding-top: 104px;
}

.legal-hero {
  padding: 76px 0 44px;
  background:
    linear-gradient(135deg, rgba(200, 255, 53, .18), rgba(20, 135, 255, .1)),
    var(--soft);
}

.legal-hero .section-kicker {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding: 4px 8px;
  color: var(--ink);
  background: linear-gradient(to bottom, transparent 42%, var(--green) 42%, var(--green) 92%, transparent 92%);
  border-radius: 3px;
}

.legal-hero h1,
.legal-document h2 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .98;
}

.legal-updated {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.legal-document {
  max-width: 900px;
  padding-top: 58px;
  padding-bottom: 104px;
}

.legal-document section {
  padding: 0 0 30px;
  border-bottom: 1px solid var(--line);
}

.legal-document section + section {
  margin-top: 30px;
}

.legal-document h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.legal-document p {
  margin: 0;
}

.legal-document p + p {
  margin-top: 14px;
}

.legal-document ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.legal-document a {
  color: var(--blue-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.compact-footer {
  padding-top: 54px;
}

.compact-footer .footer-main {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 36px rgba(7, 16, 24, .24), 0 0 0 8px rgba(37, 211, 102, .14);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  background: #1fc15b;
  box-shadow: 0 22px 44px rgba(7, 16, 24, .28), 0 0 0 10px rgba(37, 211, 102, .16);
}

.has-cookie-notice .whatsapp-float {
  bottom: 108px;
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.whatsapp-float svg path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linejoin: round;
}

.cookie-notice {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 18px 16px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(7, 16, 24, .94);
  color: #fff;
  box-shadow: 0 20px 54px rgba(7, 16, 24, .28);
  backdrop-filter: blur(18px);
  transition: opacity .2s ease, transform .2s ease;
}

.cookie-notice.is-hidden {
  opacity: 0;
  transform: translateY(10px);
}

.cookie-notice p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.cookie-notice a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cookie-notice button {
  flex: 0 0 auto;
  min-height: 42px;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--green);
  color: #101510;
  font-family: inherit;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.cookie-notice button:hover,
.cookie-notice button:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 14px 28px rgba(255, 255, 255, .16);
}

.cookie-notice button:focus-visible {
  outline: 3px solid rgba(200, 255, 53, .3);
  outline-offset: 3px;
}

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

  .nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-header.open .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 20px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
  }

  .site-header.open .nav a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-grid,
  .split,
  .pricing-grid,
  .faq-grid,
  .footer-cta,
  .integrations-inner {
    grid-template-columns: 1fr;
  }

  .hero-device {
    min-height: auto;
  }

  .proof-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screens-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .screen-card.offset {
    margin-top: 0;
  }

  .pricing-copy {
    min-height: auto;
    gap: 22px;
    padding: 0;
  }

  .pricing-benefits {
    max-width: none;
  }

  .price-card {
    min-height: auto;
    max-width: 520px;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    inset: 12px 14px auto;
  }

  .brand img,
  .footer-brand img {
    width: 38px;
    height: 38px;
  }

  .hero-copy {
    padding-top: 30px;
  }

  .hero-device {
    max-height: 150px;
    overflow: hidden;
    place-items: start center;
  }

  .phone-stack {
    width: min(330px, 104%);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-link {
    width: 100%;
  }

  .floating-panel {
    display: none;
  }

  .proof-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .feature-number {
    margin-bottom: 42px;
  }

  .screens-grid {
    gap: 42px;
  }

  .steps article {
    grid-template-columns: 40px 1fr;
    padding: 18px;
  }

  .steps span {
    width: 40px;
    height: 40px;
  }

  .price strong {
    font-size: 42px;
  }

  .price-card {
    padding: 32px 22px 28px;
  }

  .price-stores {
    grid-template-columns: 1fr;
  }

  .pricing-benefits {
    grid-template-columns: 1fr;
  }

  .pricing-benefits li {
    font-size: 16px;
  }

  .coupon-callout {
    padding: 16px;
  }

  .testimonial {
    padding: 76px 0;
  }

  .testimonial-track {
    min-height: 430px;
  }

  .athlete {
    flex-direction: column;
    gap: 10px;
  }

  .footer {
    padding: 78px 0 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 64px;
  }

  .footer-cta h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .has-cookie-notice .whatsapp-float {
    bottom: 174px;
  }

  .cookie-notice {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: calc(100% - 28px);
    padding: 16px;
  }

  .cookie-notice button {
    width: 100%;
  }
}

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

  .has-reveal [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .store-link,
  .nav-cta,
  .community-pill,
  .carousel-controls > button,
  .testimonial-slide,
  .faq-item,
  .faq-answer,
  .faq-question::before,
  .whatsapp-float,
  .cookie-notice,
  .cookie-notice button {
    transition: none;
  }

  .nav-cta:hover::after,
  .nav-cta:focus-visible::after {
    animation: none;
  }
}
