:root {
  --bg-0: #090909;
  --bg-1: #0f0f11;
  --bg-2: #151518;
  --bg-3: #1c1c20;
  --bg-4: #232329;

  --border: rgba(255, 255, 255, 0.065);
  --border-md: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.14);

  --text-1: #f0f0eb;
  --text-2: #8a8a96;
  --text-3: #52525e;

  --red: #c4192c;
  --red-hover: #d41f33;
  --red-dim: rgba(196, 24, 44, 0.12);
  --red-border: rgba(196, 24, 44, 0.22);
  --red-text: #e07080;

  --gold: #c89030;
  --gold-dim: rgba(200, 144, 48, 0.1);
  --gold-border: rgba(200, 144, 48, 0.2);

  --r-sm: 8px;
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.35);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.55);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    system-ui,
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img,
svg {
  display: block;
}
button {
  cursor: pointer;
  font: inherit;
}
input {
  font: inherit;
}

/* ─── Layout helpers ─────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
.display {
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
}
.heading-xl {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.heading-lg {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  border: none;
  white-space: nowrap;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 18px rgba(196, 24, 44, 0.28);
}
.btn-primary:hover {
  background: var(--red-hover);
  box-shadow: 0 6px 28px rgba(196, 24, 44, 0.42);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-1);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* ─── Reveal animations ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}
.reveal-d4 {
  transition-delay: 0.32s;
}

/* ═══════════════════════════════════════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--red);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg {
  width: 16px;
  height: 16px;
}
.nav-logo-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all 0.18s;
}
.nav-links a:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.055);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-actions .btn {
  padding: 9px 18px;
  font-size: 13px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--bg-1);
  padding: 88px 24px 32px;
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu-links a {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-1);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-actions .btn {
  justify-content: center;
  padding: 15px;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse 90% 80% at 40% 50%,
    black 20%,
    transparent 85%
  );
  animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 56px 56px;
  }
}

.hero-glow-red {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 24, 44, 0.1) 0%,
    transparent 65%
  );
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.hero-glow-gold {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 144, 48, 0.07) 0%,
    transparent 65%
  );
  bottom: 50px;
  left: -80px;
  pointer-events: none;
}

/* ─── Telemetry line background ──────────────────────────────────────────── */
.hero-circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
}
.c-line {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-circuit 2.8s var(--ease) forwards;
}
.c-line-1 {
  stroke: rgba(196, 24, 44, 0.4);
  stroke-width: 1.5;
  animation-delay: 0.3s;
}
.c-line-2 {
  stroke: rgba(196, 24, 44, 0.14);
  stroke-width: 1;
  animation-delay: 0.55s;
}
.c-line-3 {
  stroke: rgba(200, 144, 48, 0.12);
  stroke-width: 1;
  animation-delay: 0.75s;
}
.c-line-4 {
  stroke: rgba(196, 24, 44, 0.06);
  stroke-width: 3;
  animation-delay: 0.9s;
}
.c-tick {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw-circuit 1s var(--ease) forwards;
}
@keyframes draw-circuit {
  to {
    stroke-dashoffset: 0;
  }
}

/* Moving telemetry dot */
.hero-racing-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(196, 24, 44, 0.85);
  pointer-events: none;
  offset-path: path(
    "M 100 700 C 200 610 310 530 420 450 C 510 380 570 330 670 270 C 760 215 840 170 1000 110"
  );
  offset-distance: 0%;
  animation: dot-trace 8s linear infinite 1.8s;
}
.hero-racing-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(196, 24, 44, 0.2);
  animation: dot-pulse 1.1s ease infinite;
}
@keyframes dot-trace {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}
@keyframes dot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.3;
  }
}

