@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  background: #080808;
  color: #f5f2eb;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 25px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}

.logo span {
  color: #d7b56d;
  padding: 0 5px;
}

.nav-btn {
  border: 1px solid #d7b56d;
  padding: 9px 17px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.4)),
    url('https://images.unsplash.com/photo-1512343879784-a960bf40e7f2?auto=format&fit=crop&w=2000&q=85')
    center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 8% 80px;
}

.eyebrow {
  color: #d7b56d;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 20px;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(48px, 8vw, 90px);
}

h1 span,
h2 span {
  color: #d7b56d;
}

h2 {
  font-size: clamp(38px, 6vw, 68px);
}

.hero-text,
.body-text {
  max-width: 650px;
  margin: 28px 0;
  color: #c6c2b9;
  font-size: 17px;
}

.slot-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(215,181,109,.7);
  padding: 12px 20px;
  margin: 15px 0 30px;
}

.slot-badge strong {
  color: #d7b56d;
  font-size: 28px;
}

.slot-badge span {
  font-size: 11px;
  letter-spacing: 2px;
}

.gold-btn {
  display: inline-block;
  background: #d7b56d;
  color: #080808;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 28px;
  letter-spacing: 1px;
  font-size: 12px;
  transition: .3s;
}

.gold-btn:hover {
  transform: translateY(-3px);
}

.small-note {
  color: #96928a;
  font-size: 12px;
  margin-top: 12px;
}

.section {
  padding: 110px 8%;
  max-width: 1300px;
  margin: auto;
}

.intro {
  text-align: center;
}

.intro .body-text,
.solo .body-text,
.slots .body-text {
  margin-left: auto;
  margin-right: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #252525;
  padding: 0;
}

.feature {
  background: #080808;
  padding: 55px 45px;
}

.number {
  color: #d7b56d;
  font-size: 12px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 17px;
  letter-spacing: 2px;
}

.feature p {
  color: #96928a;
  margin-top: 10px;
}

.stats {
  display: flex;
  gap: 70px;
  margin: 60px 0;
}

.stats div {
  display: flex;
  flex-direction: column;
}

.stats strong {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: #d7b56d;
}

.stats span {
  font-size: 10px;
  letter-spacing: 2px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.timeline div {
  border-top: 1px solid #444;
  padding-top: 25px;
}

.timeline span {
  color: #d7b56d;
  font-size: 11px;
  letter-spacing: 2px;
}

.timeline h3 {
  margin: 12px 0;
}

.timeline p {
  color: #96928a;
}

.disclaimer {
  margin-top: 35px;
  font-size: 12px;
  color: #777;
}

.solo {
  background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.9)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=85')
    center/cover;
  max-width: none;
}

.audience {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 45px 0;
}

.audience span {
  border: 1px solid #444;
  padding: 13px 20px;
  font-size: 11px;
  letter-spacing: 1px;
}

.slots {
  text-align: center;
}

.counter {
  margin: 55px auto 25px;
}

.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: #d7b56d;
  line-height: 1;
}

.counter-label {
  letter-spacing: 4px;
  font-size: 11px;
}

.progress {
  max-width: 500px;
  height: 5px;
  background: #292929;
  margin: 25px auto;
}

.progress div {
  height: 100%;
  width: 100%;
  background: #d7b56d;
  transition: width .5s;
}

.price {
  margin-top: 45px;
  color: #aaa;
  letter-spacing: 2px;
  font-size: 11px;
}

.price strong {
  color: #fff;
  font-size: 25px;
  display: inline-block;
  margin-top: 8px;
}

.register {
  text-align: center;
  background: #111;
  max-width: none;
}

.big-btn {
  margin-top: 20px;
}

.faq details {
  border-bottom: 1px solid #292929;
  padding: 25px 0;
}

.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.faq details p {
  color: #96928a;
  margin-top: 15px;
  max-width: 700px;
}

footer {
  padding: 60px 8% 100px;
  border-top: 1px solid #222;
  color: #777;
}

footer p {
  margin-top: 10px;
  font-size: 12px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 700px) {

  .navbar {
    padding: 20px;
  }

  .nav-btn {
    display: none;
  }

  .hero-content {
    padding: 130px 25px 100px;
  }

  h1 {
    font-size: 49px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-text,
  .body-text {
    font-size: 15px;
  }

  .section {
    padding: 80px 25px;
  }

  .features {
    display: block;
  }

  .feature {
    padding: 40px 25px;
    border-bottom: 1px solid #252525;
  }

  .stats {
    gap: 25px;
    justify-content: space-between;
  }

  .stats strong {
    font-size: 45px;
  }

  .timeline {
    display: block;
  }

  .timeline div {
    margin-bottom: 40px;
  }

  .counter-number {
    font-size: 80px;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: rgba(8,8,8,.95);
    z-index: 99;
  }

  .mobile-cta a {
    display: block;
    text-align: center;
    background: #d7b56d;
    color: #080808;
    padding: 14px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
  }
}
