/* ══ TOKENS ════════════════════════════════════════════════════════ */
:root {
  --plum: #3D1054;
  --purple: #6A1E9A;
  --violet: #9B5CC5;
  --lav: #C4A0D8;
  --petal: #EED8F6;
  --petal-d: #E2C6F0;
  --cream: #FBF8F2;
  --ivory: #F5F0E8;
  --white: #FFFFFF;
  --t1: #1A0A2E;
  --t2: #3D2860;
  --t3: #7A6590;
  --bdr: #E2D4EE;
  --shadow: rgba(61, 16, 84, .10);
  --r: 14px;
  --rg: 24px;
  --rs: 8px;
  --fs-xs: 11px;
  --fs-sm: 13px;
  --fs-base: 15px;
  --fs-md: 17px;
  --fs-lg: 22px;
  --fs-xl: 32px;
  --fs-2xl: 44px;
  --fs-3xl: 58px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--t2);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

/* ══ UTILITIES ═════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--white);
}

.section--plum {
  background: var(--plum);
}

.section--petal {
  background: var(--petal);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--violet);
  background: var(--petal);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.eyebrow i {
  font-size: 11px;
}

.section-title {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--t1);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: var(--fs-md);
  color: var(--t3);
  max-width: 560px;
  line-height: 1.65;
}

.section-head {
  margin-bottom: 52px;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-sub {
  margin: 0 auto;
}

.tag-basic {
  font-size: 10px;
  font-weight: 700;
  background: #EAF3DE;
  color: #3B6D11;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: .04em;
}

.tag-pro {
  font-size: 10px;
  font-weight: 700;
  background: var(--petal);
  color: var(--purple);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: .04em;
}

/* ══ BUTTONS ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 40px;
  font-size: var(--fs-sm);
  font-weight: 700;
  border: none;
  transition: all .2s;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
}

.btn-primary:hover {
  background: var(--plum);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(106, 30, 154, .3);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-outline:hover {
  background: var(--petal);
}

.btn-white {
  background: #fff;
  color: var(--purple);
}

.btn-white:hover {
  background: var(--petal);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 34px;
  font-size: var(--fs-base);
  border-radius: 50px;
}

/* ══ NAV ════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bdr);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
}

.nav__logo-club {
  font-size: 24px;
  font-weight: 800;
  color: var(--plum);
  line-height: 1;
}

.nav__logo-io {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--violet), var(--lav));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__logo-tag {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: var(--t3);
  letter-spacing: .05em;
  margin-top: -1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--t2);
  transition: color .15s;
}

.nav__links a:hover {
  color: var(--purple);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__cta {
  padding: 9px 20px;
  font-size: var(--fs-sm);
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--plum);
  font-size: 20px;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--bdr);
  background: rgba(251, 248, 242, .98);
}

.nav__mobile a {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--t2);
  padding: 10px 0;
  border-bottom: 1px solid var(--bdr);
}

.nav__mobile .btn {
  margin-top: 12px;
  justify-content: center;
}

/* ══ HERO ═══════════════════════════════════════════════════════════ */
.hero {
  padding: 80px 0 60px;
  overflow: hidden;
  background-color: #3c154e;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__kicker {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #d5c6e8;
  margin-bottom: 16px;
}

.hero__h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero__h1 span {
  background: linear-gradient(135deg, var(--violet), var(--lav));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--violet);
}

.hero__p {
  font-size: var(--fs-md);
  color: #d5c6e8;
  margin-bottom: 14px;
  max-width: 460px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 32px;
}

.hero__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__actions {
  margin-top: 24px;
}

