* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      --accent: #ff7a1a;
      --accent-rgb: 255, 122, 26;
      background: #0b0f14;
      color: #f5f7fb;
      line-height: 1.5;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 20;
      background: rgba(11, 15, 20, 0.82);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(18px);
    }

    .nav {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      min-width: 188px;
    }

    .brand img {
      width: 188px;
      height: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      color: rgba(245, 247, 251, 0.82);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid rgba(var(--accent-rgb), 0.72);
      background: var(--accent);
      color: #0b0f14;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 13px;
      border-radius: 6px;
      box-shadow: 0 0 24px rgba(var(--accent-rgb), 0.24);
    }

    .cta.secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #f5f7fb;
      border-color: rgba(255, 255, 255, 0.22);
      box-shadow: none;
    }

    .hero {
      min-height: 92vh;
      display: flex;
      align-items: end;
      position: relative;
      overflow: hidden;
      background-image:
        linear-gradient(90deg, rgba(11, 15, 20, 0.95) 0%, rgba(11, 15, 20, 0.66) 45%, rgba(11, 15, 20, 0.26) 100%),
        linear-gradient(180deg, rgba(11, 15, 20, 0.14) 0%, rgba(11, 15, 20, 0.76) 100%),
        url("fitness-club-hero-orange.png");
      background-size: cover;
      background-position: center;
      padding: 128px 0 52px;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 160px;
      background: linear-gradient(180deg, rgba(11, 15, 20, 0), #0b0f14);
      pointer-events: none;
    }

    .hero-inner {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 760px);
      gap: 26px;
    }

    .eyebrow {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: var(--accent);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      border-radius: 999px;
    }

    h1 {
      max-width: 720px;
      font-size: clamp(54px, 8vw, 112px);
      line-height: 0.88;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .lead {
      max-width: 700px;
      color: rgba(245, 247, 251, 0.84);
      font-size: clamp(18px, 2vw, 23px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 4px;
    }

    .proof {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }

    .proof-item {
      min-height: 102px;
      padding: 18px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 8px;
    }

    .proof-item strong {
      display: block;
      color: #ffffff;
      font-size: 22px;
      line-height: 1.1;
    }

    .proof-item span {
      display: block;
      color: rgba(245, 247, 251, 0.72);
      font-size: 13px;
    }

    .proof-divider {
      width: 50%;
      height: 2px;
      margin: 11px 0 10px;
      border: 0;
      background: linear-gradient(
        90deg,
        var(--accent) 0%,
        rgba(var(--accent-rgb), 0.78) 48%,
        rgba(var(--accent-rgb), 0) 100%
      );
      box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.16);
    }

    .title-divider {
      width: 50%;
      height: 2px;
      border: 0;
      background: linear-gradient(
        90deg,
        var(--accent) 0%,
        rgba(var(--accent-rgb), 0.78) 48%,
        rgba(var(--accent-rgb), 0) 100%
      );
      box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.16);
    }

    .hero .title-divider {
      margin: -10px 0 -8px;
    }

    .text .title-divider {
      margin: -8px 0;
    }

    .contact-box .title-divider {
      margin: 16px 0 0;
    }

    section {
      padding: 88px 0;
    }

    .wrap {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
      gap: 44px;
      align-items: end;
      margin-bottom: 34px;
    }

    h2 {
      font-size: clamp(34px, 5vw, 64px);
      line-height: 0.98;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .section-head p,
    .text p {
      color: rgba(245, 247, 251, 0.74);
      font-size: 17px;
    }

    .band {
      background: #f5f7fb;
      color: #0b0f14;
    }

    .band .section-head p,
    .band .text p {
      color: rgba(11, 15, 20, 0.72);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .step,
    .partner-card {
      min-height: 250px;
      padding: 22px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .band .step,
    .band .partner-card {
      background: #ffffff;
      border-color: rgba(11, 15, 20, 0.1);
      box-shadow: 0 18px 55px rgba(11, 15, 20, 0.08);
    }

    .num {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      border-radius: 50%;
      background: var(--accent);
      color: #0b0f14;
      font-weight: 900;
    }

    .num svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    h3 {
      font-size: 23px;
      line-height: 1.08;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .step p,
    .partner-card p,
    li {
      color: rgba(245, 247, 251, 0.72);
      font-size: 15px;
    }

    .band .step p,
    .band .partner-card p {
      color: rgba(11, 15, 20, 0.7);
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 42px;
      align-items: center;
    }

    .visual {
      min-height: 520px;
      border-radius: 8px;
      background-image:
        linear-gradient(180deg, rgba(11, 15, 20, 0.12), rgba(11, 15, 20, 0.72)),
        url("fitness-club-hero-orange.png");
      background-size: cover;
      background-position: center;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
    }

    .text {
      display: grid;
      gap: 22px;
    }

    .list {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 4px;
    }

    .list li {
      min-height: 52px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      color: rgba(245, 247, 251, 0.82);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
    }

    .list li::before {
      content: "";
      flex: 0 0 10px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.65);
    }

    .partners {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .partner-card {
      min-height: 220px;
    }

    .partner-card strong {
      display: inline-flex;
      margin-bottom: 18px;
      color: #ff2d71;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .contact {
      padding: 92px 0;
      background:
        linear-gradient(90deg, rgba(11, 15, 20, 0.96), rgba(11, 15, 20, 0.74)),
        url("fitness-club-hero-orange.png");
      background-size: cover;
      background-position: center;
    }

    .contact-box {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 34px;
      align-items: center;
      padding: 34px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      backdrop-filter: blur(16px);
    }

    .contact-box p {
      margin-top: 14px;
      max-width: 760px;
      color: rgba(245, 247, 251, 0.78);
      font-size: 18px;
    }

    footer {
      padding: 28px 0;
      background: #080b10;
      color: rgba(245, 247, 251, 0.62);
      font-size: 13px;
    }

    .footer-inner {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    @media (max-width: 900px) {
      .nav {
        min-height: 66px;
      }

      .nav-links {
        display: none;
      }

      .hero {
        min-height: 88vh;
        padding-top: 104px;
      }

      .proof,
      .steps,
      .partners,
      .section-head,
      .split,
      .contact-box {
        grid-template-columns: 1fr;
      }

      .proof {
        gap: 10px;
      }

      .proof-item,
      .step,
      .partner-card {
        min-height: auto;
      }

      section {
        padding: 66px 0;
      }

      .visual {
        min-height: 360px;
      }
    }

    @media (max-width: 560px) {
      .brand {
        min-width: 166px;
      }

      .brand img {
        width: 166px;
      }

      h1 {
        font-size: 52px;
      }

      .hero-actions,
      .contact-box {
        align-items: stretch;
      }

      .cta {
        width: 100%;
      }

      .contact-box {
        padding: 24px;
      }
    }
/* Motion system */
:root {
  --motion-ease: cubic-bezier(.2, .8, .2, 1);
  --scroll-progress: 0;
}

header {
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition:
    transform 360ms var(--motion-ease),
    background-color 320ms ease,
    box-shadow 320ms ease,
    border-color 320ms ease;
}

header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  opacity: .88;
}

header.is-scrolled {
  background: rgba(7, 10, 14, .94);
  border-bottom-color: rgba(var(--accent-rgb), .28);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
}

header.is-hidden {
  transform: translate3d(0, calc(-100% - 4px), 0);
  box-shadow: none;
}

.brand img {
  transition: transform 380ms var(--motion-ease), filter 380ms ease;
}

.brand:hover img {
  transform: translateY(-2px) scale(1.015);
  filter: drop-shadow(0 0 18px rgba(var(--accent-rgb), .22));
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 260ms var(--motion-ease);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.hero {
  --hero-shift: 0px;
  background-position:
    center center,
    center center,
    center calc(50% + var(--hero-shift));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 12%, rgba(var(--accent-rgb), .08) 46%, transparent 72%);
  transform: translateX(-110%);
}

.js body.motion-ready .hero::before {
  animation: hero-light-sweep 1400ms 280ms var(--motion-ease) both;
}

.hero-inner {
  z-index: 1;
}

.js .hero .eyebrow,
.js .hero h1,
.js .hero .title-divider,
.js .hero .lead,
.js .hero .hero-actions,
.js .hero .proof-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(7px);
}

.js body.motion-ready .hero .eyebrow,
.js body.motion-ready .hero h1,
.js body.motion-ready .hero .title-divider,
.js body.motion-ready .hero .lead,
.js body.motion-ready .hero .hero-actions,
.js body.motion-ready .hero .proof-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition:
    opacity 720ms var(--motion-ease) var(--motion-delay, 0ms),
    transform 720ms var(--motion-ease) var(--motion-delay, 0ms),
    filter 720ms ease var(--motion-delay, 0ms);
}

[data-motion="reveal"] {
  --reveal-x: 0px;
  opacity: 0;
  transform: translate3d(var(--reveal-x), 36px, 0) scale(.985);
  filter: blur(5px);
  transition:
    opacity 680ms var(--motion-ease) var(--motion-delay, 0ms),
    transform 680ms var(--motion-ease) var(--motion-delay, 0ms),
    filter 680ms ease var(--motion-delay, 0ms);
}

[data-motion="reveal"].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.step,
.partner-card {
  transition:
    opacity 680ms var(--motion-ease) var(--motion-delay, 0ms),
    transform 680ms var(--motion-ease) var(--motion-delay, 0ms),
    filter 680ms ease var(--motion-delay, 0ms),
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.step:hover,
.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--accent-rgb), .58);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.step .num {
  transition: transform 340ms var(--motion-ease), color 260ms ease;
}

.step:hover .num {
  transform: translateY(-3px) rotate(-4deg) scale(1.06);
  color: #fff;
}

.cta {
  transition:
    transform 260ms var(--motion-ease),
    box-shadow 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(var(--accent-rgb), .28);
}

.cta:active {
  transform: translateY(-1px);
}

.visual {
  --visual-shift: 0px;
  background-position: center calc(50% + var(--visual-shift));
}

.contact-box {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -120px;
  border: 1px solid rgba(var(--accent-rgb), .22);
  border-radius: 50%;
  transform: scale(.72);
  opacity: 0;
  transition: transform 900ms var(--motion-ease), opacity 900ms ease;
}

.contact-box.is-visible::before {
  transform: scale(1);
  opacity: 1;
}

@keyframes hero-light-sweep {
  from { transform: translateX(-110%); }
  to { transform: translateX(110%); }
}

@media (max-width: 760px) {
  [data-motion="reveal"] {
    --reveal-x: 0px !important;
    transform: translate3d(0, 24px, 0) scale(.99);
  }

  .step:hover,
  .partner-card:hover {
    transform: translateY(-4px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .js .hero .eyebrow,
  .js .hero h1,
  .js .hero .title-divider,
  .js .hero .lead,
  .js .hero .hero-actions,
  .js .hero .proof-item,
  [data-motion="reveal"] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
