/* ==========================================================================
   ROCK GYM — Main Stylesheet
   Vanilla CSS · Dark athletic theme · Orange accent
   ========================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --bg: #0c0c0e;
  --bg-soft: #121216;
  --bg-card: #17171c;
  --bg-card-2: #1d1d24;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f4f5;
  --muted: #9d9da8;
  --accent: #ff5e1a;
  --accent-hot: #ff7a3d;
  --accent-glow: rgba(255, 94, 26, 0.35);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: #333340; border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ---------- Utilities ---------- */
.container { width: min(1200px, 92%); margin-inline: auto; }

.section { padding: clamp(70px, 9vw, 120px) 0; position: relative; }
.section-soft { background: var(--bg-soft); }

.section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent);
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--accent); }
.section-head.center .kicker::after { content: ""; width: 34px; height: 2px; background: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.5px;
}

.section-title { font-size: clamp(38px, 5vw, 58px); margin: 12px 0 16px; }
.section-title em { font-style: normal; color: var(--accent); }
.section-sub { color: var(--muted); font-size: 16.5px; }

.icon { width: 24px; height: 24px; flex: none; }
.icon svg { width: 100%; height: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 6px;
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease),
              transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  isolation: isolate;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn:hover .icon { transform: translateX(5px); }

.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 30px var(--accent-glow); }
.btn-primary::before { background: #fff; }
.btn-primary:hover { color: var(--accent); transform: translateY(-3px); box-shadow: 0 16px 40px var(--accent-glow); }
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-ghost { border: 2px solid rgba(255, 255, 255, 0.25); color: var(--text); }
.btn-ghost::before { background: var(--text); }
.btn-ghost:hover { color: var(--bg); border-color: var(--text); transform: translateY(-3px); }
.btn-ghost:hover::before { transform: scaleX(1); transform-origin: left; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background: var(--bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: var(--font-display); font-size: 34px; font-weight: 900;
  letter-spacing: 6px; text-transform: uppercase;
}
.preloader-logo em { font-style: normal; color: var(--accent); }
.preloader-bar { width: 180px; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.preloader-bar::after {
  content: ""; display: block; width: 40%; height: 100%; background: var(--accent);
  border-radius: 3px; animation: load-slide 1s ease-in-out infinite;
}
@keyframes load-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(400%); }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  z-index: 1001;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}
.site-header.scrolled {
  height: 66px;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--line);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 27px; font-weight: 900;
  letter-spacing: 3px; text-transform: uppercase;
}
.logo em { font-style: normal; color: var(--accent); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #c93a00);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 6px 18px var(--accent-glow);
  transition: transform 0.4s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-10deg) scale(1.08); }
.logo-mark .icon { width: 24px; height: 24px; }

.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  position: relative; display: block; padding: 10px 15px;
  font-family: var(--font-display); font-size: 16.5px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted);
  transition: color 0.3s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: inline-flex; }
.header-cta .btn { padding: 12px 24px; font-size: 15px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 10px;
  border: 1px solid var(--line); place-items: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav-toggle:hover { border-color: var(--accent); background: rgba(255, 94, 26, 0.08); }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }
body.nav-open .nav-toggle .icon-menu { display: none; }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 85vw);
    background: var(--bg-soft); border-left: 1px solid var(--line);
    padding: 110px 34px 40px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5);
  }
  body.nav-open .main-nav { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { font-size: 24px; padding: 12px 0; }
  .main-nav a::after { left: 0; right: auto; width: 40px; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  animation: hero-zoom 14s ease-out forwards;
}
@keyframes hero-zoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 12, 0.95) 20%, rgba(10, 10, 12, 0.65) 55%, rgba(10, 10, 12, 0.35));
}
.hero-glow {
  position: absolute; z-index: -1; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  top: 15%; right: -120px; filter: blur(10px);
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse { 0%, 100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.12); } }

.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px; border-radius: 100px;
  border: 1px solid rgba(255, 94, 26, 0.4); background: rgba(255, 94, 26, 0.1);
  font-family: var(--font-display); font-size: 14.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent-hot);
}
.hero-badge .icon { width: 16px; height: 16px; }

