:root {
  --bg: #080707;
  --bg-soft: #120f11;
  --ink: #fff7fb;
  --ink-dark: #1c1519;
  --muted: #d7c4ce;
  --muted-dark: rgba(28, 21, 25, 0.72);
  --line: rgba(255, 247, 251, 0.16);
  --pink: #ff2f9f;
  --pink-strong: #ff74c7;
  --plum: #2a101d;
  --charcoal: #171416;
  --ivory: #f3ede8;
  --ivory-soft: #ebe2db;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: -1;
}

@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor summary,
  html.has-custom-cursor .button,
  html.has-custom-cursor .nav-cta,
  html.has-custom-cursor [role="button"] {
    cursor: none;
  }
}

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

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

.site-cursor,
.site-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  transform: translate3d(-50%, -50%, 0);
  transition:
    opacity 180ms ease,
    width 220ms ease,
    height 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-cursor {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 196, 228, 0.56);
  border-radius: 999px;
  box-shadow: 0 0 26px rgba(255, 47, 159, 0.16);
  backdrop-filter: blur(4px);
}

.site-cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(255, 47, 159, 0.42);
}

.site-cursor.is-visible,
.site-cursor-dot.is-visible {
  opacity: 1;
}

.site-cursor.is-hover {
  width: 52px;
  height: 52px;
  border-color: rgba(255, 47, 159, 0.72);
  background: rgba(255, 47, 159, 0.08);
  box-shadow: 0 0 36px rgba(255, 47, 159, 0.22);
}

.site-cursor-dot.is-hover {
  background: #ffc4e4;
}

.site-cursor.is-active {
  width: 28px;
  height: 28px;
}

.site-cursor-dot.is-active {
  width: 10px;
  height: 10px;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: #160b11;
  background: var(--pink);
  border: 1px solid rgba(255, 47, 159, 0.8);
  border-radius: 6px;
  box-shadow: 0 0 28px rgba(255, 47, 159, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: #ffc4e4;
  box-shadow: 0 0 34px rgba(255, 196, 228, 0.38);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
}

.reveal-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 18px;
  background: rgba(8, 7, 7, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 7, 7, 0.9);
  border-color: rgba(255, 247, 251, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 800;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--pink);
}