.hero__stores {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero__store {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background: #000000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: var(--fs-xs);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 165px;
}

.hero__store i {
  font-size: 18px;
}

.hero__store-text small {
  display: block;
  font-size: 9px;
  opacity: .7;
  line-height: 1;
}

.hero__store-text strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.hero__store:hover {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Orbit visual */
.orbit-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #f2be42;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 0 12px rgba(242, 190, 66, 0.15), 0 0 0 24px rgba(242, 190, 66, 0.08);
  text-align: center;
}

.orbit-center span {
  font-size: 16px;
  font-weight: 800;
  color: #1a0a2e;
  line-height: 1.25;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
}

.orbit-ring-1 {
  width: 50%;
  height: 50%;
  animation: orbit-r1 15s linear infinite;
}

.orbit-ring-2 {
  width: 82%;
  height: 82%;
  animation: orbit-r2 25s linear infinite reverse;
}

.orbit-dot {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s;
  overflow: hidden;
}

.orbit-dot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Dots rotation so they remain upright */
.orbit-ring-1 .orbit-dot {
  animation: counter-orbit-r1 15s linear infinite;
}

.orbit-ring-2 .orbit-dot {
  animation: counter-orbit-r2 25s linear infinite;
}

/* Position dots on Ring 1 (Inner, 3 dots) */
.dot-r1-1 { top: 0%; left: 50%; }
.dot-r1-2 { top: 75%; left: 93.3%; }
.dot-r1-3 { top: 75%; left: 6.7%; }

/* Position dots on Ring 2 (Outer, 6 dots) */
.dot-r2-1 { top: 0%; left: 50%; }
.dot-r2-2 { top: 25%; left: 93.3%; }
.dot-r2-3 { top: 75%; left: 93.3%; }
.dot-r2-4 { top: 100%; left: 50%; }
.dot-r2-5 { top: 75%; left: 6.7%; }
.dot-r2-6 { top: 25%; left: 6.7%; }

@keyframes orbit-r1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-r2 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes counter-orbit-r1 {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes counter-orbit-r2 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.chat-bubble {
  position: absolute;
  background: #251230;
  border-radius: 12px 12px 12px 0;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s ease, background 0.15s ease;
  z-index: 10;
}

.chat-bubble:hover {
  background: #371c46;
}

.chat-bubble::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  border-width: 8px 8px 0 0;
  border-style: solid;
  border-color: #251230 transparent transparent transparent;
}

.cb1 {
  bottom: 18%;
  left: 4%;
  animation: float 4s ease-in-out infinite;
}

.cb2 {
  top: 14%;
  right: 6%;
  animation: float 4s ease-in-out infinite 2s;
  border-radius: 12px 12px 0 12px;
}

.cb2::after {
  display: none;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ══ STATS STRIP ════════════════════════════════════════════════════ */
.stats-strip {
  background: #371c46;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item__num {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-item__lbl {
  font-size: var(--fs-sm);
  color: var(--lav);
  margin-top: 4px;
}

/* ══ THE MISSING PLATFORM SECTION ══════════════════════════════════ */
.missing-platform {
  background: var(--cream);
  padding: 88px 0;
}

.missing-platform .eyebrow {
  background: transparent;
  color: #c09030;
  padding: 0;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
}

.missing-platform .section-title {
  color: #1a0a2e;
  font-weight: 800;
  font-size: var(--fs-2xl);
  margin-bottom: 16px;
}

.missing-platform .section-sub {
  color: #5d4875;
  font-size: var(--fs-md);
  max-width: 680px;
  margin: 0 auto;
}

.missing-platform__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  border: 1px solid rgba(106, 30, 154, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(61, 16, 84, 0.02);
  margin-top: 48px;
  overflow: hidden;
}

.missing-platform__col {
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Vertical separator line between columns */
.missing-platform__col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(106, 30, 154, 0.08);
}

.missing-platform__icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(155, 92, 197, 0.08);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}

.missing-platform__col-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a0a2e;
  margin-bottom: 14px;
}

.missing-platform__col-desc {
  font-size: var(--fs-sm);
  color: #5d4875;
  line-height: 1.6;
}

/* Responsive adjustment for columns */
@media (max-width: 960px) {
  .missing-platform__box {
    grid-template-columns: 1fr;
  }
  
  .missing-platform__col:not(:last-child)::after {
    display: none;
  }
  
  .missing-platform__col:not(:last-child) {
    border-bottom: 1px solid rgba(106, 30, 154, 0.08);
  }
  
  .missing-platform__col {
    padding: 30px;
  }
}