.hero-title {
  font-size: clamp(56px, 9vw, 108px);
  font-weight: 900; line-height: 0.98; margin: 24px 0;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: inline-block; transform: translateY(110%); animation: rise 0.9s var(--ease) forwards; }
.hero-title .line:nth-child(2) span { animation-delay: 0.12s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.24s; }
@keyframes rise { to { transform: translateY(0); } }
.hero-title .stroke {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
}
.hero-title .fire { color: var(--accent); }

.hero-text { color: var(--muted); font-size: 18px; max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-ticker {
  position: absolute; left: 0; right: 0; bottom: 0;
  border-top: 1px solid var(--line);
  background: rgba(12, 12, 14, 0.6); backdrop-filter: blur(8px);
  overflow: hidden; padding: 16px 0;
}
.ticker-track { display: flex; gap: 48px; width: max-content; animation: ticker 26s linear infinite; }
.hero-ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, 0.55);
}
.ticker-item .icon { width: 15px; height: 15px; color: var(--accent); }

.hero-scroll {
  position: absolute; right: 42px; bottom: 90px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: var(--muted); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: ""; width: 2px; height: 56px;
  background: linear-gradient(var(--accent), transparent);
  animation: scroll-hint 1.8s ease-in-out infinite;
}
@keyframes scroll-hint { 0%, 100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 900px) { .hero-scroll { display: none; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(60px, 9vw, 110px)) 0 clamp(60px, 8vw, 96px);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(10, 10, 12, 0.82), rgba(12, 12, 14, 0.94)), radial-gradient(ellipse at 70% 20%, var(--accent-glow), transparent 55%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(46px, 7vw, 84px); font-weight: 900; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px;
  font-family: var(--font-display); font-size: 15px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
}
.breadcrumb a { color: var(--accent); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent-hot); }
.breadcrumb .icon { width: 14px; height: 14px; }
.page-hero .lede { max-width: 560px; color: var(--muted); margin-top: 18px; font-size: 17px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ---------- Stats ---------- */
.stats-band { background: linear-gradient(135deg, var(--accent) 0%, #d64a08 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center; padding: clamp(34px, 4vw, 54px) 16px; color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.35s ease;
}
.stat-item:last-child { border-right: 0; }
.stat-item:hover { background: rgba(255, 255, 255, 0.08); }
.stat-value { font-family: var(--font-display); font-size: clamp(44px, 5vw, 66px); font-weight: 900; line-height: 1; }
.stat-label { margin-top: 8px; font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; opacity: 0.9; }
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
}

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.about-media { position: relative; }
.about-media .frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.about-media .frame img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5;
  transition: transform 1s var(--ease);
}
.about-media:hover .frame img { transform: scale(1.06); }
.about-media::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px; z-index: -1;
  border: 2px solid rgba(255, 94, 26, 0.35); border-radius: var(--radius);
}
.about-exp {
  position: absolute; left: -28px; bottom: 38px;
  background: var(--accent); color: #fff; border-radius: var(--radius-sm);
  padding: 22px 26px; box-shadow: 0 18px 40px var(--accent-glow);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.about-exp strong { display: block; font-family: var(--font-display); font-size: 46px; font-weight: 900; line-height: 1; }
.about-exp span { font-family: var(--font-display); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }
@media (max-width: 900px) { .about-exp { left: 12px; } .about-media::before { display: none; } }

.about-points { margin: 26px 0 34px; display: grid; gap: 16px; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; color: var(--muted); }
.about-points .icon { width: 22px; height: 22px; color: var(--accent); margin-top: 3px; }
.about-points strong { color: var(--text); }

/* ---------- Feature cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 1020px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.feature-card {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s ease, box-shadow 0.45s ease;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 94, 26, 0.12), transparent 45%);
  opacity: 0; transition: opacity 0.4s ease;
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(255, 94, 26, 0.45); box-shadow: var(--shadow); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 62px; height: 62px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255, 94, 26, 0.12); color: var(--accent);
  margin-bottom: 22px;
  transition: transform 0.45s var(--ease), background 0.45s ease, color 0.45s ease;
}
.feature-icon .icon { width: 28px; height: 28px; }
.feature-card:hover .feature-icon { background: var(--accent); color: #fff; transform: rotate(-8deg) scale(1.08); }
.feature-card h3 { font-size: 24px; margin-bottom: 10px; letter-spacing: 1px; }
.feature-card p { color: var(--muted); font-size: 15px; position: relative; }
.feature-num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display); font-size: 54px; font-weight: 900;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  transition: -webkit-text-stroke-color 0.4s ease;
}
.feature-card:hover .feature-num { -webkit-text-stroke-color: rgba(255, 94, 26, 0.5); }

/* ---------- Class cards ---------- */
.class-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease, border-color 0.5s ease;
}
.class-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: rgba(255, 94, 26, 0.4); }
.class-media { position: relative; overflow: hidden; aspect-ratio: 16 / 11; }
.class-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease), filter 0.8s ease; }
.class-card:hover .class-media img { transform: scale(1.1); filter: brightness(0.75); }
.class-cat {
  position: absolute; top: 16px; left: 16px;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(12, 12, 14, 0.75); backdrop-filter: blur(6px);
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent-hot);
  border: 1px solid rgba(255, 94, 26, 0.35);
}
.class-level {
  position: absolute; top: 16px; right: 16px;
  padding: 7px 14px; border-radius: 100px;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transform: translateY(-6px); opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s ease;
}
.class-card:hover .class-level { transform: none; opacity: 1; }
.class-body { padding: 26px 26px 28px; }
.class-body h3 { font-size: 26px; letter-spacing: 1px; transition: color 0.3s ease; }
.class-card:hover .class-body h3 { color: var(--accent-hot); }
.class-meta { display: flex; flex-wrap: wrap; gap: 16px; margin: 14px 0; color: var(--muted); font-size: 13.5px; }
.class-meta span { display: inline-flex; align-items: center; gap: 7px; }
.class-meta .icon { width: 15px; height: 15px; color: var(--accent); }
.class-body p { color: var(--muted); font-size: 14.5px; }
.class-foot {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.class-trainer { font-size: 13.5px; color: var(--muted); }
.class-trainer strong { display: block; color: var(--text); font-size: 14.5px; }
.class-times { display: flex; flex-direction: column; gap: 2px; text-align: right; font-size: 12.5px; color: var(--muted); }
.class-times span { color: var(--accent-hot); font-weight: 600; }

/* ---------- Filter pills ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: clamp(36px, 5vw, 56px); }
.filter-pill {
  padding: 11px 26px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--bg-card);
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
  transition: all 0.35s var(--ease);
}
.filter-pill:hover { color: var(--text); border-color: rgba(255, 94, 26, 0.5); transform: translateY(-2px); }
.filter-pill.active {
  background: var(--accent); border-color: var(--accent); color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.card-pop { animation: card-pop 0.55s var(--ease) both; }
@keyframes card-pop {
  from { opacity: 0; transform: translateY(26px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

/* ---------- Trainer cards ---------- */
.trainer-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
}
.trainer-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.trainer-media { position: relative; overflow: hidden; aspect-ratio: 3 / 3.4; }
.trainer-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.trainer-card:hover .trainer-media img { transform: scale(1.08); }
.trainer-socials {
  position: absolute; inset: auto 0 0 0;
  display: flex; justify-content: center; gap: 10px; padding: 20px;
  background: linear-gradient(transparent, rgba(10, 10, 12, 0.9));
  transform: translateY(100%); transition: transform 0.5s var(--ease);
}
.trainer-card:hover .trainer-socials { transform: none; }
.trainer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(6px); color: #fff;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}
.trainer-socials a:hover { background: var(--accent); transform: translateY(-4px); }
.trainer-socials .icon { width: 18px; height: 18px; }
.trainer-body { padding: 24px; text-align: center; }
.trainer-body h3 { font-size: 25px; letter-spacing: 1px; }
.trainer-role { color: var(--accent); font-family: var(--font-display); font-size: 14.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin: 4px 0 12px; }
.trainer-bio { color: var(--muted); font-size: 14px; }
.trainer-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.trainer-tags span {
  font-size: 12px; padding: 5px 12px; border-radius: 100px;
  background: rgba(255, 94, 26, 0.1); border: 1px solid rgba(255, 94, 26, 0.25); color: var(--accent-hot);
  transition: background 0.3s, color 0.3s;
}
.trainer-tags span:hover { background: var(--accent); color: #fff; }
.trainer-exp {
  position: absolute; top: 16px; left: 16px;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(12, 12, 14, 0.75); backdrop-filter: blur(6px);
  font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #fff; border: 1px solid var(--line);
}

/* ---------- Pricing ---------- */
.billing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: clamp(40px, 5vw, 60px);
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
}
.billing-toggle .opt.active { color: var(--text); }
.toggle-switch {
  position: relative; width: 64px; height: 32px; border-radius: 100px;
  background: var(--bg-card-2); border: 1px solid var(--line);
  transition: background 0.3s;
}
.toggle-switch::after {
  content: ""; position: absolute; top: 3px; left: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 4px 12px var(--accent-glow);
  transition: transform 0.4s var(--ease);
}
.toggle-switch.yearly::after { transform: translateX(31px); }
.save-badge {
  font-size: 12px; padding: 4px 10px; border-radius: 100px;
  background: rgba(80, 200, 120, 0.15); color: #6ee7a0; letter-spacing: 1px;
}

