/* ================================================================
   DESIGN TOKENS
================================================================ */
:root {
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --bg: #0a0a0a;
  --black: #000000;
  --card: #141414;
  --card-light: #1a1a1a;
  --border: #1a1a1a;
  --border-mid: #2a2a2a;
  --border-light: #444;
  --red: #FF0000;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --text-primary: #ffffff;
  --text-secondary: #aaa;
  --text-muted: #888;
  --text-dark: #555;
}

/* ================================================================
   RESET
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ================================================================
   LOGO
================================================================ */
.logo { display: inline-flex; align-items: center; }
.logo-sig { display: flex; align-items: flex-end; gap: 3px; margin-right: 4px; }
.logo-sig .s1 { width: 4px; height: 7px; background: var(--red); border-radius: 1px; }
.logo-sig .s2 { width: 4px; height: 11px; background: var(--red); border-radius: 1px; }
.logo-wm { font-family: var(--font-heading); text-transform: uppercase; line-height: 1; }
.logo-wm .lp { font-weight: 400; letter-spacing: -0.02em; color: var(--white); }
.logo-wm .lf { font-weight: 700; letter-spacing: 0; color: var(--white); }

.logo-hero .logo-sig .s1 { width: clamp(8px, 1.5vw, 11px); height: clamp(24px, 6.1vw, 34px); }
.logo-hero .logo-sig .s2 { width: clamp(8px, 1.5vw, 11px); height: clamp(38px, 9.5vw, 53px); }
.logo-hero .logo-wm { font-size: clamp(52px, 13vw, 72px); }
.logo-hero .logo-sig { margin-right: 6px; }

