/* =============================================================
 * The Closing Blueprint — marketing site shared styles
 * Used by index.html, recruit.html, invest.html, pricing.html
 *
 * Mobile-first, black & gold brand, matches the OS design system
 * ============================================================= */

:root {
  --bg: #0A0A0A;
  --bg-elevated: #141414;
  --bg-card: #161616;
  --line: #262626;
  --line-soft: #1f1f1f;
  --gold: #D4AF37;
  --gold-bright: #F1C857;
  --gold-deep: #B8941F;
  --ink: #F5F5F5;
  --muted: #9A9A9A;
  --muted-2: #6E6E6E;
  --ok: #3FB950;
  --warn: #E3A008;
  --danger: #F0533F;
  --radius: 16px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(212,175,55,.10) 0%, transparent 60%),
    radial-gradient(40% 30% at 10% 100%, rgba(212,175,55,.05) 0%, transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
}

a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--gold); }

/* ---- Typography ---- */
.serif { font-family: 'Bricolage Grotesque', Georgia, serif; }
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.1;
}
h1 { font-size: clamp(34px, 7vw, 64px); }
h2 { font-size: clamp(26px, 4.5vw, 42px); }
h3 { font-size: clamp(18px, 2.6vw, 24px); }
p  { margin: 0 0 14px; color: #d3d3d3; }

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11.5px;
  margin-bottom: 14px;
}

.gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Layout ---- */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.section { padding: 56px 0; position: relative; }
.section.hero { padding: 68px 0 32px; }
.section.tight { padding: 36px 0; }
@media (min-width: 720px) {
  .section { padding: 84px 0; }
  .section.hero { padding: 104px 0 60px; }
}

/* ---- Top nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #1a1a1a, #000);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', Georgia, serif;
  font-weight: 700; color: var(--gold); font-size: 15px; letter-spacing: .5px;
}
.brand-name {
  font-family: 'Bricolage Grotesque', Georgia, serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
}
.nav-links { display: none; gap: 22px; align-items: center; }
.nav-links a {
  color: var(--ink); font-size: 14px; font-weight: 500;
  text-decoration: none; opacity: .82;
}
.nav-links a:hover { opacity: 1; color: var(--gold-bright); }
.nav-cta {
  display: inline-block;
  padding: 9px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #0a0a0a !important;
  font-weight: 700; font-size: 13.5px;
  border-radius: 10px;
  letter-spacing: .2px;
}
@media (min-width: 760px) {
  .nav-links { display: flex; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .08s ease, filter .15s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #0a0a0a;
  box-shadow: 0 14px 38px rgba(212,175,55,.22);
}
.btn-gold:hover { filter: brightness(1.06); color: #0a0a0a; }
.btn-gold:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm { padding: 10px 16px; font-size: 13.5px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.note { color: var(--muted-2); font-size: 13px; margin-top: 10px; }

/* ---- Hero ---- */
.hero-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
  align-items: center;
}
.hero h1 { letter-spacing: -.03em; }
.hero p.sub {
  font-size: clamp(17px, 2.4vw, 21px);
  color: #cfcfcf;
  max-width: 56ch;
  margin-bottom: 22px;
}
.hero-stats {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.hero-stat .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  color: var(--muted); font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

/* ---- Cards ---- */
.cards {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.card h3 { font-size: 20px; margin-bottom: 8px; color: var(--ink); }
.card h3.gold-h { color: var(--gold); }
.card p { color: var(--muted); font-size: 14.5px; margin: 0; }
.card .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.3);
  margin-bottom: 14px;
  font-size: 18px;
  color: var(--gold);
}
@media (min-width: 720px) {
  .cards.cards-2 { grid-template-columns: 1fr 1fr; }
  .cards.cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards.cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .cards.cards-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Problem / bullets ---- */
.bullets { display: grid; gap: 10px; }
.bullet {
  background: rgba(212,175,55,.06);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
}

/* ---- Pricing ---- */
.tiers {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.tier {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.tier.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,175,55,.08), var(--bg-card) 30%);
  position: relative;
}
.tier.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #0a0a0a;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.tier h3 { font-size: 20px; margin-bottom: 4px; }
.tier .price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin: 14px 0 4px;
}
.tier .per { color: var(--muted-2); font-size: 13px; }
.tier .desc { color: var(--muted); font-size: 14px; margin: 12px 0 18px; }
.tier ul {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: grid; gap: 9px;
}
.tier li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.tier li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
.tier .btn { margin-top: auto; }
@media (min-width: 820px) {
  .tiers { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
}

/* ---- Quote / promise block ---- */
.promise {
  background: linear-gradient(180deg, rgba(212,175,55,.10), rgba(212,175,55,.02));
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--radius-lg);
  padding: 26px;
  font-family: 'Bricolage Grotesque', Georgia, serif;
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 600;
  line-height: 1.45;
}

/* ---- FAQ ---- */
.faq { display: grid; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.faq-item h3 { font-size: 16.5px; margin-bottom: 6px; color: var(--ink); }
.faq-item p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 36px 22px;
  text-align: center;
  color: var(--muted-2);
  font-size: 12.5px;
  line-height: 1.7;
}
.footer .links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-bottom: 14px; }
.footer .links a { color: var(--muted); }
.footer .links a:hover { color: var(--gold-bright); }

/* ---- Misc helpers ---- */
.center { text-align: center; }
.muted { color: var(--muted); }
.divider { height: 1px; background: var(--line-soft); margin: 28px 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px; font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px var(--gold);
}