/* ─── Hero two-column layout ────────────────────────────────────────────── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 24, 44, 0.08);
  border: 1px solid var(--red-border);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--red-text);
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-headline {
  margin-bottom: 20px;
}
.hero-headline .accent {
  color: var(--red);
}

.hero-sub {
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-2);
  margin-bottom: 14px;
}

/* Feature list below sub */
.hero-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 36px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-3);
}
.hf-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Hero signals (product-driven bottom row) ───────────────────────────── */
.hero-signals {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  gap: 0;
}
.hero-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid var(--border);
}
.hero-signal:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.hs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hs-dot-red {
  background: var(--red);
  animation: blink 2s ease infinite;
}
.hs-dot-gold {
  background: var(--gold);
  animation: blink 2.5s ease infinite 0.5s;
}
.hs-dot-dim {
  background: var(--text-3);
}
.hs-label {
  font-size: 10px;
  color: var(--text-3);
  display: block;
  margin-bottom: 2px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hs-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}

/* ─── Hero right: floating product card stack ────────────────────────────── */
.hero-right {
  position: relative;
  height: 460px;
  opacity: 0;
  transform: translateX(18px);
  animation: hero-right-in 0.9s 0.4s var(--ease) forwards;
}
@keyframes hero-right-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Soft stage glow behind the cards */
.hero-right-glow {
  position: absolute;
  inset: -80px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 80% 70% at 55% 50%,
    rgba(14, 14, 20, 0.9) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Shared card glass base */
.hc-card {
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(17, 17, 21, 0.92);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.088);
  border-radius: var(--r-xl);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.56),
    0 2px 0 rgba(255, 255, 255, 0.05) inset;
  padding: 18px 20px;
  z-index: 1;
}
.hc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.11),
    transparent
  );
}

/* Plan card position & float */
.hc-plan {
  top: 0;
  transform: rotate(-1.2deg);
  animation: hcf-1 7s ease-in-out infinite;
}
@keyframes hcf-1 {
  0%,
  100% {
    transform: rotate(-1.2deg) translateY(0);
  }
  50% {
    transform: rotate(-1.2deg) translateY(-7px);
  }
}

/* Event card position & float */
.hc-event {
  top: 165px;
  left: 22px;
  right: -16px;
  transform: rotate(0.9deg);
  animation: hcf-2 8s ease-in-out infinite;
  animation-delay: -2.4s;
}
@keyframes hcf-2 {
  0%,
  100% {
    transform: rotate(0.9deg) translateY(0);
  }
  50% {
    transform: rotate(0.9deg) translateY(-9px);
  }
}

/* Profile card position & float */
.hc-profile-card {
  top: 326px;
  left: 8px;
  right: 10px;
  transform: rotate(-0.4deg);
  animation: hcf-3 6.5s ease-in-out infinite;
  animation-delay: -4.8s;
}
@keyframes hcf-3 {
  0%,
  100% {
    transform: rotate(-0.4deg) translateY(0);
  }
  50% {
    transform: rotate(-0.4deg) translateY(-6px);
  }
}

/* ── Plan card internals ── */
.hcp-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.hcp-av {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), #7a0016);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}
.hcp-type {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hcp-club {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  margin-top: 1px;
}
.hcp-badge {
  margin-left: auto;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(40, 190, 80, 0.1);
  border: 1px solid rgba(40, 190, 80, 0.2);
  color: #4dd878;
}
.hcp-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.hcp-meta {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 12px;
}
.hcp-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.hcp-avs {
  display: flex;
}
.hcp-av-sm {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 17, 21, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 700;
  margin-left: -5px;
}
.hcp-av-sm:first-child {
  margin-left: 0;
}
.av-a {
  background: linear-gradient(135deg, #4a90d4, #2a60a4);
}
.av-b {
  background: linear-gradient(135deg, #8a4ac8, #5a2a98);
}
.av-c {
  background: linear-gradient(135deg, var(--gold), #906010);
}
.av-d {
  background: linear-gradient(135deg, #4aa870, #2a7840);
}
.av-e {
  background: var(--bg-4);
  color: var(--text-3);
  font-size: 9px;
}
.hcp-count {
  font-size: 12px;
  color: var(--text-2);
}
.hcp-track-chip {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
}
.hcp-track-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* ── Event card internals ── */
.hce-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.hce-badge {
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
}
.hce-countdown {
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
}
.hce-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 2px;
}
.hce-round {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 11px;
}
.hce-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.hce-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-3);
}
.hce-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-3);
}