.logo-cta .logo-sig .s1 { width: 6px; height: 11px; }
.logo-cta .logo-sig .s2 { width: 6px; height: 17px; }
.logo-cta .logo-wm { font-size: 32px; }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 8px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-sm { font-size: 13px; letter-spacing: 0.12em; font-weight: 600; height: 32px; padding: 0 18px; }
.btn-md { height: 46px; padding: 0 32px; }
.btn-primary { background: var(--red); color: var(--white); border: none; }
.btn-primary:hover { background: #cc0000; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.75); }
.btn-outline:hover { border-color: var(--white); }
.btn-outline-sm { background: transparent; color: #ddd; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-sm:hover { border-color: var(--white); color: var(--white); }

/* Ghost button (rankings CTA, tabs) */
.btn-ghost {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  background: transparent; color: #333; border: 1px solid #555;
  height: 32px; padding: 0 18px; border-radius: 6px;
  cursor: pointer; display: inline-flex; align-items: center;
  transition: border 0.18s, color 0.18s, background 0.18s;
}
.btn-ghost:hover { border: 1.5px solid var(--red); color: #000; }

/* Ghost button for "Dodaj profil" in for-fighters section (dark bg) */
.btn-add-profile {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  background: transparent; color: #ddd; border: 0.5px solid #999;
  height: 36px; padding: 0 22px; border-radius: 8px;
  cursor: pointer; display: inline-flex; align-items: center;
  margin-top: 20px;
  transition: border 0.2s, color 0.2s, background 0.2s;
}
.btn-add-profile:hover { border: 1.5px solid var(--red); color: #ccc; }
.btn-add-profile:active { background: var(--red); border-color: var(--red); color: #fff; }

/* Strip ghost button */
.btn-strip-ghost {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  background: transparent; color: #555; border: 0.5px solid #ccc;
  height: 34px; padding: 0 18px; border-radius: 6px;
  cursor: pointer; display: inline-flex; align-items: center;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.btn-strip-ghost:hover { border: 1.5px solid var(--red); color: #333; }

/* ================================================================
   NAV
================================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: 50px;
  background: rgba(10,10,10,0.97);
  border-bottom: 0.5px solid var(--border);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo .logo-wm { font-size: 17px; }
.nav-actions { display: flex; align-items: center; gap: 8px; }

/* ================================================================
   SEPARATORS
================================================================ */
.sec-sep { display: none; }

/* ================================================================
   EYEBROW
================================================================ */
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.eyebrow-line { height: 1px; flex-shrink: 0; }
.eyebrow-line.red { width: 60px; background: var(--red); }
.eyebrow-line.neutral { background: #333; }
.eyebrow-text {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: #666;
  white-space: nowrap; flex-shrink: 0;
}
.eyebrow-text.dark { color: #888; }
.eyebrow-fill { flex: 1; max-width: 60px; height: 0.5px; background: #333; }
/* right-side line and dot added to all standard eyebrows */
.eyebrow-right { flex: 1; height: 1px; background: var(--red); }
.eyebrow-end-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid var(--red); flex-shrink: 0;
}

/* ================================================================
   HEADING UTILITIES
================================================================ */
/* #3 editorial heading  -  52px */
.section-heading {
  font-family: var(--font-heading);
  font-size: 54px; font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.01em;
}
.section-heading.dark { color: #0a0a0a; }
.section-heading.light { color: var(--white); }

/* Smaller headings for other sections */
.section-heading-sm {
  font-family: var(--font-heading);
  font-size: 34px; font-weight: 700;
  text-transform: uppercase; line-height: 1.0; letter-spacing: -0.01em;
}
.section-heading-sm.dark { color: #0a0a0a; }

/* Red square dot before heading */
.section-dot-lead {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--red); border-radius: 1px;
  margin-right: 8px; vertical-align: middle;
  flex-shrink: 0;
}

/* Red square dot inline at end of heading */
.heading-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--red); border-radius: 1px;
  margin-left: 0px; vertical-align: baseline;
  position: relative; top: 2px;
}
/* legacy alias */
.end-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--red); border-radius: 1px;
  margin-left: 0px; vertical-align: baseline;
  position: relative; top: 2px;
}

/* Q-mark: CSS gradient  -  black 0-85% (arc + stem), red 85-100% (dot) */
.q-red {
  display: inline-block;
  background: linear-gradient(to bottom, #0a0a0a 62%, #FF0000 62%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-sub { font-family: var(--font-body); font-size: 17px; font-weight: 300; color: #555; margin-top: 6px; }
.section-sub.light { color: var(--text-secondary); }

/* ================================================================
   HERO  -  fullscreen
================================================================ */
.hero {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.85) 100%),
    url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920&q=80&fit=crop&auto=format') center 30% / cover no-repeat,
    var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Red glow at bottom */
.hero-bg {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 360px; height: 140px;
  background: radial-gradient(ellipse, rgba(255,0,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 20px; padding: 5px 16px;
  margin: 0 auto 22px; width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.badge-text {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: #ccc; white-space: nowrap;
}
.hero-logo-wrap { display: flex; justify-content: center; margin-bottom: 18px; }
.hero-body {
  font-family: var(--font-heading);
  font-size: clamp(15px, 2.2vw, 22px); font-weight: 400; color: rgba(255,255,255,0.70);
  letter-spacing: 0.03em;
  max-width: 600px; margin: 0 auto 28px; line-height: 1.5;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 0; /* no bottom margin  -  stats use margin-top:auto */
}
/* Stats  -  centred with rest of hero content */
.hero-stats {
  border-top: 0.5px solid var(--border);
  margin-top: 32px;
  padding-top: 28px;
  padding-bottom: 0;
  display: flex; justify-content: center; gap: 48px;
  width: 100%;
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-plus { font-size: 22px; color: var(--red); vertical-align: middle; }
.stat-label {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #888; margin-top: 6px; display: block;
}

/* ================================================================
   SECTION CONTENT  -  max-width wrapper for all sections
================================================================ */
.section-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
   HERO SLIDER
================================================================ */
.hero-slider {
  position: relative; height: 92vh; min-height: 560px; overflow: hidden;
}
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.85s ease-in-out;
  background-size: cover; background-position: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  padding: 16vh 24px 0; text-align: center;
}

.slide.active { opacity: 1; }

/* Overlay  -  z-index:-1 renders above bg-image, below flex content */
.slide-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.30) 45%, rgba(0,0,0,0.72) 100%);
}
.slide-overlay-dark {
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.80) 100%);
}
.slide-dim {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  transition: background 0.5s ease;
}
.hero-slider:has(.partner-item:hover) .slide.active .slide-dim { background: rgba(0,0,0,0.72); }

/* Event slide content */
.slide-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.event-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 600; letter-spacing: 0.32em;
  color: var(--red); text-transform: uppercase; margin-bottom: 14px;
}
.event-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5.5vw, 64px); font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: 0.03em;
  line-height: 1; margin-bottom: 10px;
}
.event-matchup {
  font-family: var(--font-heading);
  font-size: clamp(15px, 2.2vw, 22px); font-weight: 400;
  color: rgba(255,255,255,0.70); text-transform: uppercase;
  letter-spacing: 0.14em; margin-bottom: 44px;
}
.event-matchup .vs-sep {
  color: var(--red); margin: 0 14px; font-weight: 700;
}

/* Countdown */
.countdown {
  display: flex; align-items: center; gap: 6px;
  justify-content: center; margin-bottom: 40px;
}
.cd-block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,0,0,0.55);
  border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 8px; padding: 16px 22px; min-width: 84px;
}
.cd-num {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 64px); font-weight: 700;
  color: #fff; line-height: 1;
}
.cd-label {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45); text-transform: uppercase; margin-top: 7px;
}
.cd-sep {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px); font-weight: 700;
  color: rgba(255,255,255,0.25); padding-bottom: 22px; flex-shrink: 0;
}