/* ══ FEATURES ═══════════════════════════════════════════════════════ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--white);
  border-radius: var(--rg);
  padding: 28px;
  border: 1px solid var(--bdr);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--lav));
  opacity: 0;
  transition: opacity .25s;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(61, 16, 84, .12);
  border-color: var(--petal-d);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-card__category {
  font-size: 10px;
  font-weight: 700;
  color: #6a1e9a;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--purple);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}

.feat-card__title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 8px;
}

.feat-card__desc {
  font-size: var(--fs-sm);
  color: var(--t3);
  line-height: 1.6;
}

/* ══ WHY CLUBIO ═════════════════════════════════════════════════════ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--rg);
  padding: 32px;
  border: 1px solid var(--bdr);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
  transition: all .25s;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(61, 16, 84, 0.08);
  border-color: var(--petal-d);
}

.why-card__num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--purple);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1;
}

.why-card__body {
  flex: 1;
}

.why-card__title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
  line-height: 1.4;
}

.why-card__desc {
  font-size: var(--fs-sm);
  color: var(--t3);
  line-height: 1.6;
}

/* ══ PLANS ══════════════════════════════════════════════════════════ */
.plans__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.plan-card {
  background: var(--white);
  border-radius: var(--rg);
  padding: 36px;
  border: 1.5px solid var(--bdr);
  position: relative;
}

.plan-card--pro {
  background: linear-gradient(145deg, var(--plum), var(--purple));
  border-color: transparent;
  color: #fff;
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lav);
  color: var(--plum);
  font-size: var(--fs-xs);
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: .06em;
  white-space: nowrap;
}

.plan-card__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 8px;
}

.plan-card--pro .plan-card__label {
  color: var(--lav);
}

.plan-card__name {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 6px;
}

.plan-card--pro .plan-card__name {
  color: #fff;
}

.plan-card__price {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 6px;
}

.plan-card--pro .plan-card__price {
  color: #fff;
}

.plan-card__price-note {
  font-size: var(--fs-sm);
  color: var(--t3);
  margin-bottom: 28px;
}

.plan-card--pro .plan-card__price-note {
  color: rgba(255, 255, 255, .6);
}

.plan-card__divider {
  height: 1px;
  background: var(--bdr);
  margin: 20px 0;
}

.plan-card--pro .plan-card__divider {
  background: rgba(255, 255, 255, .2);
}

.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-card__feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--t2);
}

.plan-card--pro .plan-card__feat {
  color: rgba(255, 255, 255, .85);
}

.plan-card__feat i {
  color: var(--purple);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 14px;
}

.plan-card--pro .plan-card__feat i {
  color: var(--lav);
}

.plan-card .btn {
  width: 100%;
  justify-content: center;
}

/* ══ CLUBS SHOWCASE ══════════════════════════════════════════════════ */
.clubs__marquee-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.clubs__marquee-wrap::before,
.clubs__marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.clubs__marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--petal), transparent);
}

.clubs__marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--petal), transparent);
}

.clubs__marquee {
  display: flex;
  gap: 16px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.clubs__marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.club-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: 40px;
  padding: 8px 16px 8px 8px;
  white-space: nowrap;
  box-shadow: 0 2px 8px var(--shadow);
}

.club-chip__av {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  border: 1.2px solid var(--bdr);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.club-chip__name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--t1);
}

.club-chip__loc {
  font-size: 10px;
  color: var(--t3);
}

.clubs__slider-container {
  position: relative;
  width: 100%;
  padding: 0 44px;
}

.clubs__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
}

.clubs__grid::-webkit-scrollbar {
  display: none;
}

.club-card {
  flex-shrink: 0;
  width: 250px;
  background: var(--white);
  border-radius: var(--r);
  padding: 20px;
  border: 1px solid var(--bdr);
  text-align: center;
  transition: all .2s;
}

.club-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--petal-d);
}

.clubs__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--bdr);
  color: var(--purple);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.clubs__slider-btn:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.clubs__slider-btn.prev-btn {
  left: 0;
}

.clubs__slider-btn.next-btn {
  right: 0;
}

@media(max-width: 640px) {
  .clubs__slider-container {
    padding: 0 24px;
  }
  .clubs__slider-btn {
    display: flex;
    width: 30px;
    height: 30px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(106, 30, 154, 0.2);
  }
  .clubs__slider-btn.prev-btn {
    left: 4px;
  }
  .clubs__slider-btn.next-btn {
    right: 4px;
  }
}

.club-card__av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: var(--purple);
  margin: 0 auto 12px;
  border: 1.2px solid var(--bdr);
}

.club-card__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 12px;
  display: block;
  background: #fff;
  border: 1.2px solid var(--bdr);
}