.price-card {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 34px;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.4s ease, box-shadow 0.5s ease;
}
.price-card:hover { transform: translateY(-10px); border-color: rgba(255, 94, 26, 0.5); box-shadow: var(--shadow); }
.price-card.popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 94, 26, 0.08), var(--bg-card) 45%);
  box-shadow: 0 24px 60px rgba(255, 94, 26, 0.15);
}
.popular-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  padding: 8px 22px; border-radius: 100px; background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 13.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.price-name { font-size: 24px; letter-spacing: 2px; color: var(--accent); }
.price-desc { color: var(--muted); font-size: 14px; margin: 8px 0 22px; min-height: 44px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 26px; }
.price-amount .cur { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--muted); }
.price-amount .num { font-family: var(--font-display); font-size: 64px; font-weight: 900; line-height: 1; }
.price-amount .per { color: var(--muted); font-size: 14px; }
.price-features { display: grid; gap: 13px; margin-bottom: 32px; flex: 1; }
.price-features li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text); }
.price-features li.off { color: var(--muted); text-decoration: line-through; opacity: 0.6; }
.price-features .icon { width: 18px; height: 18px; color: #6ee7a0; }
.price-features li.off .icon { color: var(--muted); }
.price-card .btn { width: 100%; }

/* ---------- Schedule ---------- */
.day-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.day-tab {
  padding: 12px 22px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--line);
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
  transition: all 0.35s var(--ease);
}
.day-tab:hover { color: var(--text); border-color: rgba(255, 94, 26, 0.5); transform: translateY(-2px); }
.day-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 8px 24px var(--accent-glow); }

