/* === ATHLETE PAGE (athlete.html) SPECIFIC STYLES === */

/* Athlete page wrapper with glass overlay */
.page-wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.page-wrapper.visible {
  opacity: 1;
}

.page-wrapper.glass-overlay::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 141, 64, 0.02) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(230, 103, 54, 0.01) 0%,
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.008) 0%,
      transparent 20%,
      transparent 80%,
      rgba(255, 255, 255, 0.004) 100%
    );
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  opacity: 0.6;
}

/* === MINIMALIST HEADER === */
.site-header {
  padding: 30px 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(26, 26, 26, 0.7) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  height: 100px;
}

/* === ATHLETE HERO SECTION === */
.athlete-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
}

.athlete-headline {
  font-weight: 900;
  font-style: italic;
  font-size: clamp(52px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffb366;
  text-shadow:
    0 0 30px rgba(255, 179, 102, 0.3),
    0 0 60px rgba(255, 179, 102, 0.1);

  /* Add the sunrise animation */
  animation:
    fadeInUp 0.8s var(--smooth-easing) forwards,
    sunriseGlow 2.5s 0.3s ease-out forwards;

  /* Ensure the final state persists after animation */
  animation-fill-mode: forwards;
}

.athlete-subheadline {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Inline Explorer Container */
.inline-explorer {
  max-width: 900px;
  margin: 32px auto 0;
  padding: 0 20px;
}

/* Bridge Layer Container */
.bridge-layer {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 20px;
  animation: bridgeFadeIn 0.8s cubic-bezier(0.4,0,0.2,1) 0.3s both;
}

/* Subtle Divider with Glow */
.bridge-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  opacity: 0.6;
}

.divider-line {
  height: 1px;
  width: 120px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,141,64,0.3) 20%,
    rgba(255,141,64,0.6) 50%,
    rgba(255,141,64,0.3) 80%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(255,141,64,0.2);
  position: relative;
}

.divider-line::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: #FF8D40;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,141,64,0.5);
}

/* Bridge Heading - Action-Oriented */
.bridge-heading {
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin: 0 0 12px 0;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

/* Bridge Subtext - Framing Sentence */
.bridge-subtext {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin: 0 0 36px 0;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

/* Skip button */
.skip-container {
  text-align: center;
  margin: 24px 0 32px 0;
  padding: 0 20px;
}

.skip-link {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px 20px;
  border-radius: 8px;
  position: relative;
  display: inline-block;
}

.skip-link:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.03);
}

.skip-link:active {
  transform: scale(0.98);
}

.skip-arrow {
  color: #FF8D40;
  font-weight: 700;
  margin-left: 4px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.skip-link:hover .skip-arrow {
  transform: translateX(4px);
}

.skip-container.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Card Grid - Mobile First */
.journey-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 0;
}

/* Desktop card adjustments */
@media (min-width: 768px) {
  .journey-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .info-card .card-icon {
    font-size: 56px;
  }

  .info-card .card-label {
    font-size: 22px;
  }
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
}

.step-num {
  font-size: 28px;
  font-weight: 900;
  color: #FF8D40;
  line-height: 1;
  flex-shrink: 0;
}

.step-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #fff;
}

.step-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.metric {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #FF8D40;
  margin-bottom: 8px;
}

.metric p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
}

.benefit-emoji {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #fff;
}

.benefit-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}

/* CTA Container */
.cta-container {
  text-align: center;
  padding: 32px 20px;
  animation: fadeInUp 0.5s cubic-bezier(0.4,0,0.2,1);
}

.completion-badge {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  color: #10b981;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(16,185,129,0.3);
}

.cta-heading {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 12px 0;
  color: #fff;
}

.cta-subtext {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 28px 0;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.join-btn {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #000;
  font-weight: 800;
  font-size: 20px;
  padding: 20px 56px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(16,185,129,0.3);
}

.join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16,185,129,0.5);
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 12px 0 0;
}

/* === MINIMAL FOOTER === */
.site-footer {
  padding: 60px 24px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--brand);
}

.footer-link:hover::after {
  width: 100%;
}

.copyright {
  color: var(--text-dim);
  font-size: 14px;
}

/* === DOWN ARROW NAVIGATION === */
.scroll-down-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 141, 64, 0.1);
  border: 1px solid rgba(255, 141, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 0;
  cursor: pointer;
  transition: all 0.3s var(--smooth-easing);
  position: relative;
  z-index: 10;
}

.scroll-down-btn:hover {
  background: rgba(255, 141, 64, 0.2);
  border-color: var(--brand);
  transform: translateY(5px) scale(1.05);
}

.scroll-down-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand);
  transition: transform 0.3s ease;
}

.scroll-down-btn:hover svg {
  transform: translateY(3px);
}

/* === RESPONSIVE DESIGN - ATHLETE PAGE === */

@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 20px 24px;
    height: 80px;
  }

  .header-logo {
    height: 50px;
  }

  .athlete-hero {
    padding: 120px 20px 60px;
  }

  .athlete-headline {
    font-size: clamp(42px, 8vw, 56px);
  }

  .hero-cta {
    padding: 20px 30px;
    min-width: auto;
  }

  .journey-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-cta-evolution {
    gap: 15px;
  }

  .cta-btn {
    min-width: 280px;
    padding: 18px 36px;
    font-size: 16px;
  }

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

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

  .footer-links {
    flex-direction: column;
    gap: 25px;
  }

  .footer-link {
    padding: 12px 0;
  }
}

@media (min-width: 768px) {
  .athlete-subheadline {
    font-size: 19px;
    max-width: 750px;
    line-height: 1.6;
  }

  .bridge-layer {
    margin-bottom: 48px;
  }

  .divider-line {
    width: 180px;
  }

  .bridge-heading {
    font-size: 40px;
    margin-bottom: 14px;
  }

  .bridge-subtext {
    font-size: 18px;
    margin-bottom: 44px;
  }

  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 1200px) {
  .athlete-subheadline {
    font-size: 20px;
    max-width: 820px;
  }
}

/* === ACCESSIBILITY - ATHLETE PAGE === */

@media (prefers-reduced-motion: reduce) {
  .athlete-headline {
    animation: fadeInUp 0.8s var(--smooth-easing) forwards;
    /* Skip the sunrise glow for reduced motion */
    color: #ffb366;
    text-shadow:
      0 0 30px rgba(255, 179, 102, 0.3),
      0 0 60px rgba(255, 179, 102, 0.1);
  }
}

/* Smooth section transitions */
.bridge-layer,
.journey-cards,
.skip-container {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.bridge-layer[style*="display: none"],
.journey-cards[style*="display: none"] {
  opacity: 0;
  transform: translateY(-10px);
}

/* Hero CTA Evolution */
.hero-cta-evolution {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 250px;
  justify-content: center;
}

.cta-btn.primary {
  background: var(--brand-gradient);
  color: #000;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 141, 64, 0.4);
}

.cta-btn.secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.cta-btn.secondary:hover {
  background: var(--brand);
  color: #000;
  transform: translateY(-2px);
}

.progress-tracker {
  margin-top: 30px;
  text-align: center;
}

#progress-text {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 8px;
  display: block;
}

.progress-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--brand);
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s ease;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .scroll-down-btn {
    width: 50px;
    height: 50px;
    margin: 40px auto 0;
  }

  .scroll-down-btn svg {
    width: 20px;
    height: 20px;
  }

  .athlete-benefits .scroll-down-btn {
    display: none;
  }
}