.club-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 4px;
}

.club-card__meta {
  font-size: 11px;
  color: var(--t3);
}

.club-card__members {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--violet);
  font-weight: 600;
  margin-top: 6px;
}

/* ══ ABOUT ══════════════════════════════════════════════════════════ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__products {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  align-items: center;
}

.about__products span {
  display: inline-flex;
  align-items: center;
  transition: transform .2s ease;
}

.about__products span:hover {
  transform: scale(1.08);
}

.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--petal);
  color: var(--purple);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: 6px 14px 6px 10px;
  border-radius: 40px;
}

.product-chip__logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.about__quote {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 4px solid var(--purple);
  background: var(--petal);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--t2);
}

.about__visual {
  background: linear-gradient(145deg, var(--plum), var(--purple));
  border-radius: var(--rg);
  padding: 36px;
  color: #fff;
}

.about__visual-title {
  font-size: var(--fs-lg);
  font-weight: 800;
  margin-bottom: 8px;
}

.about__visual-sub {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .65);
  margin-bottom: 28px;
}

.about-stat {
  margin-bottom: 20px;
}

.about-stat__label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-stat__val {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: #fff;
}

.about-stat__bar {
  height: 4px;
  background: rgba(255, 255, 255, .15);
  border-radius: 2px;
  margin-top: 6px;
}

.about-stat__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lav), #fff);
  border-radius: 2px;
  transition: width 1.8s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* ══ APP DOWNLOAD ════════════════════════════════════════════════════ */
.download {
  background: linear-gradient(135deg, var(--plum) 0%, var(--purple) 100%);
  padding: 80px 0;
  text-align: center;
}

.download__h {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.download__p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, .7);
  margin-bottom: 36px;
}

.download__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.download__store {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: #fff;
  padding: 13px 22px;
  border-radius: 12px;
  transition: all .2s;
  width: 185px;
}

.download__store:hover {
  background: rgba(255, 255, 255, .2);
}

.download__store i {
  font-size: 22px;
}

.download__store-text small {
  display: block;
  font-size: 9px;
  opacity: .7;
  letter-spacing: .04em;
}

.download__store-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

/* ══ CONTACT / FOOTER ════════════════════════════════════════════════ */
.contact {
  background: var(--ivory);
  padding: 72px 0 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 64px;
}

.contact__h {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 6px;
}

.contact__p {
  font-size: var(--fs-base);
  color: var(--t3);
  margin-bottom: 28px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--petal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 16px;
  flex-shrink: 0;
}

.contact__item-text strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--t1);
  font-weight: 700;
}

.contact__item-text span {
  font-size: var(--fs-sm);
  color: var(--t3);
}

.contact__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--petal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 16px;
  transition: all .2s;
  border: none;
}

.social-btn:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

.contact__map-wrap {
  border-radius: var(--rg);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--bdr);
}

.contact__map-placeholder {
  height: 100%;
  background: linear-gradient(145deg, var(--petal), var(--petal-d));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--purple);
}

.contact__map-placeholder i {
  font-size: 36px;
}

.contact__map-placeholder p {
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: center;
  padding: 0 20px;
}

.footer {
  background: #3c154e;
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.footer__brand-desc {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer__logo-text {
  display: flex;
  align-items: baseline;
  text-decoration: none;
}

.footer__logo-club {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

.footer__logo-io {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--violet), var(--lav));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--violet);
}

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #b58de9;
  margin-bottom: 20px;
}

.footer__links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
  text-decoration: none;
}

.footer__links-list a:hover {
  color: #b58de9;
  transform: translateX(2px);
}

.footer__divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copy {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: all 0.2s;
  text-decoration: none;
}

.footer__social a:hover {
  background: #d5c6e8;
  color: #1a0a2e;
  border-color: #f2be42;
  transform: translateY(-2px);
}

@media(max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__brand-col {
    max-width: 100%;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* ══ MODAL ══════════════════════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 8, 36, .7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--rg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(16px);
  transition: transform .25s;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal__header {
  background: linear-gradient(135deg, var(--plum), var(--purple));
  border-radius: var(--rg) var(--rg) 0 0;
  padding: 28px 28px 24px;
  color: #fff;
}

.modal__header-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, .15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.modal__header h2 {
  font-size: var(--fs-xl);
  font-weight: 800;
  margin-bottom: 4px;
}

.modal__header p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .7);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
}