.schedule-list { display: grid; gap: 14px; max-width: 900px; margin-inline: auto; }
.session-row {
  display: grid; grid-template-columns: 130px 1fr auto; gap: 20px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 28px;
  transition: transform 0.4s var(--ease), border-color 0.35s ease, background 0.35s ease;
  animation: card-pop 0.5s var(--ease) both;
}
.session-row:hover { transform: translateX(8px); border-color: rgba(255, 94, 26, 0.5); background: var(--bg-card-2); }
.session-time {
  font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--accent);
  display: flex; align-items: center; gap: 10px;
}
.session-time .icon { width: 18px; height: 18px; }
.session-info h3 { font-size: 21px; letter-spacing: 1px; }
.session-info p { color: var(--muted); font-size: 13.5px; margin-top: 3px; }
.session-level {
  padding: 8px 16px; border-radius: 100px;
  background: rgba(255, 94, 26, 0.1); border: 1px solid rgba(255, 94, 26, 0.3);
  color: var(--accent-hot); font-family: var(--font-display); font-size: 13px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase; white-space: nowrap;
}
@media (max-width: 640px) {
  .session-row { grid-template-columns: 1fr; gap: 10px; }
  .session-level { justify-self: start; }
}

/* ---------- Testimonials ---------- */
.testimonial-wrap { max-width: 820px; margin-inline: auto; position: relative; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.7s var(--ease); }
.testimonial-slide { flex: 0 0 100%; padding: 10px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(30px, 5vw, 52px); text-align: center; position: relative;
}
.testimonial-card .quote-mark {
  width: 54px; height: 54px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255, 94, 26, 0.12); color: var(--accent);
}
.testimonial-card .quote-mark .icon { width: 24px; height: 24px; }
.testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 20px; color: #ffb020; }
.testimonial-stars .icon { width: 18px; height: 18px; fill: currentColor; }
.testimonial-text { font-size: clamp(16px, 2vw, 19px); color: var(--text); font-style: italic; }
.testimonial-person { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.testimonial-person img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.testimonial-person strong { display: block; font-family: var(--font-display); font-size: 19px; letter-spacing: 1px; text-transform: uppercase; }
.testimonial-person span { color: var(--muted); font-size: 13.5px; }

.slider-nav { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.slider-btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--bg-card);
  display: grid; place-items: center; color: var(--text);
  transition: all 0.35s var(--ease);
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 24px var(--accent-glow); }
.slider-btn .icon { width: 20px; height: 20px; }
.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.slider-dots button { width: 9px; height: 9px; border-radius: 100px; background: rgba(255, 255, 255, 0.2); transition: all 0.35s var(--ease); }
.slider-dots button.active { width: 30px; background: var(--accent); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4 / 3; cursor: pointer; border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-item:hover img { transform: scale(1.12) rotate(1deg); }
.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
  background: linear-gradient(transparent 40%, rgba(10, 10, 12, 0.9));
  opacity: 0; transition: opacity 0.45s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { font-size: 22px; letter-spacing: 1px; transform: translateY(12px); transition: transform 0.45s var(--ease); }
.gallery-overlay span { color: var(--accent-hot); font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase; transform: translateY(12px); transition: transform 0.45s var(--ease) 0.06s; }
.gallery-item:hover .gallery-overlay h3, .gallery-item:hover .gallery-overlay span { transform: none; }
.gallery-zoom {
  position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  transform: scale(0); transition: transform 0.45s var(--ease);
}
.gallery-zoom .icon { width: 20px; height: 20px; }
.gallery-item:hover .gallery-zoom { transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 5vh 5vw;
  background: rgba(8, 8, 10, 0.94); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%; max-height: 82vh; border-radius: var(--radius-sm);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  transform: scale(0.92); transition: transform 0.45s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox-caption {
  position: absolute; bottom: 5vh; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 20px; letter-spacing: 2px; text-transform: uppercase;
}
.lightbox-close {
  position: absolute; top: 26px; right: 30px; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); color: #fff; display: grid; place-items: center;
  transition: background 0.3s, transform 0.3s;
}
.lightbox-close:hover { background: var(--accent); transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); color: #fff; display: grid; place-items: center;
  transition: background 0.3s;
}
.lightbox-prev { left: 24px; } .lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 800px; margin-inline: auto; padding-left: 40px; }
.timeline::before {
  content: ""; position: absolute; left: 10px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--accent), rgba(255, 94, 26, 0.1));
}
.timeline-item { position: relative; padding: 0 0 44px 30px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -37px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 3px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 94, 26, 0.15);
  transition: background 0.3s, box-shadow 0.3s;
}
.timeline-item:hover::before { background: var(--accent); box-shadow: 0 0 0 8px rgba(255, 94, 26, 0.2); }
.timeline-year { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--accent); line-height: 1; }
.timeline-item h3 { font-size: 23px; margin: 8px 0 8px; letter-spacing: 1px; }
.timeline-item p { color: var(--muted); font-size: 15px; max-width: 560px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.35s ease;
}
.faq-item.open { border-color: rgba(255, 94, 26, 0.5); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; text-align: left;
  font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; transition: color 0.3s ease;
}
.faq-q:hover { color: var(--accent-hot); }
.faq-q .icon { width: 20px; height: 20px; flex: none; color: var(--accent); transition: transform 0.4s var(--ease); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  padding: clamp(80px, 10vw, 130px) 0; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(12, 12, 14, 0.85), rgba(12, 12, 14, 0.85)), radial-gradient(ellipse at center, var(--accent-glow), transparent 70%);
}
.cta-band .container { position: relative; }
.cta-band h2 { font-size: clamp(40px, 6vw, 72px); font-weight: 900; max-width: 800px; margin: 14px auto 18px; }
.cta-band h2 em { font-style: normal; color: var(--accent); }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 36px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; margin-bottom: 18px;
  transition: transform 0.4s var(--ease), border-color 0.35s ease;
}
.info-card:hover { transform: translateX(8px); border-color: rgba(255, 94, 26, 0.5); }
.info-card .feature-icon { width: 54px; height: 54px; margin: 0; flex: none; }
.info-card h3 { font-size: 20px; letter-spacing: 1px; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: 14.5px; display: block; }
.info-card a:hover { color: var(--accent-hot); }