/* ── Profile card internals ── */
.hcpr-hdr {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px;
}
.hcpr-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), #7a0016);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  border: 2px solid rgba(196, 24, 44, 0.22);
}
.hcpr-name {
  font-size: 13px;
  font-weight: 700;
}
.hcpr-handle {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 1px;
}
.hcpr-num {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #000;
}
.hcpr-stats {
  display: flex;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 11px;
}
.hcpr-stat {
  flex: 1;
  padding: 7px 6px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hcpr-stat:last-child {
  border-right: none;
}
.hcpr-sv {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hcpr-sl {
  font-size: 9px;
  color: var(--text-3);
  margin-top: 1px;
}
.hcpr-sess {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hcpr-bar {
  width: 2px;
  height: 18px;
  border-radius: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.hcpr-track {
  font-size: 11px;
  font-weight: 600;
  flex: 1;
}
.hcpr-date {
  font-size: 10px;
  color: var(--text-3);
}
.hcpr-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  font-variant-numeric: tabular-nums;
}

/* ─── Hero responsive ───────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
       PROOF STRIP
    ═══════════════════════════════════════════════════════════════════════════ */
.proof {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}
.proof-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}
.proof-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.18s;
}
.proof-logo:hover {
  color: var(--text-2);
}
.proof-logo-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
       SECTION HEADER
    ═══════════════════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 60px;
}
.section-header .overline {
  margin-bottom: 14px;
  display: block;
}
.section-header h2 {
  margin-bottom: 14px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
       VALUE CARDS
    ═══════════════════════════════════════════════════════════════════════════ */
.value-section {
  background: var(--bg-1);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.value-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.value-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.09),
    transparent
  );
  opacity: 0;
  transition: opacity 0.25s;
}
.value-card:hover {
  border-color: var(--border-md);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-card:hover::after {
  opacity: 1;
}

.value-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  color: var(--red-text);
}
.value-card:nth-child(even) .value-icon {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold);
}
.value-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 9px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
}

/* ═══════════════════════════════════════════════════════════════════════════
       HOW IT WORKS
    ═══════════════════════════════════════════════════════════════════════════ */
.how-section {
  background: var(--bg-0);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  margin-top: 60px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--red) 0%,
    var(--gold) 50%,
    rgba(255, 255, 255, 0.06) 100%
  );
  opacity: 0.35;
}
.step {
  text-align: center;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-3);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.step:nth-child(1) .step-num {
  border-color: var(--red-border);
  color: var(--red-text);
  background: var(--red-dim);
}
.step:nth-child(2) .step-num {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-dim);
}
.step:nth-child(3) .step-num {
  border-color: var(--border-md);
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.04);
}
.step h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════
       FEATURE SHOWCASE
    ═══════════════════════════════════════════════════════════════════════════ */
.showcase-section {
  background: var(--bg-1);
  overflow: hidden;
}

.showcase-wrap {
  display: flex;
  gap: 24px;
  margin-top: 60px;
  align-items: flex-start;
}

/* Desktop browser mockup */
.mock-desktop {
  flex: 1;
  min-width: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mock-titlebar {
  height: 38px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}
.tc {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.tc-r {
  background: #ff5f57;
}
.tc-y {
  background: #febc2e;
}
.tc-g {
  background: #28c840;
}
.mock-url {
  flex: 1;
  height: 21px;
  background: var(--bg-4);
  border-radius: 5px;
  margin: 0 14px;
}
.mock-body {
  display: flex;
  height: 430px;
}

.mock-sidebar {
  width: 176px;
  background: var(--bg-3);
  border-right: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}
.msb-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.msb-mark {
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 5px;
  flex-shrink: 0;
}
.msb-txt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.msb-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  cursor: default;
}
.msb-item.active {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.05);
}
.msb-icon {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background: var(--bg-4);
  flex-shrink: 0;
}
.msb-item.active .msb-icon {
  background: var(--red);
}
.msb-section {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 16px 4px;
}

