/* ============================================================
   À propos / Landing page
   ============================================================ */

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 20px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 60vw;
  height: 60vw;
  max-width: 500px;
  max-height: 500px;
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(249,115,22,0.12), transparent 70%);
}

.hero-orb-2 {
  width: 50vw;
  height: 50vw;
  max-width: 400px;
  max-height: 400px;
  bottom: -10%;
  right: -10%;
  background: radial-gradient(circle, rgba(255,255,255,0.03), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-glow);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeIn 0.5s ease both;
}

.hero-title {
  font-size: clamp(32px, 8vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text-1);
  margin-bottom: 20px;
  animation: slideUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, #FFBA6A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-3);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 36px;
  animation: slideUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: slideUp 0.6s ease 0.3s both;
}

.hero-actions .btn-primary { min-width: 200px; }

.hero-note {
  font-size: 12px;
  color: var(--text-4);
  margin-top: 8px;
}

/* Stats row */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
  animation: fadeIn 0.6s ease 0.4s both;
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-1);
  letter-spacing: -1px;
}

.hero-stat-value span { color: var(--primary); }

.hero-stat-label {
  font-size: 12px;
  color: var(--text-4);
  margin-top: 2px;
}

/* ─── Features section ────────────────────────────────────────── */
.features-section {
  padding: 64px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text-1);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-3);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(249,115,22,0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-glow);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ─── How it works ────────────────────────────────────────────── */
.how-section {
  padding: 64px 20px;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.how-step:hover {
  border-color: rgba(249,115,22,0.15);
  transform: translateX(4px);
}

.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--primary-glow-strong);
}

.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.5;
}

/* Sports tags in step */
.step-sports {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.step-sport-tag {
  font-size: 11px;
  padding: 3px 8px;
  background: var(--bg-2);
  border-radius: var(--radius-full);
  color: var(--text-4);
}

/* ─── CTA section ─────────────────────────────────────────────── */
.cta-section {
  padding: 72px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.08), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text-1);
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 15px;
  color: var(--text-3);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ─── Sports available ────────────────────────────────────────── */
.sports-section {
  padding: 64px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.sports-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.sport-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  cursor: default;
  transition: all 0.2s ease;
}

.sport-pill:hover {
  border-color: rgba(249,115,22,0.25);
  color: var(--text-1);
  transform: translateY(-2px);
}

/* ─── Footer ──────────────────────────────────────────────────── */
.page-footer {
  border-top: 1px solid var(--border);
  padding: 32px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.footer-links a {
  padding: 6px 12px;
  font-size: 13px;
  color: var(--text-4);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 12px;
  color: var(--text-5);
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (min-width: 600px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: row; justify-content: center; }
}

@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-list { display: grid; grid-template-columns: repeat(3, 1fr); }
  .how-step { flex-direction: column; text-align: center; }
  .how-step:hover { transform: translateY(-4px); }
}
