/* =========================================================================
   Bounty — shared site styles for marketing / auth pages
   Pairs with /assets/nav.js. Dark theme, lime accent — matches the brand.
   ========================================================================= */
:root {
  --bg: #0a0613;
  --bg-elev: #15101f;
  --bg-card: #120d1e;
  --text: #ffffff;
  --text-dim: #a8a8b3;
  --text-muted: #6a6a75;
  --lime: #c5f23d;
  --lime-dim: #9bc52a;
  --lime-glow: rgba(197, 242, 61, 0.35);
  --lavender: #c8b3ff;
  --purple: #7d4dff;
  --border: rgba(255, 255, 255, 0.08);
  --border-mid: rgba(255, 255, 255, 0.14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body { min-height: 100vh; overflow-x: hidden; }
a { color: inherit; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 22px; }
@media (min-width: 900px) { .wrap { padding: 0 40px; } }

/* ---- Hero / sections ---- */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.hero { padding: 72px 0 48px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
h1 {
  font-weight: 800;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 20px;
}
h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
h3 {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 52ch;
  margin: 0 auto 32px;
}
.muted { color: var(--text-dim); line-height: 1.6; }
@media (min-width: 900px) {
  h1 { font-size: 68px; }
  h2 { font-size: 40px; }
  .hero { padding: 96px 0 64px; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}
.btn-primary {
  background: var(--lime);
  color: #0a0e00;
  box-shadow: 0 0 0 1px var(--lime), 0 10px 28px -10px var(--lime-glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--lime), 0 16px 36px -12px var(--lime-glow); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-mid); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Cards / grids ---- */
.grid { display: grid; gap: 18px; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.card h3 { color: var(--text); }
.card p { color: var(--text-dim); line-height: 1.55; font-size: 15px; }
.card-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(197, 242, 61, 0.1);
  color: var(--lime);
  margin-bottom: 16px;
  font-size: 22px;
}
.step-num {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: var(--lime);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

/* ---- Pricing ---- */
.price-grid { display: grid; gap: 20px; max-width: 980px; margin: 0 auto; }
@media (min-width: 860px) { .price-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.plan.featured { border-color: var(--lime); box-shadow: 0 0 0 1px var(--lime), 0 20px 60px -30px var(--lime-glow); }
.plan .tag { font-size: 13px; font-weight: 600; color: var(--lime); margin-bottom: 6px; }
.plan .price { font-size: 44px; font-weight: 800; letter-spacing: -0.04em; }
.plan .price span { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.plan ul { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 12px; }
.plan li { display: flex; gap: 10px; font-size: 15px; color: var(--text-dim); }
.plan li::before { content: ''; flex: none; width: 18px; height: 18px; margin-top: 1px; border-radius: 50%;
  background: rgba(197,242,61,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c5f23d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }
.plan .btn { margin-top: auto; width: 100%; }

/* ---- Auth / forms ---- */
.auth-shell { display: flex; min-height: calc(100vh - 70px); align-items: center; justify-content: center; padding: 40px 22px 64px; }
.auth-card {
  width: 100%; max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px 30px;
}
.auth-card h1 { font-size: 30px; margin-bottom: 8px; }
.auth-card .sub { color: var(--text-dim); font-size: 15px; margin-bottom: 26px; }
.field { margin-bottom: 16px; text-align: left; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--text-dim); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 13px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(197,242,61,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form-note a { color: var(--lavender); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }
.divider { display: flex; align-items: center; gap: 14px; color: var(--text-muted); font-size: 13px; margin: 22px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ---- CTA band ---- */
.cta-band {
  text-align: center;
  background: linear-gradient(180deg, rgba(197,242,61,0.06), rgba(197,242,61,0.02));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 28px;
  margin: 24px 0;
}

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--border); margin-top: 48px; padding: 44px 0 56px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 40px 64px; justify-content: space-between; }
.footer-brand { max-width: 240px; }
.footer-brand .logo { font-weight: 800; font-size: 26px; letter-spacing: -0.055em; }
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin-top: 12px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; font-size: 15px; padding: 5px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { color: var(--text-muted); font-size: 13px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
