/* TanyJumps — Global Styles (Multi-page site) */
/* Design tokens mirror .claude/skills/tanyjumps-design/colors_and_type.css (the codified
   brand design system). Keep the two in sync. */
:root {
  /* Backgrounds (near-black, stepped) */
  --bg: #050508;
  --bg2: #0c0c14;
  --bg3: #12121e;
  /* Brand neons */
  --pink: #ff2d87;
  --cyan: #29c5ff;
  --purple: #a855f7;
  /* Text */
  --text: #f0f0f5;
  --muted: #8888a0;
  /* Signature gradients */
  --grad: linear-gradient(135deg, #ff2d87 0%, #a855f7 50%, #29c5ff 100%);
  --grad-s: linear-gradient(135deg, #ff2d87 0%, #29c5ff 100%);
  /* Easing curves */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Hairlines / borders (white at low alpha over dark) */
  --line: rgba(255, 255, 255, 0.04);
  --line-strong: rgba(255, 255, 255, 0.1);
  --pink-line: rgba(255, 45, 135, 0.18);
  /* Tinted accent fills */
  --pink-fill: rgba(255, 45, 135, 0.1);
  --cyan-fill: rgba(41, 197, 255, 0.1);
  --purple-fill: rgba(168, 85, 247, 0.1);

  /* Radii */
  --r-pill: 999px;     /* nav, buttons, pills, bars */
  --r-card: 1.5rem;    /* bevel card outer */
  --r-md: 1.25rem;     /* video card, stat card */
  --r-sm: 14px;        /* icon box */

  /* Shadows / glows */
  --shadow-nav: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-cta: 0 12px 40px -8px rgba(255, 45, 135, 0.5), 0 8px 30px -8px rgba(41, 197, 255, 0.3);
  --glow-card: 0 20px 60px -20px rgba(255, 45, 135, 0.2);
  --bevel-inner-hi: inset 0 1px 1px rgba(255, 255, 255, 0.06); /* top inner highlight */

  /* Type families */
  --font-display: 'Syne', sans-serif;              /* headings, stats, nav drawer */
  --font-body: 'Outfit', system-ui, sans-serif;    /* body, UI, buttons */
  --font-script: 'Caveat Brush', cursive;          /* the "stil" accent word, questions */
  /* Body base */
  --text-base: 17px;
  --leading-body: 1.65;
}

*, *::before, *::after { box-sizing: border-box; }
* { -webkit-tap-highlight-color: transparent; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
.f-display { font-family: var(--font-display); }
.f-script { font-family: var(--font-script); }
.grad-text { background: var(--grad-s); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-text-full { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Layout */
.wrap { max-width: 1200px; margin: 0 auto; }
.wrap-narrow { max-width: 880px; margin: 0 auto; }
.sec { padding: 100px 20px; position: relative; z-index: 1; }
@media (min-width: 768px) { .sec { padding: 140px 40px; } }

/* Mesh gradient blobs */
.mesh-blob {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.18;
  pointer-events: none; z-index: 0;
  animation: blobFloat 14s ease-in-out infinite alternate;
}
@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
  100% { transform: translate(-20px, 10px) scale(0.95); }
}

/* ===== NAV ===== */
.nav-pill {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 14px 20px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  background: rgba(5, 5, 8, 0.78);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-nav);
  gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 45, 135, 0.35));
  transition: transform 400ms var(--ease-spring);
}
.nav-logo:hover img { transform: rotate(-6deg) scale(1.05); }
.nav-logo-sub {
  display: none;
  font-size: 10px; line-height: 1.2;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
@media (min-width: 600px) {
  .nav-logo-sub { display: block; }
}

/* Nav menu (desktop) */
.nav-menu {
  display: none;
  align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-menu a {
  padding: 8px 14px; border-radius: var(--r-pill);
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500;
  transition: all 300ms var(--ease-out-expo);
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--text); background: var(--line); }
.nav-menu a.active {
  color: var(--text);
  background: var(--pink-fill);
  border: 1px solid var(--pink-line);
}

/* Burger button (mobile) */
.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 300ms var(--ease-spring);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 80%; max-width: 320px;
  background: var(--bg2);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding: 100px 28px 40px;
  transform: translateX(100%);
  transition: transform 400ms var(--ease-out-expo);
  z-index: 49;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  display: block;
  padding: 14px 0;
  text-decoration: none; color: var(--text);
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 300ms;
}
.nav-drawer a:hover { color: var(--pink); }
.nav-drawer a.active { color: var(--pink); }
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 300ms;
  z-index: 48;
}
.nav-overlay.vis { opacity: 1; pointer-events: auto; }