.mock-main {
  flex: 1;
  padding: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mock-main-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-main-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mock-tag {
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  background: var(--red-dim);
  color: var(--red-text);
  border: 1px solid var(--red-border);
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mock-stat {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 12px;
}
.mock-stat-v {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.mock-stat-l {
  font-size: 10px;
  color: var(--text-3);
  margin-top: 2px;
}
.mock-panel {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px;
  flex: 1;
}
.mock-panel-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mock-panel-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
}
.mock-nav-dots {
  display: flex;
  gap: 4px;
}
.mock-nav-dot {
  width: 18px;
  height: 16px;
  background: var(--bg-4);
  border-radius: 4px;
}
.mock-events {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-ev {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  background: var(--bg-4);
  border-radius: var(--r-sm);
  border-left: 2px solid var(--red);
}
.mock-ev:nth-child(2) {
  border-left-color: var(--gold);
}
.mock-ev:nth-child(3) {
  border-left-color: rgba(255, 255, 255, 0.15);
}
.mock-ev-info {
  flex: 1;
}
.mock-ev-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-1);
}
.mock-ev-sub {
  font-size: 10px;
  color: var(--text-3);
  margin-top: 1px;
}
.mock-ev-date {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
}

.mock-right {
  width: 148px;
  background: var(--bg-3);
  border-left: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.mock-driver-mini {
  text-align: center;
}
.mock-avatar-lg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin: 0 auto 8px;
  background: linear-gradient(135deg, var(--red), #7a0010);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.mock-dr-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-1);
}
.mock-dr-handle {
  font-size: 10px;
  color: var(--text-3);
  margin-top: 1px;
}
.mock-mini-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-mini-stat {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}
.mock-mini-stat span:first-child {
  color: var(--text-3);
}
.mock-mini-stat span:last-child {
  font-weight: 600;
  color: var(--text-1);
}
.mock-progress {
  height: 3px;
  background: var(--bg-4);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
}
.mock-progress-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
}
.mock-sub-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mock-activity-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-act-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
}
.mock-act-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mobile mockup */
.mock-mobile {
  width: 194px;
  flex-shrink: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  align-self: center;
}
.mob-notch {
  height: 26px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-pill {
  width: 56px;
  height: 5px;
  background: var(--bg-4);
  border-radius: 3px;
}
.mob-screen {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mob-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mob-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mob-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #7a0010);
}
.mob-search {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 7px 10px;
}
.mob-search-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--text-3);
  flex-shrink: 0;
}
.mob-search-txt {
  font-size: 10px;
  color: var(--text-3);
}
.mob-filters {
  display: flex;
  gap: 5px;
}
.mob-filter {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-3);
}
.mob-filter.active {
  background: var(--red-dim);
  border-color: var(--red-border);
  color: var(--red-text);
}
.mob-track-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 11px;
}
.mob-track-img {
  height: 56px;
  background: var(--bg-4);
  border-radius: var(--r-sm);
  margin-bottom: 9px;
  position: relative;
  overflow: hidden;
}
.mob-track-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 24, 44, 0.12), transparent);
}
.mob-track-img svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mob-track-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-1);
}
.mob-track-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
}
.mob-track-meta span {
  font-size: 9px;
  color: var(--text-3);
}
.mob-track-badge {
  padding: 2px 7px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
}
.mob-events {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mob-event {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.mob-ev-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.mob-event:nth-child(2) .mob-ev-dot {
  background: var(--gold);
}
.mob-ev-title {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-1);
  flex: 1;
}
.mob-ev-date {
  font-size: 9px;
  color: var(--text-3);
}
.mob-bottom {
  display: flex;
  justify-content: space-around;
  padding: 9px 0;
  border-top: 1px solid var(--border);
}
.mob-nav-it {
  width: 30px;
  height: 22px;
  background: var(--bg-3);
  border-radius: 4px;
}
.mob-nav-it.active {
  background: var(--red);
}

/* ═══════════════════════════════════════════════════════════════════════════
       CLUBS
    ═══════════════════════════════════════════════════════════════════════════ */
.clubs-section {
  background: var(--bg-0);
}
.clubs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 60px;
}
.clubs-copy h2 {
  margin-bottom: 18px;
}
.clubs-copy > p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 32px;
}
.clubs-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.clubs-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.clubs-feat-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-text);
  margin-top: 1px;
}
.clubs-feat h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}
.clubs-feat p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.55;
}

