:root {
  --accent: #e4fd02;
  --orange: #ef7d00;
  --black: #000;
  --white: #fff;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-futura: "Inter", "Futura", "Trebuchet MS", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
html, body { background: #000; color: var(--white); font-family: var(--font-sans); }

img { display: block; max-width: none; }

.page {
  position: relative;
  width: 100%;
  /* max-width: 1920px; */
  margin: 0 auto;
  background: #000;
  overflow-x: hidden;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
}

/* Reusable horizontal content container */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* ===== FIXED NAV (outside .page canvas, viewport-responsive) ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 32px clamp(24px, 8vw, 150px) 18px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
}
.nav-inner {
  max-width: 1336px;
  margin: 0 auto;
}
.nav-line {
  height: 1px;
  background: var(--accent);
  margin-bottom: 18px;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo { width: 235.485px; height: 20.51px; }
.nav-right { display: flex; align-items: center; gap: 40px; }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 510;
  font-size: 16px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
}
.nav-links a { color: var(--white); text-decoration: none; }
.nav-links a:hover { color: var(--accent); text-decoration: underline; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 40px;
  background: var(--accent);
  border-radius: 5px;
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nav-cta:hover { background: var(--black); color: var(--accent); }

/* ===== HERO ===== */
.site-header {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  padding-bottom: 11px;
  background: #000 url('assets/hero-bg.webp') center bottom / 147% auto no-repeat;
  z-index: 1;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 284px;
  background: linear-gradient(to bottom, #000 0%, #000 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-stack {
  position: relative;
  z-index: 2;
  padding-top: 473px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-mark {
  width: 382.588px;
  height: 292.238px;
}
.hero-divider {
  margin-top: 33.5px;
  width: 543px;
  height: 6px;
}
.hero-tagline {
  margin-top: 19px;
  color: var(--accent);
  font-weight: 510;
  font-size: 30px;
  letter-spacing: 2.8px;
  text-align: center;
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.61);
  white-space: nowrap;
  line-height: 1;
}
.hero-logo {
  display: grid;
  grid-template-areas: "stack";
  margin-top: -7px;
  width: 1169.208px;
  height: 222.445px;
}
.hero-logo > * {
  grid-area: stack;
  justify-self: start;
  align-self: start;
}
.hero-logo-bg {
  width: 1169.208px;
  height: 216.401px;
}
.hero-logo-inner {
  width: 992.219px;
  height: 222.445px;
  margin-left: 28.6px;
}
.hero-cta {
  margin: 71.45px 0 0 420.6px;
  width: 300px;
  height: 70px;
  background: var(--accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.hero-cta:hover { background: var(--black); color: var(--accent); }

/* ===== INTRO ===== */
.intro-section {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  padding-bottom: 188px;
  z-index: 1;
}
.intro-photo {
  position: absolute;
  right: 180px;
  top: 50px;
  width: 400px;
  height: 674px;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
.intro-inner {
  position: relative;
  z-index: 2;
  padding-top: 105px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
}
.intro-paragraph {
  width: 346px;
  flex-shrink: 0;
  padding-top: 117px;
  color: var(--white);
  font-weight: 510;
  font-size: 20px;
  line-height: 40px;
  text-align: right;
}
.intro-paragraph p + p { margin-top: 40px; }
.intro-heading-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.intro-mark {
  width: 74.933px;
  height: 45.111px;
  margin-left: -53px;
  margin-bottom: 72px;
}
.intro-heading {
  margin: 0;
  color: var(--accent);
  font-weight: 860;
  font-size: 41px;
  line-height: 52px;
  letter-spacing: 2.46px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== TRACK / TEILE / VERGLEICHE SLIDER ===== */
.track-section {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  background: linear-gradient(to bottom, var(--accent) 0 701px, transparent 701px);
  z-index: 5;
}
.track-slick { width: 100%; height: 759px; }
.track-slick.slick-slider { user-select: none; }
.track-slick .slick-list {
  width: 100%;
  height: 759px;
  overflow: hidden;
  cursor: grab;
}
.track-slick .slick-list:active { cursor: grabbing; }
.track-slick .slick-track {
  display: flex;
  align-items: flex-start;
}
.track-slide {
  display: flex !important;
  align-items: flex-start;
  gap: 60px;
  height: 759px;
  margin-right: 60px;
  box-sizing: content-box;
}
.track-slide .phone {
  position: relative;
  width: 335px;
  height: 691px;
  flex-shrink: 0;
  margin-top: 68px;
  user-select: none;
  -webkit-user-drag: none;
}
.track-slide .track-text { margin-top: 136px; }
.track-slide .phone .mockup {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}
.track-slide .phone .screen {
  position: absolute;
  left: 13px;
  top: 12px;
  width: 309px;
  height: 667px;
  border-radius: 39px;
  object-fit: cover;
  box-shadow: 20px -15px 6px 0 rgba(0, 0, 0, 0.16);
  pointer-events: none;
}
.track-text {
  flex-shrink: 0;
  width: 360px;
  color: var(--black);
  text-align: center;
}
.track-text h3 {
  font-weight: 900;
  font-size: 40px;
  line-height: 51px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.track-text p {
  margin-top: 18px;
  font-weight: 700;
  font-size: 26px;
  line-height: 38px;
}
.track-text p + p { margin-top: 12px; }

/* ===== SO FUNKTIONIERT'S ===== */
.how-section {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  padding: 263px 0 356px;
  z-index: 5;
}
.how-title {
  font-weight: 900;
  font-size: 84px;
  line-height: 1.05;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.how-title-line {
  display: flex;
  align-items: center;
  gap: 20px;
}
.how-accent {
  width: 110px;
  height: 66px;
  flex-shrink: 0;
}
.how-divider {
  height: 2px;
  background: var(--accent);
  margin-top: 32px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 56px 0 0 0;
}
.how-step {
  text-align: center;
  color: var(--white);
}
.how-step img {
  display: block;
  height: 80px;
  width: 50px;
  margin: 0 auto 24px;
}
.how-step:nth-child(1) img { width: 47px; }
.how-step:nth-child(2) img { width: 47px; }
.how-step:nth-child(3) img { width: 50px; }
.how-step:nth-child(4) img { width: 55px; }
.how-step:nth-child(5) img { width: 66px; }
.how-step p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

/* ===== MASTER YOUR BODY ===== */
.cats-section {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  padding-bottom: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}
.cats-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.cats-grid {
  display: grid;
  grid-template-columns: 209px 209px;
  grid-template-rows: 209px 209px 209px;
  column-gap: 36px;
  row-gap: 36px;
  grid-template-areas:
    "logo pulse"
    "iron perform"
    "rx   warrior";
  flex-shrink: 0;
}
.cat-pulse { grid-area: pulse; }
.cat-iron { grid-area: iron; }
.cat-perform { grid-area: perform; }
.cat-rx { grid-area: rx; }
.cat-warrior { grid-area: warrior; }
.body-logo-large {
  grid-area: logo;
  align-self: start;
  justify-self: start;
  margin-top: 16.48px;
  margin-left: 1.81px;
  width: 205.557px;
  height: 184.474px;
}
.cat-card {
  width: 209px;
  height: 209px;
  border-radius: 30px;
  border: 3px solid var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cat-card.filled { background: var(--accent); border-color: transparent; color: var(--black); }
.cat-card .title {
  font-weight: 860;
  font-size: 28px;
  line-height: 37px;
  letter-spacing: 1.68px;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
}
.cat-card.filled .title { color: var(--black); }
.cat-card .title.small { font-size: 28px; line-height: 29px; }
.cat-card .icon { flex-shrink: 0; }

.body-copy {
  flex-shrink: 0;
  padding-top: 117px;
}
.body-logo {
  display: block;
  width: 60.76px;
  height: 58.596px;
}
.body-title {
  margin-top: 16.95px;
  font-weight: 860;
  font-size: 40px;
  line-height: 51px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  width: 442px;
  white-space: nowrap;
}
.body-row {
  margin-top: 61.5px;
  margin-left: 10px;
  width: 602px;
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
  line-height: 35px;
  white-space: nowrap;
}
.body-benefits {
  margin-top: 42px;
  margin-left: 20.37px;
  color: var(--white);
  font-weight: 510;
  font-size: 22px;
  line-height: 40px;
  width: 560px;
}
.body-benefits .item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 0;
  line-height: 40px;
}
.body-benefits .item img { width: 15.659px; height: 15.659px; flex-shrink: 0; }
.body-row.row2 { margin-top: 38px; }

.cats-cta {
  margin: 149px auto 0;
  width: 300px;
  height: 70px;
  background: var(--accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 6;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.cats-cta:hover { background: var(--black); color: var(--accent); }

/* ===== HERO-MODUS & LIGENSTRUKTUR ===== */
.hero-modus-section {
  width: 100%;
  flex-shrink: 0;
  padding-bottom: 103px;
  overflow: hidden;
  background: #000;
  display: grid;
  grid-template-areas: "stack";
  z-index: 6;
}
.hero-modus-bg {
  grid-area: stack;
  position: relative;
  overflow: hidden;
  background: var(--accent);
  z-index: 3;
}
.hero-modus-bg .photo {
  position: absolute;
  left: -24px;
  top: -260px;
  width: 120%;
  height: 180%;
  filter: grayscale(1) contrast(1.1);
  mix-blend-mode: multiply;
  opacity: 1;
  z-index: 1;
}
.hero-modus-bg .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-modus-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}
.hm-inner {
  grid-area: stack;
  padding-top: 178px;
  padding-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  z-index: 6;
}
.hm-left {
  display: flex;
  flex-direction: column;
}
.hm-title {
  margin: 0;
  font-weight: 860;
  font-size: 91px;
  line-height: 115px;
  letter-spacing: 5.46px;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.hm-title-line {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hm-accent {
  width: 126.281px;
  height: 76.025px;
  flex-shrink: 0;
}
.hm-body {
  margin-top: 43px;
  width: 820px;
  color: var(--white);
  font-weight: 510;
  font-size: 22px;
  line-height: 40px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.hm-sub {
  margin-top: 60px;
  color: var(--accent);
  font-weight: 900;
  font-size: 41px;
  line-height: 52px;
  letter-spacing: 2.46px;
  text-align: left;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.hm-levels {
  flex-shrink: 0;
  width: 143px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.hm-level {
  width: 143px;
  text-align: center;
  color: var(--accent);
  font-weight: 860;
  font-size: 41px;
  line-height: 52px;
  letter-spacing: 2.46px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hm-arrow {
  width: 57.425px;
  height: 54.058px;
}

/* ===== GYMLEAGUE ===== */
.gymleague-section {
  width: 100%;
  flex-shrink: 0;
  padding-bottom: 121px;
  display: grid;
  grid-template-areas: "stack";
  z-index: 5;
}
.gym-league {
  grid-area: stack;
  margin-left: 74px;
  margin-right: 514px;
  overflow: hidden;
  z-index: 5;
}
.gym-league img { width: 100%; height: 100%; object-fit: cover; }
.gl-content {
  grid-area: stack;
  padding-top: 55.26px;
  padding-bottom: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 6;
}
.gl-diamond {
  width: 74.933px;
  height: 45.111px;
}
.gl-title {
  margin-top: 35.63px;
  color: var(--white);
  font-weight: 860;
  font-size: 41px;
  line-height: 52px;
  letter-spacing: 2.46px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.gl-sub {
  margin-top: 9px;
  color: var(--accent);
  font-weight: 510;
  font-size: 35px;
  letter-spacing: 2.8px;
  text-align: center;
  white-space: nowrap;
}
.gl-body {
  margin-top: 62.26px;
  width: 698px;
  color: var(--white);
  text-align: center;
  font-weight: 510;
  font-size: 22px;
  line-height: 40px;
}
.gl-split {
  margin-top: 38.26px;
  display: flex;
  align-items: flex-start;
  gap: 33.38px;
}
.gl-head {
  width: 280px;
  flex-shrink: 0;
  color: var(--accent);
  font-weight: 860;
  font-size: 41px;
  line-height: 52px;
  letter-spacing: 2.46px;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}
.gl-items {
  width: 340px;
  flex-shrink: 0;
}
.gl-item {
  width: 340px;
  color: var(--white);
  font-weight: 500;
  font-size: 19px;
  line-height: 40px;
}
.gl-item.t1 {
  position: relative;
  padding-bottom: 28.64px;
}
.gl-item.t1 .line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 329.5px;
  height: 3px;
}
.gl-item.t2 {
  margin-top: 20.64px;
}
.gl-cta {
  margin-top: 62.21px;
  width: 300px;
  height: 70px;
  background: var(--accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.gl-cta:hover { background: var(--black); color: var(--accent); }

/* ===== APP DOWNLOAD + STUDIOS/PARTNERS FORM ===== */
.app-form-section {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  padding: 100px 0 130px;
  background: var(--accent);
  z-index: 5;
}
.app-form-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  column-gap: 60px;
}
.app-col {
  justify-self: center;
  width: 338px;
  color: var(--black);
  text-align: center;
}
.app-col .app-logo {
  width: 265.774px;
  height: 203.01px;
  margin: 0 auto;
}
.app-col .app-divider {
  width: 280px;
  height: 3px;
  margin: 16px auto 0;
}
.app-col h3 {
  margin-top: 20px;
  font-weight: 860;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  white-space: nowrap;
}
.app-col h3 p { margin-bottom: 0; }
.store-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.store-btn {
  display: block;
  line-height: 0;
}
.store-btn img {
  width: 230px;
  max-width: 100%;
  height: auto;
}
.form-split-line {
  width: 3px;
  height: 620px;
  background: #000;
}
.form-col {
  justify-self: center;
  width: 541px;
}
.form-col h2 {
  color: var(--black);
  font-weight: 860;
  font-size: 40px;
  line-height: 41px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 27px;
}
.form-col input, .form-col textarea {
  width: 541px;
  height: 58px;
  background: rgba(0, 0, 0, 0);
  border: 1px solid var(--black);
  border-radius: 20px;
  padding: 15px 25px;
  font-weight: 510;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
  font-family: inherit;
  display: block;
  margin-top: 15px;
}
.form-col input::placeholder, .form-col textarea::placeholder { color: var(--black); }
.form-col textarea { height: 166px; resize: none; }
.form-col .submit {
  margin-top: 20px;
  margin-left: 121px;
  width: 300px;
  height: 70px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.form-col .submit:hover { background: var(--white); color: var(--black); }

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 23px 40px;
  box-sizing: border-box;
  z-index: 5;
}
.footer-diamond {
  grid-column: 2;
  width: 55.81px;
  height: 33.599px;
  justify-self: center;
}
.footer-right {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 35px;
}
.footer-links {
  font-family: var(--font-futura);
  font-size: 20px;
  letter-spacing: 0.2px;
  color: var(--white);
  text-decoration: underline;
}
.footer-logo {
  width: 120.355px;
  height: 34.55px;
  margin-left: 20px;
}
.footer-version {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

/* ===== Desktop / tablet: scale 1920 canvas ===== */
@media (min-width: 768px) and (max-width: 1920px) {
  body { overflow-x: hidden; }
  .page {
    transform-origin: top left;
    transform: scale(calc(100vw / 1920));
  }
}

/* ===== Mobile (< 768px): native responsive layout ===== */
@media (max-width: 767px) {
  body { overflow-x: hidden; }
  html { scroll-padding-top: 70px; }

  .page {
    width: 100%;
    max-width: 100%;
    transform: none;
    margin: 0;
  }
  .container { padding: 0 16px; }
  .site-header,
  section { overflow: hidden; }

  /* Nav */
  .nav { padding: 14px 16px 10px; }
  .nav-line { margin-bottom: 10px; }
  .nav-logo { width: 140px; height: 16px; }
  .nav-links { display: none; }
  .nav-cta { width: 110px; height: 34px; font-size: 12px; }

  /* Hero */
  .site-header {
    padding-bottom: 50px;
    background-size: cover;
    background-position: center;
  }
  .hero-stack {
    padding-top: 120px;
    padding-bottom: 30px;
    min-height: 100vh;
    display: flex;
    justify-content: flex-end;
  }
  .hero-mark { width: 160px; height: auto; }
  .hero-divider { width: 85%; max-width: 320px; margin-top: 20px; }
  .hero-tagline { font-size: 14px; letter-spacing: 1.2px; margin-top: 12px; }
  .hero-logo {
    display: grid;
    grid-template-areas: "stack" "cta";
    gap: 24px;
    width: 90%;
    max-width: 360px;
    height: auto;
    margin-top: 24px;
  }
  .hero-logo > * {
    grid-area: auto;
    width: auto;
    height: auto;
    margin: 0;
    justify-self: center;
    align-self: center;
  }
  .hero-logo-bg,
  .hero-logo-inner {
    grid-area: stack;
    width: 100%;
    height: auto;
    display: none;
  }
  .hero-cta {
    grid-area: cta;
    width: 180px;
    height: 46px;
    font-size: 14px;
  }

  /* Intro */
  .intro-section { padding: 40px 0; }
  .intro-photo {
    position: static;
    display: block;
    margin: 0 auto 24px;
    width: 80%;
    max-width: 300px;
    height: auto;
  }
  .intro-inner {
    flex-direction: column;
    padding-top: 0;
    gap: 30px;
    align-items: center;
  }
  .intro-paragraph {
    width: 100%;
    padding-top: 0;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
  }
  .intro-paragraph p + p { margin-top: 20px; }
  .intro-heading-wrap { align-items: center; }
  .intro-mark { margin: 0 0 12px; width: 48px; height: 30px; }
  .intro-heading {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 1.5px;
    text-align: center;
    white-space: normal;
  }

  /* Track slider */
  .track-section {
    background: linear-gradient(to bottom, var(--accent) 0 100%, transparent 85%);
    padding: 30px 0 40px;
  }
  .track-slick, .track-slick .slick-list { height: auto; }
  .track-slide {
    flex-direction: column;
    gap: 20px;
    height: auto;
    margin-right: 16px;
    align-items: center;
    width: 240px;
    box-sizing: border-box;
  }
  .track-slide .phone { width: 180px; height: 372px; margin-top: 0; }
  .track-slide .phone .screen {
    left: 7px; top: 7px;
    width: 166px; height: 358px;
    border-radius: 22px;
  }
  .track-slide .track-text {
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 4px;
  }
  .track-text h3 { font-size: 20px; line-height: 26px; letter-spacing: 0.8px; }
  .track-text p { font-size: 13px; line-height: 20px; }

  /* How */
  .how-section { padding: 60px 0; }
  .how-title { font-size: 36px; letter-spacing: 1.8px; }
  .how-accent { width: 48px; }
  .how-divider { margin-top: 20px; }
  .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 28px;
  }
  .how-step p { font-size: 14px; line-height: 20px; }

  /* Cats */
  .cats-section { padding: 40px 0 60px; }
  .cats-inner { flex-direction: column; gap: 30px; padding: 0 16px; }
  .cats-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 16px;
    width: 100%;
  }
  .cat-card { width: 100%; height: auto; aspect-ratio: 1; }
  .cat-card .title { font-size: 22px; line-height: 28px; letter-spacing: 1.3px; }
  .cat-card .title.small { font-size: 22px; line-height: 24px; }
  .body-logo-large {
    width: 100%;
    max-width: 140px;
    height: auto;
    margin: 0;
    justify-self: center;
    align-self: center;
  }
  .body-copy { padding-top: 0; text-align: center; width: 100%; }
  .body-title {
    font-size: 24px;
    line-height: 32px;
    width: 100%;
    white-space: normal;
    letter-spacing: 1.4px;
  }
  .body-row {
    font-size: 14px;
    line-height: 22px;
    width: 100%;
    margin-left: 0;
    text-align: center;
    white-space: normal;
  }
  .body-benefits {
    margin-left: 0;
    width: 100%;
    font-size: 15px;
    line-height: 26px;
  }
  .body-benefits .item { line-height: 26px; justify-content: center; }
  .cats-cta {
    width: 220px;
    height: 50px;
    font-size: 16px;
    margin-top: 40px;
  }

  /* Hero-Modus */
  .hero-modus-section {
    padding-bottom: 50px;
    display: block;
  }
  .hero-modus-bg { position: relative; height: auto; }
  .hm-inner {
    padding: 60px 16px 40px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .hm-left { width: 100%; }
  .hm-title {
    font-size: 29px;
    line-height: 42px;
    letter-spacing: 1.7px;
    white-space: normal;
    text-align: center;
  }
  .hm-title-line { justify-content: center; }
  .hm-accent { width: 48px; height: 40px; }
  .hm-body {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
    text-align: center;
  }
  .hm-sub {
    font-size: 22px;
    line-height: 30px;
    margin-top: 24px;
    text-align: center;
    white-space: normal;
    letter-spacing: 1.4px;
  }
  .hm-levels { width: 100%; margin-top: 20px; }
  .hm-level { width: auto; font-size: 22px; line-height: 30px; }
  .hm-arrow { width: 40px; }

  /* GymLeague */
  .gymleague-section {
    padding-bottom: 50px;
    display: block;
  }
  .gym-league { margin: 0; width: 100%; }
  .gl-content {
    padding: 40px 16px 30px;
  }
  .gl-diamond { width: 48px; }
  .gl-title {
    font-size: 28px;
    line-height: 36px;
    margin-top: 16px;
    letter-spacing: 1.5px;
  }
  .gl-sub {
    font-size: 18px;
    letter-spacing: 1.2px;
    margin-top: 8px;
    white-space: normal;
  }
  .gl-body {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    margin-top: 24px;
  }
  .gl-split {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }
  .gl-head {
    width: 100%;
    text-align: center;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1.4px;
    white-space: normal;
  }
  .gl-items { width: 100%; }
  .gl-item { width: 100%; font-size: 14px; line-height: 24px; }
  .gl-cta {
    width: 220px;
    height: 50px;
    font-size: 16px;
    margin-top: 24px;
  }

  /* App form */
  .app-form-section { padding: 40px 16px 40px; }
  .app-form-inner {
    grid-template-columns: 1fr;
    row-gap: 30px;
    column-gap: 0;
  }
  .app-col { width: 100%; }
  .app-col .app-logo { width: 180px; height: auto; }
  .app-col .app-divider { width: 80%; }
  .app-col h3 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 1.3px;
  }
  .form-split-line {
    width: 80%;
    height: 2px;
    justify-self: center;
  }
  .form-col { width: 100%; }
  .form-col h2 {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1.2px;
    white-space: normal;
    text-align: center;
  }
  .form-col input,
  .form-col textarea {
    width: 100%;
    height: 52px;
    font-size: 15px;
  }
  .form-col textarea { height: 140px; }
  .form-col .submit {
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
    height: 52px;
    font-size: 16px;
  }

  /* Footer */
  .site-footer {
    padding: 16px;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
  }
  .footer-diamond {
    grid-column: 1;
    grid-row: 1;
    width: 40px;
    justify-self: start;
  }
  .footer-right {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 12px;
  }
  .footer-links { font-size: 13px; }
  .footer-logo { width: 80px; margin-left: 8px; }
}
