/* ============================================================
   DESIGN TOKENS — copied from builds.io production
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-body: #1e1449;
  --bg-hero: #321d76;
  --bg-footer: #1c1c7d;
  --bg-tab: #2c1f67;
  --bg-tab-active: #442a92;
  --bg-white: #ffffff;

  /* Accent / CTA */
  --gold: #ffba07;
  --gold-hover: #ffc933;
  --gold-text-on-dark: #ffba07;

  /* Text */
  --text-white: #ffffff;
  --text-light: rgba(255,255,255,0.65);
  --text-dim: rgba(255,255,255,0.45);
  --text-dark: #20124b;
  --text-dark-dim: #666;
  --text-dark-faint: #999;

  /* Semantic */
  --green: #2ecc71;
  --red: #e74c3c;
  --red-dim: rgba(231,76,60,0.5);

  /* Shape */
  --radius-pill: 24px;
  --radius-card: 12px;
  --card-shadow: 0 4px 12px rgba(0,0,0,0.10);
  --card-shadow-gold: 0 0 0 2px var(--gold);

  /* Font */
  --font: 'Nunito Sans', 'Nunito Sans Fallback', -apple-system, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  background: var(--bg-body);
  color: var(--text-white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }
img { display: block; max-width: 100%; }

/* ============================================================
   MOCKUP BADGE
   ============================================================ */
.mockup-badge {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--gold); color: var(--text-dark);
  text-align: center; font-size: 11px; font-weight: 700;
  padding: 3px 0; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 22px; z-index: 100;
  padding: 0 24px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 900; letter-spacing: 0.03em;
  color: var(--text-white); text-transform: uppercase;
}
.header-logo svg { opacity: 0.85; }
.header-logo .dot { color: var(--gold); }
.header-nav {
  display: flex; align-items: center; gap: 24px;
  list-style: none;
}
.header-nav a {
  font-size: 14px; color: var(--text-light);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--text-white); }
.header-nav .active { color: var(--gold); font-weight: 700; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 28px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em;
  border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--text-dark); }
.btn-gold:hover { background: var(--gold-hover); }
.btn-outline {
  background: transparent; color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }
.btn-sm { height: 35px; padding: 0 23px; font-size: 12px; }
.btn-full { width: 100%; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   ICONS
   ============================================================ */
.ico { flex-shrink: 0; font-size: 13px; margin-top: 1px; }
.ico-yes { color: var(--green); }
.ico-no { color: var(--red-dim); }
.dim { color: var(--text-dark-faint); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px; text-align: center;
  font-size: 12px; color: var(--text-dim);
}
.footer a { color: var(--text-light); margin: 0 10px; }
.footer a:hover { color: var(--text-white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .header-nav { gap: 12px; }
  .header-nav a { font-size: 12px; }
}