.modal__close:hover {
  background: rgba(255, 255, 255, .3);
}

.modal__body {
  padding: 28px;
}

.modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal__grid--full {
  grid-column: 1/-1;
}

.fgroup {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fgroup label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--t2);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.fgroup label .req {
  color: var(--purple);
}

.fgroup input,
.fgroup select,
.fgroup textarea {
  height: 44px;
  border: 1.5px solid var(--bdr);
  border-radius: var(--rs);
  padding: 0 14px;
  font-size: var(--fs-sm);
  color: var(--t1);
  background: var(--cream);
  font-family: inherit;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}

.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(106, 30, 154, .08);
}

.fgroup input::placeholder {
  color: var(--t3);
}

.fgroup select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%237A6590'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.fgroup select:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.fgroup .fhint {
  font-size: 11px;
  color: var(--t3);
}

.upload-area {
  border: 2px dashed var(--bdr);
  border-radius: var(--r);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  background: var(--cream);
}

.upload-area:hover,
.upload-area.drag-over {
  border-color: var(--purple);
  background: var(--petal);
}

.upload-area__icon {
  font-size: 32px;
  color: var(--lav);
  margin-bottom: 10px;
}

.upload-area__text {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 4px;
}

.upload-area__hint {
  font-size: var(--fs-xs);
  color: var(--t3);
}

.upload-area__file {
  font-size: var(--fs-xs);
  color: var(--purple);
  font-weight: 700;
  margin-top: 8px;
}

#file-input {
  display: none;
}

.modal__footer {
  padding: 0 28px 28px;
  display: flex;
  gap: 12px;
}

.modal__footer .btn {
  flex: 1;
  justify-content: center;
  height: 50px;
  font-size: var(--fs-base);
}

.modal__success {
  display: none;
  text-align: center;
  padding: 40px 28px;
}

.modal__success-icon {
  font-size: 56px;
  color: var(--purple);
  margin-bottom: 16px;
}

.modal__success h3 {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 8px;
}

.modal__success p {
  font-size: var(--fs-base);
  color: var(--t3);
  margin-bottom: 24px;
}

/* ══ FLOATING BTNS ══════════════════════════════════════════════════ */
.fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 20px var(--shadow);
  transition: all .2s;
  cursor: pointer;
}

.fab:hover {
  transform: translateY(-3px);
}

.fab-wa {
  background: #25D366;
  color: #fff;
}

.fab-top {
  background: var(--purple);
  color: #fff;
  opacity: 0;
  transition: opacity .3s, transform .2s;
}

.fab-top.show {
  opacity: 1;
}

/* ══ FLOATING SOCIAL MENU ══════════════════════════════════════════ */
.social-floating-menu {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 10px 6px;
  box-shadow: 0 8px 30px rgba(61, 16, 84, 0.15);
  border: 1px solid rgba(106, 30, 154, 0.08);
  backdrop-filter: blur(8px);
}

.social-floating-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--purple);
  font-size: 16px;
  border-radius: 50%;
  margin: 4px 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-floating-menu a:hover {
  background: rgba(106, 30, 154, 0.08);
  color: var(--plum);
  transform: scale(1.1);
}

@media(max-width: 640px) {
  .social-floating-menu {
    top: auto;
    bottom: 160px;
    right: 16px;
    transform: none;
  }
}

/* ══ REVEAL ANIMATION ═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

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

/* ══ RESPONSIVE ═════════════════════════════════════════════════════ */
@media(max-width:960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__p,
  .hero__pill {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__btns,
  .hero__stores {
    justify-content: center;
  }

  .hero__actions {
    display: flex;
    justify-content: center;
  }

  .orbit-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .problem__grid,
  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .problem__img-col {
    display: none;
  }

  .stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clubs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .section {
    padding: 60px 0;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    padding: 8px 14px;
    font-size: 12px;
    gap: 4px;
  }

  .nav__hamburger {
    display: block;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .features__grid,
  .plans__grid,
  .why__grid,
  .modal__grid {
    grid-template-columns: 1fr;
  }

  .clubs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: var(--fs-xl);
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }

  .hero__stores {
    flex-direction: column;
    align-items: center;
  }

  .chat-bubble {
    display: none;
  }
}