.contact-form {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; margin-bottom: 8px;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 15px 18px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--text); font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 15px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255, 94, 26, 0.15);
}
.form-group input.error, .form-group textarea.error { border-color: #f0455a; box-shadow: 0 0 0 4px rgba(240, 69, 90, 0.12); }
.form-error { color: #f0455a; font-size: 12.5px; margin-top: 6px; display: none; }
.form-group.invalid .form-error { display: block; }
.form-success {
  display: none; align-items: center; gap: 12px;
  background: rgba(80, 200, 120, 0.12); border: 1px solid rgba(80, 200, 120, 0.4);
  color: #6ee7a0; border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 18px; font-size: 14.5px;
}
.form-success.show { display: flex; animation: card-pop 0.5s var(--ease); }
.form-success .icon { width: 20px; height: 20px; }

.map-wrap {
  margin-top: clamp(50px, 7vw, 80px); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  filter: grayscale(1) invert(0.92) contrast(0.9);
  transition: filter 0.5s ease;
}
.map-wrap:hover { filter: grayscale(0.2) invert(0) contrast(1); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: #08080a; border-top: 1px solid var(--line); }
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px;
  padding: clamp(56px, 7vw, 84px) 0;
}
@media (max-width: 1000px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; } }
.footer-about p { color: var(--muted); font-size: 14.5px; margin: 18px 0 24px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted);
  transition: all 0.35s var(--ease);
}
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-4px); box-shadow: 0 10px 24px var(--accent-glow); }
.footer-socials .icon { width: 19px; height: 19px; }
.footer-col h4 { font-size: 19px; letter-spacing: 2px; margin-bottom: 22px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 14.5px; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s ease, transform 0.3s var(--ease); }
.footer-links a::before { content: ""; width: 0; height: 2px; background: var(--accent); transition: width 0.3s var(--ease); }
.footer-links a:hover { color: var(--accent-hot); transform: translateX(4px); }
.footer-links a:hover::before { width: 14px; }
.footer-hours li { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px dashed var(--line); padding-bottom: 10px; }
.footer-hours span { color: var(--text); font-weight: 600; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .icon { width: 17px; height: 17px; color: var(--accent); margin-top: 4px; flex: none; }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  color: var(--muted); font-size: 13.5px;
}
.footer-bottom em { color: var(--accent); font-style: normal; }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px var(--accent-glow);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all 0.4s var(--ease);
}
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { transform: translateY(-4px); background: var(--accent-hot); }
.back-top .icon { width: 22px; height: 22px; }

/* ---------- Data loading / error states ---------- */
.data-error {
  max-width: 680px; margin: 20px auto; padding: 22px 26px; text-align: center;
  background: rgba(240, 69, 90, 0.08); border: 1px solid rgba(240, 69, 90, 0.35);
  border-radius: var(--radius-sm); color: #ff8f9d; font-size: 14.5px;
}
.data-error code { background: rgba(255, 255, 255, 0.08); padding: 2px 8px; border-radius: 5px; color: var(--text); }

.skeleton { min-height: 220px; border-radius: var(--radius); background: linear-gradient(100deg, var(--bg-card) 40%, var(--bg-card-2) 50%, var(--bg-card) 60%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- Marquee heading (big outline text strip) ---------- */
.marquee { overflow: hidden; padding: 26px 0; border-block: 1px solid var(--line); background: var(--bg-soft); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: ticker 30s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-size: clamp(40px, 6vw, 74px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 2px; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
  transition: -webkit-text-stroke-color 0.4s, color 0.4s;
}
.marquee span:hover { color: var(--accent); -webkit-text-stroke-color: var(--accent); }