/* Event buttons */
.event-btns { display: flex; gap: 12px; margin-bottom: 18px; }
.btn-event-details {
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.50); background: none; border: none;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.15s;
}
.btn-event-details:hover { color: #fff; }

/* Slider arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 0.5px solid rgba(255,255,255,0.22);
  color: #fff; font-size: 22px; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.slider-arrow:hover { background: rgba(255,255,255,0.28); }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Slider dots */
.slider-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10; align-items: center;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.30); border: none; cursor: pointer;
  transition: background 0.25s, width 0.25s; padding: 0; flex-shrink: 0;
}
.slider-dot.active { background: #FF0000; width: 26px; }

/* Slide-main: hero-bg zostaje absolute, reszta relative z-index 1 */
.slide-main .hero-badge,
.slide-main .hero-logo-wrap,
.slide-main .hero-body,
.slide-main .hero-cta { position: relative; z-index: 1; }

/* Statystyki wypięte z flow  -  absolute nad partner-barem, nie wpływają na centrowanie */
.slide-main .hero-stats {
  position: absolute;
  bottom: 180px; left: 50%; transform: translateX(-50%);
  width: 100%; padding: 0 24px;
  border-top: 0.5px solid var(--border);
  padding-top: 18px;
}

/* ================================================================
   PARTNER TICKER  -  bottom of hero
================================================================ */
.partner-bar {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  height: 130px;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  overflow: hidden;
  display: flex; align-items: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.partner-track {
  display: flex; align-items: center;
  white-space: nowrap; flex-shrink: 0;
  animation: ticker-left 22s linear infinite;
}
.partner-bar:hover .partner-track { animation-play-state: paused; }
@keyframes ticker-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-item {
  display: inline-flex; align-items: center;
  text-decoration: none; padding: 0 56px;
  opacity: 0.4; transition: opacity 0.2s;
}
.partner-item:hover { opacity: 1; }
.partner-sep {
  display: inline-block;
  width: 0.5px; height: 22px;
  background: rgba(255,255,255,0.15); flex-shrink: 0;
}
/* ConPro */
.partner-conpro {
  font-family: var(--font-heading);
  font-size: 40px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--white);
  display: inline-flex; align-items: baseline;
}
.p-dot {
  display: inline-block;
  width: 5px; height: 5px; background: var(--red);
  border-radius: 1px; margin: 0 1px;
  position: relative; top: -2px; flex-shrink: 0;
}
/* Prawnik w Chmurze */
.partner-prawnik {
  display: inline-flex; flex-direction: column; align-items: flex-start;
}
.pw-top {
  font-family: var(--font-heading);
  font-size: 30px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--white); text-transform: uppercase; line-height: 1.0;
}
.pw-line {
  display: block; height: 2px; width: 100%;
  background: var(--red); margin: 4px 0;
}
.pw-bot {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600; letter-spacing: 0.28em;
  color: var(--white); text-transform: uppercase; line-height: 1;
}