/* Club card */
.club-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cc-header {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 22px 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cc-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--red), #8a0018);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.cc-info {
  flex: 1;
}
.cc-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cc-location {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 3px;
}
.cc-badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  color: var(--red-text);
}
.cc-body {
  padding: 20px 22px;
}
.cc-members {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.cc-avatars {
  display: flex;
}
.cc-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--bg-2);
  background: var(--bg-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  margin-left: -7px;
}
.cc-av:first-child {
  margin-left: 0;
}
.cc-av-1 {
  background: linear-gradient(135deg, #4a90d4, #2a60a4);
}
.cc-av-2 {
  background: linear-gradient(135deg, #8a4ac8, #5a2a98);
}
.cc-av-3 {
  background: linear-gradient(135deg, var(--gold), #a06010);
}
.cc-av-4 {
  background: linear-gradient(135deg, #4aa870, #2a7840);
}
.cc-av-5 {
  background: var(--bg-4);
}
.cc-member-count {
  font-size: 13px;
  color: var(--text-2);
}
.cc-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.cc-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.cc-detail-label {
  color: var(--text-3);
}
.cc-detail-value {
  color: var(--text-1);
  font-weight: 500;
}
.cc-next-plan {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: var(--r-sm);
  margin-bottom: 18px;
}
.cc-plan-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.cc-plan-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--red-text);
  flex: 1;
}
.cc-plan-date {
  font-size: 11px;
  color: var(--red-text);
  opacity: 0.7;
}
.cc-activity-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.cc-activity-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cc-act-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
}
.cc-act-av {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-4);
  flex-shrink: 0;
}
.cc-act-av-1 {
  background: linear-gradient(135deg, #4a90d4, #2a60a4);
}
.cc-act-av-2 {
  background: linear-gradient(135deg, var(--gold), #a06010);
}
.cc-act-text {
  color: var(--text-2);
  flex: 1;
}
.cc-act-time {
  color: var(--text-3);
  font-size: 11px;
}

/* ═══════════════════════════════════════════════════════════════════════════
       EVENTS & TRACKS
    ═══════════════════════════════════════════════════════════════════════════ */
.events-section {
  background: var(--bg-1);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.event-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}
.event-card:hover {
  border-color: var(--border-md);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.event-card-img {
  height: 118px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-4));
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.event-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 24, 44, 0.18), transparent 60%);
}
.event-card:nth-child(2) .event-card-img::before {
  background: linear-gradient(
    135deg,
    rgba(200, 144, 48, 0.18),
    transparent 60%
  );
}
.event-card:nth-child(3) .event-card-img::before {
  background: linear-gradient(135deg, rgba(60, 80, 180, 0.12), transparent 60%);
}
.event-card-img svg {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.06;
}
.event-badge {
  position: relative;
  z-index: 1;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
}
.event-card:nth-child(2) .event-badge {
  background: var(--gold);
  color: #000;
}
.event-card:nth-child(3) .event-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-1);
  border: 1px solid var(--border);
}
.event-body {
  padding: 16px;
}
.event-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.event-track {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 14px;
}
.event-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.event-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-3);
}
.event-meta-icon {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

.tracks-block {
  margin-top: 48px;
}
.tracks-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.tracks-hdr h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.track-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.18s;
  cursor: pointer;
}
.track-item:hover {
  border-color: var(--border-md);
  background: var(--bg-3);
}
.track-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-3);
}
.track-info {
  flex: 1;
}
.track-name {
  font-size: 13px;
  font-weight: 600;
}
.track-meta {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
}
.track-sessions {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════════════════════════════════════
       PROFILE / IDENTITY
    ═══════════════════════════════════════════════════════════════════════════ */
.profile-section {
  background: var(--bg-0);
}
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.profile-copy h2 {
  margin-bottom: 18px;
}
.profile-copy > p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 32px;
}
.profile-pts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profile-pt {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
}
.pt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* Profile card */
.profile-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pc-banner {
  height: 96px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(196, 24, 44, 0.28) 0%,
    rgba(200, 144, 48, 0.14) 60%,
    transparent 100%
  );
}
.pc-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 18px 18px;
}
.pc-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(21, 21, 24, 0.8), transparent);
}
.pc-avatar {
  position: absolute;
  bottom: -28px;
  left: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #8a0018);
  border: 3px solid var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  z-index: 1;
}
.pc-num-badge {
  position: absolute;
  bottom: -28px;
  right: 22px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--gold);
  border: 2px solid var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #000;
}
.pc-body {
  padding: 42px 22px 22px;
}
.pc-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.pc-handle {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
  margin-bottom: 18px;
}
.pc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 20px;
}
.pc-stat {
  background: var(--bg-3);
  padding: 12px 6px;
  text-align: center;
}
.pc-stat-v {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.pc-stat-l {
  font-size: 9px;
  color: var(--text-3);
  margin-top: 2px;
}
.pc-section-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
}
.pc-track-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.pc-track-badge {
  padding: 4px 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-2);
}
.pc-sessions {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pc-session {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.pc-sess-bar {
  width: 3px;
  height: 26px;
  border-radius: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.pc-session:nth-child(2) .pc-sess-bar {
  background: var(--gold);
}
.pc-session:nth-child(3) .pc-sess-bar {
  background: rgba(255, 255, 255, 0.18);
}
.pc-sess-info {
  flex: 1;
}
.pc-sess-track {
  font-size: 12px;
  font-weight: 600;
}
.pc-sess-date {
  font-size: 10px;
  color: var(--text-3);
  margin-top: 1px;
}
.pc-sess-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════════════════════════════════════════
       CTA
    ═══════════════════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 24, 44, 0.09) 0%,
    transparent 65%
  );
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-inner .overline {
  margin-bottom: 18px;
  display: block;
}
.cta-inner h2 {
  margin-bottom: 14px;
}
.cta-inner > p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 18px;
}
.cta-input {
  flex: 1;
  padding: 13px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-1);
  font-size: 14px;
  outline: none;
  transition: border-color 0.18s;
}
.cta-input::placeholder {
  color: var(--text-3);
}
.cta-input:focus {
  border-color: var(--red-border);
}
.cta-note {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 32px;
}
.cta-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.cta-avs {
  display: flex;
}
.cta-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-1);
  margin-left: -8px;
}
.cta-av:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, var(--red), #7a0010);
}
.cta-av:nth-child(2) {
  background: linear-gradient(135deg, var(--gold), #906010);
}
.cta-av:nth-child(3) {
  background: linear-gradient(135deg, #3a6ab4, #2a4a84);
}
.cta-av:nth-child(4) {
  background: linear-gradient(135deg, #3a9848, #2a6830);
}
.cta-proof-text {
  font-size: 13px;
  color: var(--text-2);
}

/* ═══════════════════════════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.footer-logo-mark {
  width: 26px;
  height: 26px;
  background: var(--red);
  border-radius: 6px;
  flex-shrink: 0;
}
.footer-logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.footer-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 230px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.social-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
  cursor: pointer;
  color: var(--text-3);
}
.social-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-2);
  background: var(--bg-3);
}
.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-3);
  transition: color 0.18s;
}
.footer-links a:hover {
  color: var(--text-2);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-3);
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-3);
  transition: color 0.18s;
}
.footer-bottom-links a:hover {
  color: var(--text-2);
}
.lang-sel {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 11px;
  color: var(--text-3);
  cursor: pointer;
  transition: all 0.18s;
}
.lang-sel:hover {
  border-color: var(--border-hover);
  color: var(--text-2);
}

/* ═══════════════════════════════════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mock-right {
    display: none;
  }
  .showcase-wrap {
    flex-direction: column;
  }
  .mock-mobile {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .clubs-layout {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps::before {
    display: none;
  }
  .clubs-layout {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .tracks-grid {
    grid-template-columns: 1fr;
  }
  .profile-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .hero-signals {
    gap: 0;
  }
  .hero-signal {
    padding-right: 14px;
    margin-right: 14px;
  }
  .cta-form {
    flex-direction: column;
  }
  .pc-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .mock-body {
    flex-direction: column;
    height: auto;
  }
  .mock-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 4px;
    overflow-x: auto;
  }
  .msb-section {
    display: none;
  }
  .proof-logos {
    display: none;
  }
  .showcase-wrap {
    display: none;
  }
}
@media (max-width: 540px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-signals {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-signal {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
  .hero-badge {
    font-size: 11px;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition:
    color 0.15s,
    background 0.15s;
}
.site-nav a:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.055);
}
.site-nav a.active {
  color: var(--text-1);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  background: var(--red);
  color: #fff;
  border-radius: var(--r-sm);
  transition:
    background 0.15s,
    transform 0.15s;
  margin-left: 6px;
}
.nav-cta:hover {
  background: var(--red-hover);
  color: #fff;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-1);
  border-radius: 2px;
}

/* ─── Header ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s;
}
.site-header.scrolled {
  background: rgba(14, 14, 18, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 56px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-1);
  flex-shrink: 0;
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg {
  width: 14px;
  height: 14px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition:
    color 0.15s,
    background 0.15s;
}
.site-nav a:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.055);
}
.site-nav a.active {
  color: var(--text-1);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  background: var(--red);
  color: #fff;
  border-radius: var(--r-sm);
  transition:
    background 0.15s,
    transform 0.15s;
  margin-left: 6px;
}
.nav-cta:hover {
  background: var(--red-hover);
  color: #fff;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-1);
  border-radius: 2px;
}
/* ─── Sidebar region links ────────────────────────────────────────────── */
.side-region-body {
  padding: 10px 14px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.side-region-link {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all 0.15s;
}
.side-region-link:hover {
  border-color: var(--border-md);
  color: var(--text-1);
  background: var(--bg-3);
}
.filter-search {
  position: relative;
  max-width: 520px;
  margin-bottom: 16px;
}
.search-field {
  display: flex;
  align-items: center;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.search-field:focus-within {
  border-color: var(--red-bdr);
  box-shadow: 0 0 0 3px rgba(196, 24, 44, 0.1);
}
.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--text-3);
  flex-shrink: 0;
  pointer-events: none;
}
.search-field input {
  flex: 1;
  padding: 11px 12px 11px 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-1);
  font-size: 14px;
  font-family: inherit;
}
.search-field input::placeholder {
  color: var(--text-3);
}
.search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  flex-shrink: 0;
  transition: color 0.15s;
}
.search-clear:hover {
  color: var(--text-1);
}
.search-clear.visible {
  display: flex;
}
