:root {
  --bg: #0d0d0e;
  --card: #1b1b1d;
  --accent: #ffce00;
  --text: #f4f4f4;
  --sub: #b5b5b5;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* === NAV === */
header { background: #111316; border-bottom: 1px solid #222; }
nav .nav-container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem;
}
.logo { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: 1.25rem; }
.logo img { width: 42px; height: 42px; }

/* === BUTTONS === */
.btn {
  background: var(--accent); color: #000;
  padding: .55rem 1.1rem; border-radius: .5rem; font-weight: 700;
  display: inline-block; transition: background .2s ease, padding .2s ease;
}
.btn:hover { background: #e6b800; }
.social-btn { padding: .4rem .8rem; font-size: .9rem; }

/* === ORIGINAL HERO (still used on other pages) === */
.hero {
  padding: 5rem 1.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero img { width: 160px; margin-bottom: 1.25rem; }
.hero h1 { font-size: 2.5rem; margin-bottom: .5rem; }
.hero p { color: var(--sub); max-width: 600px; margin-bottom: 1.25rem; }

/* === SECTIONS === */
.section { max-width: 960px; margin: 0 auto; padding: 3rem 1.5rem; }
h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.accent { color: var(--accent); }
.card {
  background: var(--card); border: 1px solid #2a2a2e; border-radius: 1rem;
  padding: 1.5rem; margin-top: 1rem;
}
.card h3 { margin-bottom: .75rem; }
ul { list-style: none; }
ul li { margin: .5rem 0; }

/* === TIMELINE === */
.timeline { position: relative; margin-top: 1rem; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 0; bottom: 0;
  width: 2px; background: var(--accent);
}
.timeline .item { position: relative; margin-bottom: 2rem; padding-left: 1.5rem; }
.timeline .dot {
  position: absolute; left: -2px; top: 0;
  width: 12px; height: 12px; background: var(--accent); border-radius: 50%;
}
.timeline .content h4 { margin: 0 0 .25rem; }
.timeline .content p { margin: 0; color: var(--sub); }

/* === FOOTER === */
footer {
  padding: 2rem .5rem; text-align: center; font-size: .85rem;
  color: var(--sub); border-top: 1px solid #222;
}
.social-footer { margin-top: .5rem; }
.social-footer a { margin: 0 .5rem; color: var(--accent); }

/* === 🚀 NEW: LIVE HERO BANNER === */
.banner-live { background: var(--accent); color: #000; padding: 2.5rem 1.5rem; text-align: center; }
.banner-wrapper {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.logo-live { width: 120px; border-radius: 50%; box-shadow: 0 0 0 4px rgba(0,0,0,.25); }
.banner-text h1 { font-size: 2.25rem; margin-bottom: .5rem; }
.banner-text p { font-size: 1.125rem; margin-bottom: 1rem; }
.btn.cta { background: #000; color: var(--accent); }
.btn.cta:hover { background: #111; }

/* === 🔑 TRUST GRID === */
.trust-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1rem;
}
.trust-grid .card { background: var(--card); }

/* === 🛒 HOW-TO-BUY STEPS === */
.steps { list-style: none; margin-top: 1rem; }
.steps li { display: flex; gap: 1rem; margin-bottom: 1rem; }
.steps .num {
  background: var(--accent); color: #000; font-weight: 700;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.steps p { margin: 0; }

/* === MOBILE === */
@media (max-width: 600px) {
  nav .nav-container { flex-direction: column; padding: .5rem 1rem; }
  .social-btn { margin-top: .5rem; padding: .3rem .75rem; font-size: .85rem; }
  .hero { padding: 3rem 1rem; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 2rem 1rem; }
  .card { padding: 1rem; }
  footer { padding: 1.5rem 1rem; }
  .logo-live { width: 96px; }
  .banner-text h1 { font-size: 1.75rem; }
}
/* === REFINE HEADER WEIGHTS === */
.logo { font-size: 1.75rem; }

/* === HERO TYPOGRAPHY === */
.main-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
}
.subline {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: .5rem;
}

/* === LIVE TAG === */
.live-tag {
  background: #000;
  color: var(--accent);
  padding: .1em .45em;
  border-radius: .35em;
  font-size: .95rem;
  letter-spacing: .5px;
}

/* Ensure accent text in the yellow banner is visible */
.banner-live .accent { color: #000; }

/* Mobile tweaks */
@media (max-width: 600px) {
  .main-title { font-size: 2.25rem; }
  .subline { font-size: 1.1rem; }
}