/* Language Switcher */
.lang-sw {
  display: flex; gap: 3px; padding: 3px;
  background: var(--line); border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.lang-sw a {
  padding: 6px 12px; border-radius: var(--r-pill); text-decoration: none;
  font-size: 12px; font-weight: 500; color: var(--muted);
  transition: all 300ms var(--ease-out-expo);
}
.lang-sw a:hover { color: var(--text); }
.lang-sw a.active { background: var(--line-strong); color: var(--text); }

@media (min-width: 900px) {
  .nav-menu { display: flex; }
  .nav-burger { display: none; }
}

/* ===== HERO with VIDEO ===== */
.hero-video {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 100px 20px 60px;
}
.hero-video-bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg video,
.hero-video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border: none;
}
.hero-video-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(5, 5, 8, 0.55) 0%,
    rgba(5, 5, 8, 0.7) 50%,
    rgba(5, 5, 8, 0.95) 100%);
  z-index: 1;
}
.hero-video-content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  text-align: center;
}
/* Animated placeholder if no video uploaded */
.hero-placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 45, 135, 0.4), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(41, 197, 255, 0.35), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.25), transparent 50%),
    var(--bg);
  animation: heroBg 20s ease-in-out infinite alternate;
}
@keyframes heroBg {
  0% { background-position: 0% 0%, 100% 100%, 50% 50%; filter: hue-rotate(0deg); }
  100% { background-position: 100% 100%, 0% 0%, 50% 50%; filter: hue-rotate(20deg); }
}
.hero-rope {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 60px, rgba(255, 45, 135, 0.04) 60px 62px),
    repeating-linear-gradient(-45deg, transparent 0 80px, rgba(41, 197, 255, 0.03) 80px 82px);
  animation: ropeMove 30s linear infinite;
}
@keyframes ropeMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 200px 0, -200px 0; }
}

/* Big hero logo */
.hero-logo {
  width: clamp(140px, 22vw, 240px);
  height: clamp(140px, 22vw, 240px);
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 32px;
  display: block;
  box-shadow:
    0 0 0 6px rgba(5, 5, 8, 0.5),
    0 0 60px -10px rgba(255, 45, 135, 0.6),
    0 0 100px -20px rgba(41, 197, 255, 0.4);
  animation: logoFloat 5s ease-in-out infinite alternate;
}
@keyframes logoFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* ===== YouTube clips grid ===== */
.video-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .video-grid { grid-template-columns: repeat(4, 1fr); }
}
.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 500ms var(--ease-out-expo), box-shadow 500ms;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(255, 45, 135, 0.3);
}
.video-card iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-card .video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 45, 135, 0.2), transparent 60%),
    var(--bg2);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  padding: 20px;
  flex-direction: column;
  gap: 12px;
}
.video-placeholder svg { width: 48px; height: 48px; opacity: 0.5; }
.video-card .video-placeholder.has-thumb {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.video-card .video-placeholder.has-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 0;
}
.video-card .video-placeholder.has-thumb svg,
.video-card .video-placeholder.has-thumb span { position: relative; z-index: 1; }
.video-card .video-placeholder.has-thumb svg {
  opacity: 0.95;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

/* ===== Eyebrow tag ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(255, 45, 135, 0.07); border: 1px solid rgba(255, 45, 135, 0.12);
  color: var(--pink);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 8px var(--pink);
}

/* ===== Bevel cards ===== */
.bevel {
  background: var(--bg2);
  border-radius: var(--r-card); padding: 2px;
  box-shadow: 0 0 0 1px var(--line);
}
.bevel-inner {
  background: var(--bg3);
  border-radius: calc(var(--r-card) - 2px);
  padding: 2rem 1.75rem;
  box-shadow: var(--bevel-inner-hi);
  transition: transform 700ms var(--ease-out-expo), box-shadow 700ms var(--ease-out-expo);
}
.bevel:hover .bevel-inner {
  transform: translateY(-3px);
  box-shadow: var(--bevel-inner-hi), var(--glow-card);
}

/* ===== CTAs ===== */
.cta-main {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  background: var(--grad-s);
  color: #fff; font-weight: 600; font-size: 16px; font-family: 'Outfit', sans-serif;
  border-radius: var(--r-pill); border: none; cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  transition: transform 500ms var(--ease-spring), box-shadow 500ms var(--ease-out-expo);
}
.cta-main:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 50px -8px rgba(255, 45, 135, 0.65), 0 12px 40px -8px rgba(41, 197, 255, 0.45);
}
.cta-main:active { transform: translateY(0) scale(0.98); }
.cta-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform 500ms var(--ease-spring);
}
.cta-main:hover .cta-arrow { transform: translateX(3px) scale(1.1); }

.cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: var(--text); font-weight: 500;
  border-radius: var(--r-pill); border: 1.5px solid var(--line-strong);
  text-decoration: none;
  transition: all 500ms var(--ease-out-expo);
}
.cta-ghost:hover { border-color: var(--pink); color: var(--pink); }

/* Rope divider */
.rope-divider { height: 2px; background: var(--grad-s); opacity: 0.12; border: none; }

/* ===== Reveal animation ===== */
.rv {
  opacity: 0; transform: translateY(24px); filter: blur(4px);
  transition: opacity 800ms var(--ease-out-expo), transform 800ms var(--ease-out-expo), filter 800ms var(--ease-out-expo);
}
.rv.vis { opacity: 1; transform: translateY(0); filter: blur(0); }
.rv-d1 { transition-delay: 80ms; }
.rv-d2 { transition-delay: 160ms; }
.rv-d3 { transition-delay: 240ms; }
.rv-d4 { transition-delay: 320ms; }

/* Benefit icon box */
.icon-box {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ===== "А зачем?" question card ===== */
.q-card {
  margin-bottom: 64px;
}
.q-question {
  display: inline-block;
  font-family: var(--font-script);
  font-size: clamp(36px, 5vw, 56px);
  background: var(--grad-s);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  line-height: 1;
}
.q-answer {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.q-text {
  color: var(--muted);
  max-width: 65ch;
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ===== Bar chart ===== */
.bar-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.bar-label {
  width: 110px; font-size: 13px; color: var(--muted); text-align: right; flex-shrink: 0;
  font-weight: 500;
}
.bar-track {
  flex: 1; height: 28px; background: var(--bg); border-radius: var(--r-pill);
  overflow: hidden; position: relative;
}
.bar-fill {
  height: 100%; border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: flex-end; padding-right: 12px;
  font-size: 13px; font-weight: 700; color: #fff;
  transition: width 1.4s var(--ease-out-expo);
  width: 0;
}
.bar-row.highlight .bar-label { color: var(--text); font-weight: 700; }
.bar-row.highlight .bar-fill { background: var(--grad-s); }
.bar-row:not(.highlight) .bar-fill { background: rgba(255, 255, 255, 0.08); color: var(--muted); }

/* ===== Donut chart (CSS conic) ===== */
.donut-wrap {
  display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center;
}
.donut {
  width: 220px; height: 220px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  /* The conic-gradient is set inline per-instance */
}
.donut::before {
  content: '';
  position: absolute; inset: 28px;
  background: var(--bg3);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}
.donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  z-index: 1;
}
.donut-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 40px; line-height: 1;
  background: var(--grad-s);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.donut-label {
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 4px;
}
.donut-legend {
  display: flex; flex-direction: column; gap: 12px;
  flex: 1; min-width: 200px;
}
.donut-legend-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.donut-legend-row .dot {
  width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0;
}
.donut-legend-row .name { flex: 1; color: var(--muted); }
.donut-legend-row.highlight .name { color: var(--text); font-weight: 600; }
.donut-legend-row .val { font-family: var(--font-display); font-weight: 700; color: var(--text); }

/* ===== Stars rating ===== */
.star-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.star-row:last-child { border-bottom: none; }
.star-row .name { flex: 1; font-size: 15px; color: var(--muted); }
.star-row.highlight .name { color: var(--text); font-weight: 600; }
.star-bar {
  display: flex; gap: 2px;
}
.star-bar .star {
  width: 14px; height: 14px;
  background: rgba(255, 255, 255, 0.08);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.star-bar .star.filled { background: var(--pink); }
.star-row.highlight .star-bar .star.filled { background: var(--grad-s); }

/* ===== Number column chart ===== */
.col-chart {
  display: flex; align-items: flex-end; justify-content: space-around;
  gap: 12px; height: 240px; padding: 0 8px;
  margin-bottom: 24px;
}
.col-bar {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 8px; min-width: 0;
}
.col-bar .col-fill {
  width: 100%; max-width: 60px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px 8px 0 0;
  height: 0;
  transition: height 1.5s var(--ease-out-expo);
  position: relative;
}
.col-bar.highlight .col-fill { background: var(--grad-s); }
.col-bar .col-val {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; color: var(--text);
}
.col-bar .col-name {
  font-size: 11px; color: var(--muted); text-align: center;
  line-height: 1.3;
}

/* ===== Stat highlight ===== */
.stat-card {
  text-align: center; padding: 28px 20px;
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.stat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 52px); line-height: 1; letter-spacing: -0.03em;
}
.stat-label { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg3); border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 500ms var(--ease-spring), background 300ms;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--pink); }
.faq-icon svg { width: 16px; height: 16px; color: var(--text); }
.faq-body { padding: 0 0 22px; color: var(--muted); line-height: 1.75; max-width: 65ch; }

