/* ===== Variables — vibrant light theme on white ===== */
:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-tint: #fafbff;
  --bg-rose: #fff5f9;
  --bg-lavender: #f6f3ff;
  --bg-sky: #f0f9ff;
  --primary: #e84393;
  --primary-light: #fd79a8;
  --primary-dark: #c44569;
  --violet: #6c5ce7;
  --violet-light: #a29bfe;
  --sky: #0984e3;
  --sky-light: #74b9ff;
  --coral: #ff7675;
  --mint: #00b894;
  --gold: #fdcb6e;
  --gradient-brand: linear-gradient(135deg, #e84393 0%, #6c5ce7 50%, #0984e3 100%);
  --gradient-soft: linear-gradient(135deg, #fff5f9 0%, #f6f3ff 50%, #f0f9ff 100%);
  --text: #2d3436;
  --text-muted: #636e72;
  --border: rgba(45, 52, 54, 0.08);
  --shadow: 0 4px 24px rgba(108, 92, 231, 0.08);
  --shadow-hover: 0 12px 40px rgba(232, 67, 147, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Outfit', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(108, 92, 231, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--primary);
}

.nav-links a.nav-active {
  font-weight: 600;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-cta {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: 0.6rem 1.35rem;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent !important;
  border: none;
  box-shadow:
    0 4px 20px rgba(232, 67, 147, 0.35),
    0 0 0 1px rgba(108, 92, 231, 0.12);
}

.nav-cta::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: -130%;
  width: 260%;
  height: 260%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    transparent 0deg 285deg,
    var(--primary) 300deg,
    var(--violet-light) 318deg,
    var(--sky-light) 336deg,
    var(--primary-light) 352deg,
    transparent 360deg
  );
  animation: navCtaBorderSpin 2.6s linear infinite;
}

.nav-cta::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 2px;
  border-radius: inherit;
  background: var(--gradient-brand);
  transition: filter var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(108, 92, 231, 0.45),
    0 0 28px rgba(232, 67, 147, 0.22);
}

.nav-cta:hover::after {
  filter: brightness(1.08);
}

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

@media (prefers-reduced-motion: reduce) {
  .nav-cta::before {
    animation: none;
    inset: -2px;
    width: auto;
    height: auto;
    left: 0;
    top: 0;
    transform: none;
    background: var(--gradient-brand);
    opacity: 0.85;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 67, 147, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108, 92, 231, 0.35);
}

.btn-outline {
  border-color: rgba(232, 67, 147, 0.35);
  color: var(--primary-dark);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--violet);
  color: var(--violet);
  background: var(--bg-lavender);
}

/* ===== Hero Banner ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  background: linear-gradient(160deg, #fff 0%, #fff5f9 35%, #f6f3ff 70%, #f0f9ff 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb--1 {
  width: 420px;
  height: 420px;
  top: -8%;
  right: -5%;
  background: rgba(232, 67, 147, 0.35);
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 320px;
  height: 320px;
  bottom: 5%;
  left: -8%;
  background: rgba(108, 92, 231, 0.3);
  animation-delay: -3s;
}

.hero-orb--3 {
  width: 260px;
  height: 260px;
  top: 40%;
  left: 45%;
  background: rgba(9, 132, 227, 0.25);
  animation-delay: -5s;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 92, 231, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 92, 231, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -25px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(232, 67, 147, 0.25);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(232, 67, 147, 0.12);
  backdrop-filter: blur(8px);
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.hero h1 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-brand {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.hero-brand span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-left: 1rem;
  border-left: 3px solid transparent;
  border-image: var(--gradient-brand) 1;
}

.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Hero visual panel */
.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(108, 92, 231, 0.2);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--main {
  width: 85%;
  height: 380px;
  margin-left: auto;
  border: 4px solid var(--white);
  transform: rotate(2deg);
}

.hero-img--secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 200px;
  border: 4px solid var(--white);
  transform: rotate(-4deg);
  box-shadow: 0 16px 48px rgba(232, 67, 147, 0.25);
}

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(45, 52, 54, 0.1);
  backdrop-filter: blur(12px);
  animation: floatCard 5s ease-in-out infinite;
}

.hero-float strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.hero-float span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-float-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.hero-float--1 {
  top: 8%;
  left: -4%;
  animation-delay: 0s;
}

.hero-float--2 {
  top: 42%;
  right: -6%;
  animation-delay: -1.5s;
}

.hero-float--3 {
  bottom: 12%;
  left: 8%;
  animation-delay: -3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: var(--gradient-brand);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Section Shared ===== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.9rem;
  background: var(--bg-rose);
  border-radius: 50px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== Network Grid ===== */
.network {
  padding: 6rem 0;
  background: var(--gradient-soft);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.network-card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.network-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition);
}

