/* ============================================
   AFROBEATING — Pre-Launch Site
   Brand: Coral #F06458 + Bold + Cultural Energy
   ============================================ */

:root {
  --coral: #F06458;
  --coral-dark: #D94F44;
  --coral-light: #FDEEEC;
  --coral-glow: rgba(240, 100, 88, 0.15);
  --dark: #141218;
  --dark-2: #1E1B22;
  --gold: #D4A843;
  --green: #2D6A4F;
  --cream: #FFFAF7;
  --text: #2C2A30;
  --text-mid: #6B6772;
  --text-light: #9C97A3;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(240, 100, 88, 0.1);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; }
.logo-img {
  height: 32px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo-link:hover .logo-img { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-mid);
  transition: all 0.25s ease;
}
.social-link:hover {
  color: var(--coral);
  background: var(--coral-glow);
}

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--coral);
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(240, 100, 88, 0.35);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(240, 100, 88, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 60%, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(240, 100, 88, 0.1);
  border: 1px solid rgba(240, 100, 88, 0.2);
  padding: 10px 22px;
  border-radius: 100px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease both;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 28px;
}

.title-line {
  display: block;
}

.line-1 {
  font-size: clamp(52px, 10vw, 96px);
  color: var(--white);
  animation: fadeInUp 0.8s ease 0.15s both;
}

.line-2 {
  font-size: clamp(52px, 10vw, 96px);
  color: var(--coral);
  animation: fadeInUp 0.8s ease 0.3s both;
}

.line-2 em {
  font-style: italic;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240, 100, 88, 0.4);
}
.btn-primary svg {
  transition: transform 0.3s ease;
}
.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.75s both;
}

.proof-item { text-align: center; }
.proof-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
}
.proof-k {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--coral);
}
.proof-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.proof-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInUp 0.8s ease 1s both;
}

.scroll-track {
  width: 2px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.scroll-dot {
  width: 2px;
  height: 16px;
  background: var(--coral);
  border-radius: 2px;
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(32px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   WHAT'S COMING
   ============================================ */
.section-coming {
  padding: 120px 0;
}

.sec-head {
  text-align: center;
  margin-bottom: 64px;
}

.sec-tag {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-light);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.sec-tag-light {
  background: rgba(240, 100, 88, 0.15);
  color: #FF8E84;
}

.sec-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}

.sec-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Product Cards */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

.product {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.product-bar {
  height: 4px;
  width: 100%;
}
.product-selects .product-bar { background: var(--coral); }
.product-passport .product-bar { background: var(--gold); }

.product-inner { padding: 40px 36px; }

.product-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.product-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  color: var(--dark);
  margin: 12px 0 16px;
}
.product-selects .product-name em { color: var(--coral); font-style: italic; }
.product-passport .product-name em { color: var(--gold); font-style: italic; }

.product-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.product-features { display: flex; flex-direction: column; gap: 14px; }

.feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.feat-marker {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 6px;
}
.product-selects .feat-marker { background: var(--coral); }
.product-passport .feat-marker { background: var(--gold); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  padding: 28px 0;
  background: var(--coral);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.mdot {
  font-size: 8px !important;
  opacity: 0.5;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   CITIES
   ============================================ */
.section-cities {
  padding: 120px 0;
  background: var(--white);
}

.cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.city {
  position: relative;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  cursor: default;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.city:hover {
  transform: translateY(-4px);
  border-color: var(--city-accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.city-inner {
  padding: 28px 24px;
  text-align: center;
}

.city-flag {
  display: block;
  font-size: 32px;
  margin-bottom: 12px;
}

.city-name {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 4px;
}

.city-sub {
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   WAITLIST / JOIN
   ============================================ */
.section-join {
  position: relative;
  padding: 120px 0;
  background: var(--dark);
  overflow: hidden;
}

.join-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.join-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) {
  .join-wrap { grid-template-columns: 1fr; gap: 48px; }
}

.join-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  color: var(--white);
  margin: 16px 0;
}

.join-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
}

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

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* Form */
.form-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.req { color: var(--coral); }

.form-group input {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  outline: none;
  transition: all 0.25s ease;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus {
  border-color: var(--coral);
  background: rgba(240, 100, 88, 0.06);
  box-shadow: 0 0 0 3px rgba(240, 100, 88, 0.1);
}

/* Chips */
.interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.chip:hover {
  border-color: var(--coral);
  color: var(--white);
}

.chip.active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

/* Submit */
.btn-submit {
  width: 100%;
  padding: 16px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--coral);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(240, 100, 88, 0.3);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 16px;
}

/* Success */
.success-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  animation: fadeInUp 0.5s ease both;
}

.success-icon { font-size: 48px; margin-bottom: 16px; }

.success-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 12px;
}

.success-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.success-text strong { color: var(--coral); }

.success-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.success-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.success-social {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  transition: all 0.25s ease;
}
.success-social:hover {
  border-color: var(--coral);
  background: rgba(240, 100, 88, 0.1);
}

/* Error */
.form-error {
  background: rgba(240, 100, 88, 0.1);
  border: 1px solid rgba(240, 100, 88, 0.3);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #FF8E84;
  text-align: center;
  animation: fadeInUp 0.3s ease both;
}

/* ============================================
   COUNTER BAR
   ============================================ */
.counter-bar {
  padding: 20px 0;
  background: var(--coral);
  text-align: center;
}

.counter-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--white);
}

#live-count {
  font-weight: 800;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0 32px;
  background: var(--cream);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
}

.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-mid);
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--coral); }

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
  .hero-proof { gap: 20px; }
  .proof-num, .proof-k { font-size: 28px; }
  .product-inner { padding: 28px 24px; }
  .form-card { padding: 28px 20px; }
  .cities { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .city-inner { padding: 20px 16px; }
  .interest-chips { gap: 6px; }
  .chip { font-size: 13px; padding: 8px 14px; }
}
