/* Athletic Avenue — Coming Soon */
:root {
  --bg: #0f0f0f;
  --bg-elevated: #161616;
  --bronze: #b98a5f;
  --gold: #d6b07c;
  --gold-bright: #e8c992;
  --text: #f5f3ef;
  --text-muted: rgba(245, 243, 239, 0.65);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(214, 176, 124, 0.18);
  --glow-bronze: rgba(185, 138, 95, 0.45);
  --glow-gold: rgba(214, 176, 124, 0.35);
  --font-heading: "Sora", "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius-curve: 3rem;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

/* Ambient background */
.ambient-lights {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: floatOrb 18s ease-in-out infinite;
}

.ambient-orb--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--glow-bronze), transparent 70%);
  top: -8%;
  left: -5%;
  animation-delay: 0s;
}

.ambient-orb--2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--glow-gold), transparent 70%);
  top: 40%;
  right: -8%;
  animation-delay: -6s;
}

.ambient-orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(185, 138, 95, 0.25), transparent 70%);
  bottom: 10%;
  left: 30%;
  animation-delay: -12s;
}

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

/* Gradient sweep */
.gradient-sweep {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    125deg,
    transparent 40%,
    rgba(214, 176, 124, 0.03) 50%,
    transparent 60%
  );
  background-size: 200% 200%;
  animation: sweep 12s ease-in-out infinite;
}

@keyframes sweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

.section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section--curve {
  margin-top: -2rem;
  padding-top: clamp(5rem, 12vw, 8rem);
  border-radius: var(--radius-curve) var(--radius-curve) 0 0;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.6) 0%, var(--bg) 100%);
  border-top: 1px solid var(--glass-border);
}

.section--curve-bottom {
  border-radius: 0 0 var(--radius-curve) var(--radius-curve);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.05rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(15, 15, 15, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

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

.nav a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/hero-bg.jpeg") center / cover no-repeat;
  transform: scale(1.02);
  animation: heroKen 25s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.55) 0%, rgba(15, 15, 15, 0.88) 55%, var(--bg) 100%),
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(185, 138, 95, 0.12), transparent 60%),
    linear-gradient(90deg, rgba(15, 15, 15, 0.4) 0%, transparent 50%, rgba(15, 15, 15, 0.4) 100%);
}

.hero__curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.15);
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 8rem 1.5rem 6rem;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  animation: pulseGlow 3s ease-in-out infinite;
}

.hero__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(214, 176, 124, 0.15); }
  50% { box-shadow: 0 0 32px rgba(214, 176, 124, 0.35); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.05;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--gold-bright) 50%, var(--bronze) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(214, 176, 124, 0.2);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.hero__tagline {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Glowing button */
.btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  border: none;
  border-radius: 100px;
  cursor: default;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(214, 176, 124, 0.4),
    0 0 60px rgba(185, 138, 95, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: btnPulse 2.5s ease-in-out infinite;
}

.btn-glow::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), var(--bronze), var(--gold));
  z-index: -1;
  opacity: 0.6;
  filter: blur(12px);
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(214, 176, 124, 0.4), 0 0 60px rgba(185, 138, 95, 0.2); }
  50% { box-shadow: 0 0 45px rgba(214, 176, 124, 0.55), 0 0 80px rgba(185, 138, 95, 0.35); }
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-hint__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.about-visual {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(185, 138, 95, 0.1);
}

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

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(185, 138, 95, 0.2));
  pointer-events: none;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.25rem;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(185, 138, 95, 0.15);
}

.stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-card span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 2rem 1.75rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  backdrop-filter: blur(16px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 176, 124, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(214, 176, 124, 0.12);
}

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

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(185, 138, 95, 0.2), rgba(214, 176, 124, 0.1));
  border: 1px solid var(--glass-border);
  color: var(--gold);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

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

/* Countdown */
.countdown-section {
  text-align: center;
}

.countdown {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.countdown__unit {
  min-width: 100px;
  padding: 1.5rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  backdrop-filter: blur(16px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.countdown__unit:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(214, 176, 124, 0.15);
}

.countdown__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.countdown__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.countdown__sep {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: var(--bronze);
  opacity: 0.6;
  padding-bottom: 1.5rem;
}

/* Newsletter */
.newsletter {
  max-width: 560px;
  margin: 2.5rem auto 0;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 1rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  outline: none;
  backdrop-filter: blur(12px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(214, 176, 124, 0.15);
}

.btn-submit {
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(214, 176, 124, 0.35);
}

.newsletter-msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.4em;
  color: var(--gold);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition);
}

.social-link:hover {
  transform: translateY(-4px);
  color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(214, 176, 124, 0.25);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}

.footer__domain {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer__domain a {
  color: var(--gold);
  transition: color var(--transition);
}

.footer__domain a:hover {
  color: var(--gold-bright);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Mobile nav */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 85vw);
    height: 100vh;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    background: rgba(15, 15, 15, 0.96);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav.open {
    transform: translateX(0);
  }

  .menu-toggle {
    display: block;
    z-index: 101;
  }

  .countdown__sep {
    display: none;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero__title {
    letter-spacing: 0.1em;
  }
}

@media (max-width: 480px) {
  .countdown__unit {
    min-width: calc(50% - 0.5rem);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .btn-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
