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

body {
  background: #0A0A0A;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.gold { color: #C9A84C; }
.glow-line { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, #C9A84C44, transparent); }

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 0.5px solid #222;
  background: #0A0A0A;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { font-size: 20px; font-weight: 800; letter-spacing: 4px; color: #C9A84C; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: #888; font-size: 14px; text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover { color: #C9A84C; }
.nav-cta {
  background: #C9A84C; color: #0A0A0A;
  padding: 10px 24px; border-radius: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: #E0BC6A; }

/* HERO */
.hero {
  min-height: 90vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem;
}
.hero-badge {
  border: 0.5px solid #C9A84C; color: #C9A84C;
  font-size: 11px; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 2rem;
}
.hero h1 { font-size: 62px; font-weight: 800; line-height: 1.1; letter-spacing: -1px; max-width: 800px; margin-bottom: 1.5rem; }
.hero p { font-size: 18px; color: #888; max-width: 520px; line-height: 1.7; margin-bottom: 3rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  background: #C9A84C; color: #0A0A0A;
  padding: 16px 36px; border-radius: 6px;
  font-size: 14px; font-weight: 700; letter-spacing: 1px;
  border: none; cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.btn-primary:hover { background: #E0BC6A; }
.btn-secondary {
  background: transparent; color: #fff;
  padding: 16px 36px; border-radius: 6px;
  font-size: 14px; font-weight: 600; letter-spacing: 1px;
  border: 0.5px solid #333; cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-secondary:hover { border-color: #C9A84C; color: #C9A84C; }
.stats { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat.mid { border-left: 0.5px solid #222; border-right: 0.5px solid #222; padding: 0 3rem; }
.stat-num { font-size: 28px; font-weight: 800; color: #C9A84C; }
.stat-label { font-size: 12px; color: #555; letter-spacing: 1px; margin-top: 4px; }

/* SECTIONS */
.section { padding: 6rem 3rem; }
.section-label { font-size: 11px; letter-spacing: 3px; color: #C9A84C; text-align: center; margin-bottom: 1rem; }
.section-title { font-size: 38px; font-weight: 800; text-align: center; margin-bottom: 1rem; }
.section-sub { font-size: 16px; color: #666; text-align: center; max-width: 500px; margin: 0 auto 4rem; line-height: 1.7; }

/* TOOLS */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
.tool-card {
  background: #111; border: 0.5px solid #222; border-radius: 12px;
  padding: 2rem; text-decoration: none; color: inherit;
  transition: border-color 0.2s; display: block;
}
.tool-card:hover { border-color: #C9A84C; }
.tool-card.coming { border: 0.5px solid #C9A84C22; background: #0F0E08; }
.tool-icon { font-size: 20px; color: #C9A84C; margin-bottom: 1rem; }
.tool-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 0.5rem; }
.tool-card p { font-size: 13px; color: #666; line-height: 1.6; }
.tool-badge {
  font-size: 10px; letter-spacing: 1px; color: #C9A84C;
  background: #C9A84C15; padding: 3px 10px; border-radius: 20px;
  display: inline-block; margin-top: 1rem;
}

/* PRICING */
.pricing { background: #080808; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.price-card { background: #111; border: 0.5px solid #222; border-radius: 12px; padding: 2rem; }
.price-card.featured { border: 1.5px solid #C9A84C; background: #0F0E08; }
.featured-badge {
  font-size: 10px; letter-spacing: 2px; color: #0A0A0A;
  background: #C9A84C; padding: 4px 12px; border-radius: 20px;
  display: inline-block; margin-bottom: 1rem;
}
.price-name { font-size: 11px; letter-spacing: 2px; color: #888; }
.price-tag { font-size: 36px; font-weight: 800; margin: 1rem 0 0.5rem; }
.price-tag span { font-size: 14px; color: #666; font-weight: 400; }
.price-desc { font-size: 13px; color: #555; margin-bottom: 1.5rem; line-height: 1.6; }
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li { font-size: 13px; color: #888; padding: 7px 0; border-bottom: 0.5px solid #1A1A1A; }
.price-btn {
  display: block; width: 100%; padding: 12px; border-radius: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  cursor: pointer; border: none; text-align: center; text-decoration: none; transition: all 0.2s;
}
.price-btn-outline { background: transparent; color: #C9A84C; border: 0.5px solid #C9A84C !important; }
.price-btn-gold { background: #C9A84C; color: #0A0A0A; }
.price-btn-gold:hover { background: #E0BC6A; }

/* WAITLIST */
.waitlist { padding: 6rem 3rem; text-align: center; }
.waitlist h2 { font-size: 42px; font-weight: 800; margin-bottom: 1rem; }
.waitlist p { font-size: 16px; color: #666; margin-bottom: 2.5rem; }
.waitlist-form { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; max-width: 500px; margin: 0 auto; }
.waitlist-input {
  flex: 1; min-width: 220px; background: #111;
  border: 0.5px solid #333; border-radius: 6px;
  padding: 14px 18px; color: #fff; font-size: 14px; outline: none; font-family: inherit;
}
.waitlist-input:focus { border-color: #C9A84C; }
.waitlist-input::placeholder { color: #444; }
.waitlist-confirm { margin-top: 1rem; font-size: 14px; min-height: 24px; }

/* FOOTER */
footer {
  padding: 2rem 3rem;
  border-top: 0.5px solid #1A1A1A;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-size: 16px; font-weight: 800; letter-spacing: 4px; color: #C9A84C; }
.footer-text { font-size: 12px; color: #444; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links span { font-size: 12px; color: #444; cursor: pointer; transition: color 0.2s; }
.footer-links span:hover { color: #C9A84C; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .section { padding: 4rem 1.5rem; }
  .section-title { font-size: 28px; }
  .stat.mid { border: none; padding: 0; }
  footer { flex-direction: column; text-align: center; }
}