.main-nav a[aria-current="page"] {
  color: var(--pink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-cta,
.button.primary {
  background: var(--pink);
  color: #160b11;
  box-shadow: 0 0 28px rgba(255, 47, 159, 0.34);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  color: #160b11;
  background: #ffc4e4;
  box-shadow: 0 0 34px rgba(255, 196, 228, 0.42);
  transform: translateY(-1px);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta[aria-current="page"] {
  color: #160b11;
  background: #ffc4e4;
}

.button.ghost {
  border: 1px solid rgba(255, 247, 251, 0.28);
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button.ghost:hover,
.button.ghost:focus-visible {
  color: #ffc4e4;
  border-color: #ffc4e4;
  background: rgba(255, 196, 228, 0.08);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background:
    radial-gradient(circle at 76% 26%, rgba(255, 47, 159, 0.18), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(255, 116, 199, 0.09), transparent 34%),
    linear-gradient(135deg, #080707 0%, #120f11 58%, #2a101d 100%);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 7, 7, 0.96) 0%, rgba(8, 7, 7, 0.78) 38%, rgba(255, 47, 159, 0.08) 66%, rgba(8, 7, 7, 0.74) 100%),
    linear-gradient(0deg, rgba(8, 7, 7, 0.98) 0%, rgba(8, 7, 7, 0.08) 38%, rgba(8, 7, 7, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 138px 0 118px;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 230ms;
}

.kicker,
.section-label,
.badge {
  margin: 0 0 18px;
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Inter, system-ui, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 1080px;
  margin-bottom: 28px;
  color: var(--pink);
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  font-weight: 900;
  text-shadow: 0 0 38px rgba(255, 47, 159, 0.28);
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
  font-weight: 600;
}

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

.opening-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 0;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  background: var(--pink);
  color: #170d13;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  font-weight: 900;
}

.opening-strip > span,
.opening-strip > strong {
  padding: 22px 24px;
}

.opening-strip-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding: 22px 0;
  animation: stripScroll 26s linear infinite;
}

.opening-strip-track > * {
  flex-shrink: 0;
  padding: 0 24px;
  position: relative;
}

.opening-strip-track > *:not(:last-child)::after {
  content: "\2726";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: rgba(23, 13, 19, 0.6);
}

@keyframes stripScroll {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.dark {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.method-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

h2 {
  margin-bottom: 24px;
  color: var(--pink);
  font-size: clamp(2.4rem, 5.4vw, 5.5rem);
  font-weight: 900;
}

.intro p,
.method-head p,
.section-lead,
.opening-card p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  font-weight: 600;
}

.text-link {
  color: var(--pink);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.effect-grid,
.info-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.effect-grid article,
.info-grid article,
.price-card,
.opening-card,
.faq details {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.effect-grid article,
.info-grid article {
  min-height: 220px;
  padding: 22px;
}

.effect-grid span {
  display: block;
  margin-bottom: 56px;
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 900;
}

article p,
.price-card p,
.faq p {
  color: var(--muted);
}

.training-gallery {
  padding-top: 88px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 0.9fr;
  gap: 10px;
  margin-top: 34px;
}

.gallery-grid img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: saturate(0.92) contrast(1.08);
}

.gallery-grid img:nth-child(even) {
  margin-top: 42px;
}

.testimonials h2 {
  max-width: 980px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.review-card {
  min-height: 300px;
  padding: 26px;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stars {
  margin-bottom: 22px;
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.review-card h3 {
  color: var(--ink);
}

.review-card p:last-child {
  color: var(--muted);
}

.ivory-surface,
.ivory-outline {
  color: var(--ink-dark);
}

.ivory-surface .section-label,
.ivory-outline .section-label {
  color: #b45584;
}

.ivory-surface h2,
.ivory-surface h3,
.ivory-outline h2,
.ivory-outline h3 {
  color: var(--ink-dark);
}

.ivory-surface p,
.ivory-outline p {
  color: var(--muted-dark);
}

.trainers h2 {
  max-width: 980px;
}

.trainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.trainer-card {
  display: grid;
  grid-template-rows: 300px 1fr;
  min-height: 560px;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trainer-card img,
.trainer-placeholder {
  width: 100%;
  height: 300px;
}

.trainer-card img {
  object-fit: cover;
  object-position: center 32%;
}

.trainer-card img.klaudia-photo {
  object-position: center 18%;
}

.trainer-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 47, 159, 0.32), rgba(255, 116, 199, 0.08)),
    var(--plum);
  color: var(--pink-strong);
  font-family: Inter, system-ui, sans-serif;
  font-size: 6rem;
  font-weight: 900;
}

.trainer-card > div:last-child {
  padding: 28px;
}

.first-time {
  text-align: center;
}

.section-lead {
  max-width: 680px;
  margin: 0 auto;
}

.bestrong-pricing .section-lead {
  margin-left: 0;
  margin-right: 0;
}

.info-grid {
  grid-template-columns: repeat(4, 1fr);
  text-align: left;
}

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

.price-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 30px;
}

.price-card.featured {
  background: var(--plum);
  border-color: rgba(255, 47, 159, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 47, 159, 0.16), 0 0 36px rgba(255, 47, 159, 0.16);
}

.price {
  margin: 8px 0 18px;
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.price span {
  font-size: 1rem;
}

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

.bestrong-pricing {
  overflow: hidden;
}

.pass-list {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.pass-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 180px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(105deg, rgba(8, 7, 7, 0.98), rgba(23, 20, 22, 0.96) 52%, rgba(255, 47, 159, 0.18)),
    var(--charcoal);
  border: 2px solid var(--pink);
  border-radius: 22px;
  box-shadow: 0 0 34px rgba(255, 47, 159, 0.12);
}

.pass-card.featured {
  background:
    linear-gradient(105deg, rgba(8, 7, 7, 0.98), rgba(42, 16, 29, 0.96) 52%, rgba(255, 47, 159, 0.28)),
    var(--plum);
}

.app-showcase {
  padding-top: 0;
}

.app-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 47, 159, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(18, 15, 17, 0.96), rgba(42, 16, 29, 0.82));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.app-showcase-copy {
  padding: clamp(28px, 4vw, 42px);
  min-width: 0;
}

.app-showcase-copy p {
  max-width: 60ch;
}

.app-showcase-visual {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 88% 82%, rgba(255, 47, 159, 0.22), transparent 26%),
    url("assets/bestrong-app.png") left center / cover no-repeat,
    #050505;
}

.app-effect-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.pass-card h3 {
  min-height: 1.95em;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  text-transform: uppercase;
}

.effect-grid h3,
.info-grid h3,
.trainer-card h3,
.review-card h3 {
  min-height: 2.55em;
  line-height: 1.12;
}

.pass-card p:not(.badge):not(.pass-price) {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
}

.pass-note {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  font-weight: 900;
  border: 2px solid var(--pink);
  border-radius: 8px;
}

.pass-price {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  white-space: nowrap;
}

.pass-price span {
  display: block;
  margin-top: 8px;
  color: var(--pink-strong);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.pricing-footnote {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.location {
  padding-top: 88px;
  padding-bottom: 88px;
}

.opening-card {
  min-height: 420px;
  padding: clamp(28px, 6vw, 70px);
  background:
    linear-gradient(105deg, rgba(18, 15, 17, 0.98), rgba(42, 16, 29, 0.94), rgba(255, 47, 159, 0.18)),
    var(--charcoal);
}

.opening-card h2 {
  max-width: 900px;
}

.opening-card p {
  max-width: 660px;
}

.opening-card.ivory-surface {
  background: linear-gradient(135deg, rgba(243, 237, 232, 0.98), rgba(231, 220, 214, 0.96));
  border: 1px solid rgba(243, 237, 232, 0.48);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
}

.opening-card.ivory-surface .button.primary {
  color: #1a1016;
}

.faq {
  padding-top: 40px;
}

.intro + .app-showcase {
  padding-top: 36px;
}

.location + .faq {
  padding-top: 56px;
}

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

.faq details {
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.faq p {
  margin: 16px 0 0;
}

.planning-placeholder {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(100%, 980px);
  max-width: none;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 52px);
  text-align: center;
  background: var(--charcoal);
  border: 1px dashed rgba(255, 47, 159, 0.72);
  border-radius: 8px;
}

.planning-placeholder.ivory-outline {
  background: linear-gradient(135deg, rgba(243, 237, 232, 0.98), rgba(231, 220, 214, 0.94));
  border: 1px solid rgba(243, 237, 232, 0.52);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
}

.planning h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.planning-placeholder.ivory-outline p {
  color: rgba(52, 31, 42, 0.82);
}

.planning-placeholder.ivory-outline .button.primary {
  color: #1a1016;
}

.planning-placeholder.ivory-outline .button.ghost {
  color: #2f1b26;
  border-color: rgba(52, 31, 42, 0.16);
  background: rgba(255, 255, 255, 0.28);
}

.planning-placeholder.ivory-outline .button.ghost:hover,
.planning-placeholder.ivory-outline .button.ghost:focus-visible {
  color: #1a1016;
  border-color: rgba(52, 31, 42, 0.34);
  background: rgba(255, 255, 255, 0.48);
}

.planning-placeholder p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  font-weight: 700;
}

.planning-widget {
  overflow: hidden;
  width: min(100%, 1080px);
  margin: 0 auto;
  border-radius: 8px;
}

.planning-widget iframe {
  display: block;
  width: 100%;
  min-height: 650px;
  border: 0;
  background: transparent;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.2fr) auto;
  gap: 32px;
  align-items: end;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 900;
}

.copyright {
  margin: 0;
}

.credit-link {
  color: var(--pink);
  font-weight: 900;
}

.credit-link:hover,
.credit-link:focus-visible {
  color: #ffc4e4;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-grid;
    gap: 6px;
    width: 46px;
    height: 46px;
    place-content: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(8, 7, 7, 0.96);
    border: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .intro-grid,
  .app-showcase-layout,
  .method-head,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .effect-grid,
  .info-grid,
  .price-grid,
  .gallery-grid,
  .testimonial-grid,
  .pass-card,
  .trainer-grid {
    grid-template-columns: 1fr;
  }

  .pass-card {
    min-height: 0;
  }

  .pass-price {
    justify-self: start;
  }

  .gallery-grid img,
  .trainer-card img,
  .trainer-placeholder {
    height: 300px;
  }

  .trainer-card {
    min-height: 0;
  }

  .app-showcase-visual {
    min-height: 420px;
    background-position: center top;
  }

  .gallery-grid img:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    margin-top: 10px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .hero-bg {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 7, 7, 0.96), rgba(8, 7, 7, 0.72)),
      linear-gradient(0deg, rgba(8, 7, 7, 0.98), rgba(8, 7, 7, 0.18) 55%, rgba(8, 7, 7, 0.82));
  }

  .hero-content {
    padding: 132px 0 150px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .button {
    width: 100%;
  }

  .opening-strip {
    font-size: 1rem;
  }

  .opening-strip-track {
    gap: 28px;
    padding: 16px 0;
  }

  .section {
    padding: 72px 0;
  }

  .dark {
    padding-left: 16px;
    padding-right: 16px;
  }

  .effect-grid article,
  .info-grid article {
    min-height: 0;
  }

  .effect-grid span {
    margin-bottom: 24px;
  }
}

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

  .hero-content > *,
  .reveal-in {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}