.network-card:hover {
  border-color: rgba(232, 67, 147, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

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

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: #fff;
}

.network-card:nth-child(6n+1) .card-icon { background: linear-gradient(135deg, #e84393, #fd79a8); }
.network-card:nth-child(6n+2) .card-icon { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }
.network-card:nth-child(6n+3) .card-icon { background: linear-gradient(135deg, #0984e3, #74b9ff); }
.network-card:nth-child(6n+4) .card-icon { background: linear-gradient(135deg, #00b894, #55efc4); }
.network-card:nth-child(6n+5) .card-icon { background: linear-gradient(135deg, #e17055, #ff7675); }
.network-card:nth-child(6n+6) .card-icon { background: linear-gradient(135deg, #fdcb6e, #f39c12); }

.card-icon svg {
  width: 24px;
  height: 24px;
}

.network-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.network-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.card-link {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-lavender);
  color: var(--primary);
  transition: var(--transition);
  z-index: 1;
}

.card-link svg {
  width: 18px;
  height: 18px;
}

.card-link:hover {
  background: var(--gradient-brand);
  color: var(--white);
  transform: translate(2px, -2px);
  box-shadow: 0 4px 12px rgba(232, 67, 147, 0.35);
}

.network-card:hover .card-link {
  background: rgba(232, 67, 147, 0.12);
}

/* ===== Info Sections ===== */
.info-sections {
  padding: 2rem 0 0;
  background: var(--white);
}

.info-row {
  padding: 4.5rem 0;
}

.info-row--alt {
  background: linear-gradient(180deg, var(--bg-rose) 0%, var(--white) 100%);
}

.info-row:nth-child(3) {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-lavender) 50%, var(--white) 100%);
}

.info-row:nth-child(4) {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-sky) 100%);
}

.info-row-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.info-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  position: relative;
}

.info-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 3px solid transparent;
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.4), rgba(108, 92, 231, 0.4), rgba(9, 132, 227, 0.4)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.info-row:hover .info-image img {
  transform: scale(1.04);
}

.info-content .section-label {
  background: var(--bg-lavender);
  color: var(--violet);
}

.info-row:nth-child(2) .info-content .section-label {
  background: rgba(232, 67, 147, 0.1);
  color: var(--primary);
}

.info-row:nth-child(3) .info-content .section-label {
  background: rgba(9, 132, 227, 0.1);
  color: var(--sky);
}

.info-row:nth-child(4) .info-content .section-label {
  background: rgba(0, 184, 148, 0.1);
  color: var(--mint);
}

.info-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.25;
}

.info-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}

/* ===== Contact ===== */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-sky) 0%, var(--bg-lavender) 50%, var(--bg-rose) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
}

.contact-details svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form label span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form select {
  padding-right: 2.5rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23636e72' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  cursor: pointer;
}

.contact-form select:invalid {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--violet-light);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Footer ===== */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

/* ===== Club Owners Page ===== */
.page-hero {
  position: relative;
  padding: 9rem 0 4rem;
  text-align: center;
  background: linear-gradient(160deg, #fff 0%, #fff5f9 40%, #f6f3ff 100%);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-bg .hero-orb--1 {
  width: 300px;
  height: 300px;
  top: -5%;
  right: 10%;
}

.page-hero-bg .hero-orb--2 {
  width: 250px;
  height: 250px;
  bottom: 0;
  left: 5%;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text);
}

.page-hero-content h1 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.clubowners-section {
  padding: 4rem 0 6rem;
  background: var(--gradient-soft);
}

.clubowners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.owner-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.owner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition);
}

.owner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232, 67, 147, 0.2);
}

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