/* ===== Social link cards ===== */
.social-link {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: 1rem; text-decoration: none; color: var(--text);
  transition: all 500ms var(--ease-out-expo);
}
.social-link:hover { border-color: rgba(255, 45, 135, 0.3); transform: translateY(-2px); }
.sl-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ===== Park pills ===== */
.park-pill {
  padding: 10px 20px; border-radius: var(--r-pill);
  background: var(--bg2); border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px; color: var(--muted);
  transition: all 400ms var(--ease-out-expo);
}
.park-pill:hover { border-color: rgba(41, 197, 255, 0.3); color: var(--text); }

/* ===== Trainer badges ===== */
.badge {
  padding: 10px 20px; border-radius: var(--r-pill);
  background: var(--bg); border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

/* ===== Sticky CTA (mobile) ===== */
.sticky-cta {
  position: fixed; bottom: 20px; left: 16px; right: 16px;
  z-index: 40; opacity: 0; pointer-events: none;
  transition: opacity 500ms var(--ease-out-expo), transform 500ms var(--ease-spring);
  transform: translateY(20px);
  display: none;
}
.sticky-cta.vis { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 20px; position: relative; z-index: 1;
}
.footer-grid {
  display: grid; gap: 32px;
  max-width: 1200px; margin: 0 auto;
  grid-template-columns: 1fr;
}
.footer-grid h4 {
  font-family: var(--font-display);
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 14px; font-weight: 600;
}
.footer-logo {
  display: block;
  width: 100%; max-width: 260px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(255, 45, 135, 0.25));
}
.footer-grid a {
  display: block;
  color: var(--text); text-decoration: none;
  padding: 6px 0;
  font-size: 14px;
  transition: color 300ms;
}
.footer-grid a:hover { color: var(--pink); }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* Check mark */
.check-item {
  display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--muted);
}

/* ===== Coach hero (page) ===== */
.coach-hero {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .coach-hero { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.coach-portrait {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg3);
  box-shadow: 0 30px 80px -20px rgba(255, 45, 135, 0.3);
}
.coach-portrait::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 45, 135, 0.4), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(41, 197, 255, 0.35), transparent 60%);
}
.coach-portrait::after {
  content: '🤸';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
  opacity: 0.6;
}
.coach-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 1;
}

/* ===== Responsive grids ===== */
.grid-benefits { display: grid; grid-template-columns: 1fr; gap: 14px; }
.grid-stats { display: grid; grid-template-columns: 1fr; gap: 12px; }
.grid-contact { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.grid-social { display: grid; gap: 12px; }

@media (min-width: 768px) {
  .grid-benefits { grid-template-columns: repeat(2, 1fr); }
  .grid-stats { grid-template-columns: repeat(3, 1fr); }
  .grid-contact { grid-template-columns: 1.2fr 0.8fr; }
  .sticky-cta { display: none !important; }
}
@media (max-width: 767px) {
  .sticky-cta { display: block; }
  .cta-main { width: 100%; justify-content: center; }
  .bevel-inner { padding: 1.5rem 1.25rem; }
  .donut { width: 180px; height: 180px; }
  .donut-num { font-size: 32px; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