/* ================================================================
   SECTION 3  -  CZYM JEST (WHITE EDITORIAL)
================================================================ */
.what-is { background: var(--off-white); padding: 64px 0; }
.what-is-sub { font-family: var(--font-body); font-size: 17px; font-weight: 400; color: #555; margin-top: 14px; line-height: 1.6; max-width: 320px; }
.what-is-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start; padding-top: 10px;
}
.ed-sep { width: 32px; height: 1px; background: #e0e0e0; margin-bottom: 16px; }

/* Typewriter */
.typewriter-wrap {
  display: flex; align-items: center;
  font-family: var(--font-heading);
  font-size: 19px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #999;
  margin-bottom: 14px; min-height: 26px; line-height: 1.4;
}
.tw-cursor {
  display: inline-block; width: 2px; height: 0.85em;
  background: var(--red); vertical-align: middle; margin-left: 2px;
  animation: blink 0.65s infinite;
}
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* Tabs */
.tabs-container {
  display: flex; border-bottom: 0.5px solid #e8e8e8;
  overflow-x: auto; scrollbar-width: none;
}
.tabs-container::-webkit-scrollbar { display: none; }
.tab-btn {
  font-family: var(--font-heading);
  font-size: 17px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 20px; cursor: pointer; border: none;
  border-bottom: 1.5px solid transparent; margin-bottom: -0.5px;
  color: #bbb; background: transparent; white-space: nowrap;
  transition: color 0.2s, border-color 0.2s; flex-shrink: 0;
}
.tab-btn.active { color: #666; border-bottom-color: var(--red); }

/* Tab pane  -  min-height prevents layout shift when switching tabs with different content lengths */
.tab-panes-wrap { position: relative; height: 210px; }
.tab-pane { display: none; position: absolute; top: 0; left: 0; right: 0; }
.tab-pane.active { display: grid; grid-template-columns: 80px 1fr; gap: 20px; align-items: start; padding-top: 20px; }
.pane-inner { display: flex; flex-direction: column; }
.pane-inner .pane-body { margin-bottom: 0; }
#tab-cta { margin-top: 20px; display: block; background: var(--red); color: #fff; border-color: var(--red); }
#tab-cta:hover { background: #cc0000; border-color: #cc0000; color: #fff; }
.pane-number {
  font-family: var(--font-heading);
  font-size: 68px; font-weight: 700;
  color: var(--red); line-height: 1; opacity: 1;
}
.pane-title {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700;
  text-transform: uppercase; color: #000; margin-bottom: 8px;
}
.pane-body {
  font-family: var(--font-body);
  font-size: 17px; font-weight: 300;
  color: #222; line-height: 1.7; margin-bottom: 14px;
}

/* ================================================================
   SECTION 4  -  RANKINGI (off-white)
================================================================ */
.rankings { background: var(--white); padding: 64px 0; }
/* Dedicated heading class  -  must be dark (#0a0a0a) on #f5f5f5 background */
.rankings-heading {
  font-family: var(--font-heading);
  font-size: 30px; font-weight: 700;
  text-transform: uppercase;
  color: #0a0a0a;
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.rank-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 20px; margin-bottom: 20px; }
.rank-card { background: var(--white); border: 0.5px solid #e8e8e8; border-radius: 2px; padding: 13px; }
.rank-num { font-family: var(--font-heading); font-size: 20px; font-weight: 700; line-height: 1; }
.rank-num.first { color: var(--red); }
.rank-num.other { color: #555; }
.rank-avatar { width: 28px; height: 28px; border-radius: 50%; background: #f0f0f0; margin: 5px 0; }
.rank-name { font-family: var(--font-heading); font-size: 19px; font-weight: 600; text-transform: uppercase; color: #0a0a0a; letter-spacing: 0.03em; line-height: 1.2; }
.rank-cat { font-family: var(--font-heading); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-top: 2px; }

/* ── Ranking list  -  1:1 mobile design ───────────────────────── */
.rank-list { margin: 20px 0 28px; }
.rank-row {
  display: flex; align-items: center;
  background: #fff; padding: 10px; margin-bottom: 5px;
  transition: background 0.15s; cursor: pointer;
}
.rank-row:hover { background: #ebebeb; }
.rank-row-num {
  width: 44px; flex-shrink: 0; display: flex;
  align-items: baseline; margin-right: 8px;
}
.rank-hash { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--red); line-height: 1; }
.rank-n { font-family: var(--font-heading); font-size: 20px; font-weight: 900; color: #0a0a0a; line-height: 1; }
.rank-row-info { flex: 1; min-width: 0; }
.rank-row-name { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #0a0a0a; text-transform: uppercase; line-height: 1.2; }
.rank-row-cat { font-family: var(--font-heading); font-size: 13px; font-weight: 600; color: #666; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.rank-row-action { width: 32px; flex-shrink: 0; display: flex; justify-content: flex-end; }
.rank-info-btn { background: none; border: none; cursor: pointer; color: #888; font-size: 20px; padding: 4px; transition: color 0.15s; display: flex; align-items: center; }
.rank-info-btn:hover { color: #0a0a0a; }

/* ================================================================
   SECTION 5  -  WALKI (dark)
================================================================ */
.fights { background: #f5f5f5; padding: 64px 0; }
.fights-ticker { overflow: hidden; margin-top: 28px; cursor: grab; }
.fights-ticker:active { cursor: grabbing; }
@keyframes fights-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fights-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: fights-scroll 18s linear infinite;
}
.fights-ticker:hover .fights-track { animation-play-state: paused; }
.fights-track .fight-card { flex: 0 0 340px; width: 340px; }

/* ── Fight card  -  1:1 mobile design ─────────────────────────── */
.fight-card {
  position: relative; border-radius: 6px; cursor: pointer;
  display: block; text-decoration: none;
}
.fight-card-body {
  border-radius: 6px; background: #000; overflow: hidden;
}
.fight-top {
  position: relative; height: 80px; background: #000; overflow: hidden;
}
.fight-split-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, #1B1B1B, #0E0E0E);
  clip-path: polygon(58% 0%, 100% 0%, 100% 100%, 42% 100%);
}
.fight-names-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: flex-start;
  justify-content: space-between; padding: 12px 16px 0;
}
.fight-fighter { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.fight-fighter.right { text-align: right; }
.fighter-first {
  font-family: var(--font-heading); font-size: 16px; font-weight: 400;
  color: #fff; text-transform: uppercase; line-height: 1.2;
}
.fighter-last {
  font-family: var(--font-heading); font-size: 22px; font-weight: 700;
  color: #fff; text-transform: uppercase; line-height: 1.2; margin-top: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fight-vs {
  position: absolute; left: 50%; top: 28px; transform: translateX(-50%);
  font-family: var(--font-heading); font-size: 18px; font-weight: 400; color: #fff;
  pointer-events: none;
}
.fight-bottom {
  height: 48px; background: #1B1B1B; border-radius: 0 0 4px 4px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 12px;
}
.fight-details {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 16px; font-weight: 400;
  color: #C5C5C5; min-width: 0; overflow: hidden;
}
.fight-info-icon { font-size: 18px; color: #C5C5C5; flex-shrink: 0; }
.fight-votes {
  display: flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 10px;
  background: #1B1B1B; border: 1px solid #4D4D4D;
  border-radius: 7px; flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.vote-icon { color: var(--red); font-size: 20px; }
.vote-count { font-family: var(--font-heading); font-size: 18px; font-weight: 400; color: #fff; }
.fight-hover-border {
  position: absolute; inset: 0; border-radius: 6px;
  pointer-events: none; opacity: 0;
  background: linear-gradient(to top, #FF0000 0%, transparent 75%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px; transition: opacity 0.15s;
}
.fight-card:hover .fight-hover-border { opacity: 1; }
.fight-card:hover .fight-votes { background: #000; border-color: transparent; }

/* ================================================================
   SECTION 6  -  DLA ZAWODNIKOW (black)
================================================================ */
.for-fighters { background: var(--black); padding: 64px 0; }
.fighters-quote {
  border-left: 2px solid var(--red); padding-left: 16px; margin: 16px 0;
  font-family: var(--font-body); font-size: 19px; font-weight: 400;
  color: #aaa; font-style: italic; line-height: 1.75;
}
.fighters-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 0.5px solid var(--border); margin-top: 18px;
}
.step-col { padding: 16px 14px; border-right: 0.5px solid var(--border); }
.step-col:last-child { border-right: none; }
.step-num {
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 700;
  color: #FF0000;
  margin-bottom: 8px; line-height: 1;
}
.step-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 4px; }
.step-body { font-family: var(--font-body); font-size: 17px; font-weight: 300; color: #aaa; line-height: 1.55; }
.fighters-cta { margin-top: 20px; }
.fights-cta { margin-top: 16px; }
.fights-cta .btn-ghost { color: #333; border: 0.5px solid #555; }
.fights-cta .btn-ghost:hover { border: 1.5px solid var(--red); color: var(--red); }

/* ================================================================
   SECTION 7  -  JEDNA PLATFORMA (off-white, scrollable)
================================================================ */
.how-works { background: #f5f5f5; padding: 64px 0; }

/* ── Eyebrow bar: line  -  text  -  line  -  circle ── */
.how-ebar {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 32px;
}
.how-ebar-line { height: 1px; background: #FF0000; flex-shrink: 0; }
.how-ebar-left  { width: 60px; }
.how-ebar-right { flex: 1; }
.how-ebar-text {
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: #666;
  white-space: nowrap; flex-shrink: 0;
}
.how-ebar-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid #FF0000; flex-shrink: 0;
}

/* ── Main headline ── */
.how-headline { margin-bottom: 16px; }
.how-headline-black {
  font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 900; text-transform: uppercase; color: #0a0a0a;
  line-height: 0.95; letter-spacing: -0.02em;
}
.how-headline-red {
  font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 900; text-transform: uppercase; color: #FF0000;
  line-height: 0.95; letter-spacing: -0.02em;
}
.how-sub {
  font-family: var(--font-body); font-size: 16px; font-weight: 400;
  color: #555; line-height: 1.6; margin-bottom: 40px; max-width: 520px;
}

.how-cols-wrap {
  margin-top: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  border-top: 0.5px solid #e0e0e0;
}
.how-cols-wrap::-webkit-scrollbar { display: none; }
.how-cols {
  display: flex;
  min-width: max-content;
}
.how-col { width: 260px; flex-shrink: 0; padding: 28px 24px; border-right: 0.5px solid #e0e0e0; display: flex; flex-direction: column; }
.how-col:last-child { border-right: none; }
.how-col-icon { font-size: 28px; color: #FF0000; margin-bottom: 14px; line-height: 1; }
.how-col-role {
  font-family: var(--font-heading); font-size: 34px; font-weight: 700;
  text-transform: uppercase; color: #0a0a0a;
  letter-spacing: 0.02em; line-height: 1; margin-bottom: 16px;
}
.how-col-rule { display: none; }
.how-steps { position: relative; }

/* Line: starts at height 0, grows to --line-height when .in-view is added */
.how-steps-line {
  position: absolute; left: 1px; width: 1px;
  height: 0;
  background: #FF0000;
  pointer-events: none;
  transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.how-steps.in-view .how-steps-line {
  height: var(--line-height, 0px);
}

/* Dots: dim by default, light up when line reaches them */
.how-step-bullet {
  opacity: 0.2;
  transform: scale(0.7);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  position: relative; z-index: 1;
}
.how-steps.in-view .how-step-bullet {
  animation: bulletIgnite 0.45s ease var(--bullet-delay, 0s) both;
}
@keyframes bulletIgnite {
  0%   { opacity: 0.2; transform: scale(0.7); box-shadow: none; }
  55%  { opacity: 1;   transform: scale(1.7); box-shadow: 0 0 10px 3px rgba(255,0,0,0.55); }
  100% { opacity: 1;   transform: scale(1);   box-shadow: 0 0 4px 1px rgba(255,0,0,0.25); }
}
.how-step { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.how-step-bullet {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; margin-top: 6px;
}
.how-step-content { flex: 1; }
.how-step-num { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: #0a0a0a; line-height: 1; margin-bottom: 2px; }
.how-step-title { font-family: var(--font-heading); font-size: 15px; font-weight: 700; text-transform: uppercase; color: #0a0a0a; letter-spacing: 0.05em; line-height: 1.2; }
.how-step-body { font-family: var(--font-body); font-size: 14px; font-weight: 400; color: #666; line-height: 1.55; margin-top: 5px; }
.how-col-link { font-family: var(--font-heading); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); display: block; margin-top: auto; padding-top: 20px; transition: opacity 0.15s; }
.how-col-link:hover { opacity: 0.75; }

/* ================================================================
   SECTION 8  -  GALE
================================================================ */
.events { background: var(--bg); padding: 64px 0; overflow: hidden; }
.event-list {
  display: flex; flex-direction: row; gap: 14px; margin-top: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 4px 24px 16px;
}
.event-list::-webkit-scrollbar { display: none; }
.event-card {
  flex-shrink: 0; width: 260px; text-decoration: none; cursor: pointer;
  background: var(--card); border: 0.5px solid var(--border);
  border-top: 2px solid var(--red); border-radius: 4px;
  display: flex; flex-direction: column;
  scroll-snap-align: start;
  transition: border-color 0.2s, transform 0.2s;
}
.event-card:hover { transform: translateY(-2px); }
.event-card-top { padding: 18px 18px 0; flex: 1; }
.event-card-mid { padding: 14px 18px 18px; }
.event-cd-label { font-family: var(--font-heading); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #555; margin-bottom: 8px; }
.event-date { font-family: var(--font-heading); font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #555; margin-bottom: 6px; }
.event-name { font-family: var(--font-heading); font-size: 19px; font-weight: 700; text-transform: uppercase; color: #fff; letter-spacing: 0.02em; line-height: 1.2; }
.event-countdown { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 0.05em; white-space: nowrap; }
.event-card-btns { display: flex; border-top: 0.5px solid var(--border); height: 52px; }
.btn-ppv { flex: 1; font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: transparent; color: var(--white); border: none; border-bottom: 2px solid var(--red); cursor: pointer; transition: background 0.15s, color 0.15s; }
.btn-ppv:hover { background: var(--red); color: var(--white); }
.btn-ticket { flex: 1; font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: #111; color: #fff; border: none; border-left: 0.5px solid var(--border); cursor: pointer; transition: background 0.15s; }
.btn-ticket:hover { background: #222; }

/* ================================================================
   SECTION 9  -  STATS MID
================================================================ */
.stats-mid {
  background: var(--black); padding: 48px 24px;
  border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border);
  display: flex; justify-content: center; gap: 60px;
}
.stat-mid-num { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-mid-label { font-family: var(--font-heading); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #555; margin-top: 6px; display: block; }
/* stats inside final-cta  -  no outer borders, top margin only */
.stats-mid-final { border: none; border-top: 0.5px solid rgba(255,255,255,0.08); margin-top: 40px; padding: 40px 0 0; background: transparent; }

/* ================================================================
   SECTION 10  -  FAQ
================================================================ */
.faq { background: var(--off-white); padding: 64px 0; }
.faq-list { margin-top: 20px; }
.faq-item { border-bottom: 0.5px solid #e8e8e8; }
.faq-item:first-child { border-top: 0.5px solid #e8e8e8; }
.faq-header { display: flex; align-items: center; gap: 12px; padding: 13px 0; cursor: pointer; user-select: none; }
.heading-bar { border-left: 3px solid var(--red); padding-left: 14px; }
.faq-number { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--red); min-width: 28px; transition: color 0.2s; }
.faq-question { flex: 1; font-family: var(--font-heading); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #0a0a0a; transition: color 0.2s; }
.faq-plus { width: 18px; height: 18px; border: 0.5px solid #ddd; border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: #aaa; flex-shrink: 0; transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s; }
.faq-answer { display: none; font-family: var(--font-body); font-size: 16px; font-weight: 300; color: #666; line-height: 1.65; border-left: 0.5px solid #ddd; padding: 8px 12px; margin-bottom: 12px; }
.faq-item.active .faq-number { color: #ccc; }
.faq-item.active .faq-question { color: #555; }
.faq-item.active .faq-plus { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-item.active .faq-answer { display: block; }

/* ================================================================
   SECTION 11  -  WHITE STRIP CTA
================================================================ */
.white-strip {
  background: var(--white); padding: 24px 24px;
  border-top: 0.5px solid var(--red); /* ONE red line, top only */
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.strip-heading {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700; text-transform: uppercase;
  color: #0a0a0a; letter-spacing: -0.01em; margin-bottom: 4px;
}
.strip-sub { font-family: var(--font-body); font-size: 15px; font-weight: 300; color: #888; }
.strip-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ================================================================
   SECTION 12  -  FINAL CTA
================================================================ */
.final-cta { background: var(--black); padding: 64px 0; text-align: center; }
.final-logo-wrap { display: flex; justify-content: center; margin-bottom: 20px; }
.final-heading { font-family: var(--font-heading); font-size: 40px; font-weight: 700; text-transform: uppercase; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 22px; }
.final-heading .red { color: var(--red); }
.final-roles { display: flex; justify-content: center; align-items: center; margin-bottom: 28px; }
.role-item {
  position: relative; font-family: var(--font-heading);
  font-size: 15px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #888; padding: 0 14px;
  transition: color 0.15s;
}
.role-item:hover { color: #FF0000; }
.role-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 12px;
  background: #FF0000;
}
.final-btns { display: flex; align-items: center; justify-content: center; gap: 10px; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--black); border-top: 0.5px solid #111;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-logo .logo-wm { font-size: 15px; }
.footer-logo .logo-sig .s1 { width: 3px; height: 6px; }
.footer-logo .logo-sig .s2 { width: 3px; height: 9px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-family: var(--font-heading); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #777; transition: color 0.15s; }
.footer-links a:hover { color: #bbb; }
.footer-copy { font-family: var(--font-body); font-size: 14px; color: #777; }

/* ================================================================
   FIGHT CARD  -  vote percentage bar
================================================================ */
.fight-vote-wrap {
  padding: 0 12px 0;
  background: #1B1B1B;
}
.fight-vote-track {
  height: 3px; background: rgba(255,255,255,0.08);
  border-radius: 2px; position: relative; overflow: hidden;
}
.fight-vote-left {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--red); border-radius: 2px 0 0 2px;
  transition: width 0.8s ease;
}
.fight-vote-right {
  position: absolute; right: 0; top: 0; bottom: 0;
  background: rgba(255,255,255,0.25); border-radius: 0 2px 2px 0;
  transition: width 0.8s ease;
}
.fight-vote-pcts {
  display: flex; justify-content: space-between; padding: 5px 0 8px;
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  color: #666;
}
.fight-vote-pcts .pct-left { color: var(--red); }

/* ================================================================
   RANKINGS  -  avatar + rank change + search + filter
================================================================ */
.rank-search-wrap {
  position: relative; display: flex; gap: 8px; margin-bottom: 14px;
}
.rank-search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: #999; font-size: 20px; pointer-events: none;
}
.rank-search-input {
  flex: 1; height: 44px;
  background: #fff; border: 1px solid #d0d0d0; border-radius: 4px;
  padding: 0 12px 0 40px;
  font-family: var(--font-heading); font-size: 17px; color: #0a0a0a;
  outline: none; transition: border-color 0.15s;
}
.rank-search-input:focus { border-color: var(--red); }
.rank-search-input::placeholder { color: #999; }
.rank-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
}
.rank-filter-btn {
  height: 36px; padding: 0 16px; border-radius: 4px;
  font-family: var(--font-heading); font-size: 15px; font-weight: 600;
  cursor: pointer; border: 1px solid #d0d0d0;
  background: #f5f5f5; color: #0a0a0a;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.rank-filter-btn.active { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.rank-filter-btn:hover:not(.active) { border-color: var(--red); }

.rank-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #e8e8e8; border: 1.5px solid #d0d0d0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  color: #666; flex-shrink: 0; margin-right: 12px;
}
.rank-change {
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  min-width: 30px; text-align: right; flex-shrink: 0; margin-right: 4px; letter-spacing: 0.04em;
}
.rank-change.up { color: #16a34a; }
.rank-change.dn { color: var(--red); }
.rank-change.eq { color: #bbb; }

/* ================================================================
   NEWS SECTION
================================================================ */
.news { background: var(--white); padding: 64px 0; }
.news-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 28px;
}
.news-secondary { display: flex; flex-direction: column; gap: 16px; }
.news-card {
  display: block; text-decoration: none;
  position: relative; overflow: hidden;
  border-radius: 6px; background: #f5f5f5;
  border: 0.5px solid #e0e0e0;
  transition: transform 0.2s, border-color 0.2s;
}
.news-card:hover { transform: translateY(-3px); border-color: var(--red); }
.news-card-img {
  width: 100%; display: block; object-fit: cover;
  filter: brightness(0.9); transition: filter 0.25s;
}
.news-card:hover .news-card-img { filter: brightness(1); }
.news-featured .news-card-img { height: 280px; }
.news-card:not(.news-featured) .news-card-img { height: 130px; }
.news-card-body { padding: 14px 16px; }
.news-date {
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  color: var(--red); letter-spacing: 0.1em; text-transform: uppercase;
}
.news-title {
  font-family: var(--font-heading); font-size: 17px; font-weight: 700;
  color: #111; text-transform: uppercase; line-height: 1.3; margin-top: 5px;
}
.news-featured .news-title { font-size: 20px; }
.news-tag {
  display: inline-block;
  font-family: var(--font-heading); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #666; margin-bottom: 4px;
}

/* ================================================================
   MICRO-INTERACTIONS + SCROLL REVEAL
================================================================ */
.fight-card { transition: transform 0.2s; }
.fight-card:hover { transform: translateY(-3px); }
.btn { transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s; }
.btn-primary:hover { transform: scale(1.02); }
.btn-outline:hover { transform: scale(1.02); }
.btn-add-profile { transition: transform 0.15s, border 0.2s, color 0.2s; }
.btn-add-profile:hover { transform: scale(1.01); }

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .how-cols { grid-template-columns: repeat(3, 1fr); }
  .how-col:nth-child(4), .how-col:nth-child(5) { border-top: 0.5px solid #e8e8e8; }
}
@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .what-is-grid { grid-template-columns: 1fr; }
  .rank-grid { grid-template-columns: repeat(2, 1fr); }
  .fights-track .fight-card { flex: 0 0 280px; width: 280px; }
  .fighters-steps { grid-template-columns: 1fr 1fr; }
  .step-col:nth-child(5) { grid-column: 1 / -1; border-right: none; border-top: 0.5px solid var(--border); }
  .how-cols { grid-template-columns: 1fr 1fr; }
  .how-col:nth-child(5) { grid-column: 1 / -1; border-right: none; border-top: 0.5px solid #e8e8e8; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .white-strip { flex-direction: column; align-items: flex-start; }
  .final-roles { flex-wrap: wrap; gap: 8px; }
  .footer { flex-direction: column; align-items: flex-start; }
  .event-card { width: 240px; }
  .stats-mid { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 480px) {
  .rank-grid { grid-template-columns: 1fr 1fr; }
  .fighters-steps { grid-template-columns: 1fr; }
  .step-col { border-right: none; border-bottom: 0.5px solid var(--border); }
  .how-cols { grid-template-columns: 1fr; }
  .how-col { border-right: none; border-top: 0.5px solid #e8e8e8; }
  .how-col:first-child { border-top: none; }
  .final-heading { font-size: 30px; }
  .section-heading { font-size: 40px; }
  .hero-stats { gap: 20px; }
  .nav { padding: 0 12px; }
  .nav-actions { gap: 6px; }
  .btn-sm { padding: 0 12px; font-size: 12px; }
}