.owner-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient-brand);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.owner-card:nth-child(6n+1) .owner-avatar { background: linear-gradient(135deg, #e84393, #fd79a8); }
.owner-card:nth-child(6n+2) .owner-avatar { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }
.owner-card:nth-child(6n+3) .owner-avatar { background: linear-gradient(135deg, #0984e3, #74b9ff); }
.owner-card:nth-child(6n+4) .owner-avatar { background: linear-gradient(135deg, #00b894, #55efc4); }
.owner-card:nth-child(6n+5) .owner-avatar { background: linear-gradient(135deg, #e17055, #ff7675); }
.owner-card:nth-child(6n+6) .owner-avatar { background: linear-gradient(135deg, #fdcb6e, #f39c12); }

.owner-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  display: block;
}

.owner-card:hover .owner-avatar {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(232, 67, 147, 0.25);
}

.owner-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.owner-detail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.owner-detail:last-child {
  margin-bottom: 0;
}

.owner-detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.owner-metric {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  padding: 0.35rem 0.75rem;
  background: var(--bg-rose);
  border-radius: 50px;
  display: inline-block;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Club Owner Page — Banner ===== */
.page-hero--banner {
  padding: 7rem 0 5rem;
  text-align: left;
  min-height: auto;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.page-hero--banner .page-hero-content {
  max-width: none;
  margin: 0;
  text-align: left;
}

.page-hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.page-hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.page-hero-visual {
  position: relative;
}

.page-hero-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
}

.page-hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.page-hero-badge span {
  font-size: 1.5rem;
}

.page-hero-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.page-hero-badge div span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== Club Owner Page — Sections ===== */
.co-section {
  padding: 5rem 0;
}

.co-streams {
  background: var(--white);
}

.streams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.stream-card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stream-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition);
}

.stream-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232, 67, 147, 0.2);
}

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

.stream-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  margin-bottom: 1rem;
}

.stream-icon svg {
  width: 22px;
  height: 22px;
}

.stream-icon--1 { background: linear-gradient(135deg, #e84393, #fd79a8); }
.stream-icon--2 { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }
.stream-icon--3 { background: linear-gradient(135deg, #0984e3, #74b9ff); }
.stream-icon--4 { background: linear-gradient(135deg, #00b894, #55efc4); }
.stream-icon--5 { background: linear-gradient(135deg, #e17055, #ff7675); }
.stream-icon--6 { background: linear-gradient(135deg, #fdcb6e, #f39c12); }

.stream-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.stream-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.stream-tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
  background: var(--bg-rose);
  border-radius: 50px;
}

.co-process {
  background: var(--gradient-soft);
}

.process-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0.75rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #fd79a8 0%, #6c5ce7 50%, #0984e3 100%);
  border-radius: 999px;
  opacity: 0.75;
}

.process-step {
  width: calc(50% - 2.7rem);
  position: relative;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.process-step:nth-child(odd) {
  margin-right: auto;
}

.process-step:nth-child(even) {
  margin-left: auto;
  margin-top: 1.2rem;
}

.process-step + .process-step {
  margin-top: 1.2rem;
}

.process-step:nth-child(odd)::after,
.process-step:nth-child(even)::after {
  content: '';
  position: absolute;
  top: 2.15rem;
  width: 2.2rem;
  height: 2px;
  background: linear-gradient(90deg, #fd79a8 0%, #6c5ce7 100%);
}

.process-step:nth-child(odd)::after {
  right: -2.2rem;
}

.process-step:nth-child(even)::after {
  left: -2.2rem;
}

.process-marker {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1.05rem;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: var(--gradient-brand);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.25);
}

.process-step:nth-child(odd) .process-marker {
  right: -3.65rem;
}

.process-step:nth-child(even) .process-marker {
  left: -3.65rem;
}

.process-body {
  padding-top: 0.15rem;
}

.process-day {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--violet);
  margin-bottom: 0.35rem;
}

.process-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.process-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.process-who {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  padding: 0.25rem 0.65rem;
  background: var(--bg-lavender);
  border-radius: 50px;
}

.process-cta {
  margin-top: 3rem;
  text-align: center;
}

.process-cta p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.co-stories {
  background: var(--white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.story-card {
  padding: 2rem;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(108, 92, 231, 0.15);
}

.story-quote {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.story-card > p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.story-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.story-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.story-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.co-faq {
  background: var(--gradient-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.faq-intro h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.faq-intro p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: rgba(108, 92, 231, 0.25);
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 1.15rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.clubowners-section .section-header {
  margin-bottom: 2.5rem;
}

/* ===== Mobile Nav ===== */
.nav.open .nav-end {
  display: flex;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-end {
    gap: 1rem;
  }

  .nav-cta {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    min-height: 400px;
    max-width: 480px;
    margin-inline: auto;
  }

  .hero-float--1 { left: 0; }
  .hero-float--2 { right: 0; }
  .hero-float--3 { left: 5%; }

  .info-row-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .info-image {
    aspect-ratio: 16 / 10;
  }

  .info-content p {
    max-width: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .page-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero--banner .page-hero-content {
    text-align: center;
  }

  .page-hero-actions {
    justify-content: center;
  }

  .page-hero-stats {
    justify-content: center;
  }

  .page-hero-visual {
    max-width: 520px;
    margin-inline: auto;
  }

  .page-hero-badge {
    left: 1rem;
  }

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

  .process-timeline {
    max-width: 760px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-end {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin-left: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 0.75rem 1rem;
  }

  .nav.open .nav-end {
    display: flex;
  }

  .nav-cta {
    margin-top: 0.75rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
  }

  .nav-cta::before {
    inset: -140%;
    width: 280%;
    height: 280%;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .info-row {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .network-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-img--main {
    height: 280px;
    width: 100%;
  }

  .hero-img--secondary {
    width: 55%;
    height: 150px;
  }

  .hero-float {
    padding: 0.65rem 0.85rem;
  }

  .hero-float strong {
    font-size: 0.75rem;
  }

  .hero-float span {
    font-size: 0.65rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .hero-stat strong {
    font-size: 1.25rem;
  }

  .clubowners-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  .page-hero-visual img {
    height: 300px;
  }

  .streams-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    padding-left: 1.1rem;
  }

  .process-timeline::before {
    left: 0;
    transform: none;
  }

  .process-step {
    width: 100%;
    margin: 0 0 1rem 0 !important;
    padding: 1.35rem 1.2rem 1.2rem 2.15rem;
  }

  .process-step::after {
    display: none;
  }

  .process-marker {
    left: -1.2rem !important;
    right: auto !important;
    top: 1rem;
    width: 36px;
    height: 36px;
    font-size: 0.72rem;
  }

  .co-section {
    padding: 3.5rem 0;
  }

  .owner-card {
    padding: 1.75rem 1.25rem;
  }
}
