:root {
  --bg: #05070d;
  --bg-2: #08101a;
  --panel: #0b111a;
  --gold: #caa12c;
  --gold-bright: #f6d15d;
  --text: #f5f7fa;
  --muted: #c8ced8;
  --border: rgba(255, 255, 255, 0.1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #03050a 0%, var(--bg-2) 45%, #070b13 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.hidden { display: none; }
.page { min-height: 100vh; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 80px 0; }
.footer-row, .hero-grid, .grid-2, .grid-3, .badges { display: grid; gap: 16px; }

/* Site header / navigation */
.site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5, 7, 13, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(202,161,44,.14);
  padding: 0;
}
.site-header .container {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
}
.site-header .brand img { width: 40px; height: 40px; }
.site-header .brand-copy .brand-name { font-size: 14px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.site-header .brand-copy p { display: none; }

.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: var(--muted); transition: color 0.2s ease, background 0.2s ease;
}
.site-nav a:hover { color: var(--gold-bright); background: rgba(202,161,44,.08); }
.site-nav a.active { color: var(--gold-bright); background: rgba(202,161,44,.1); }

.header-right { display: flex; align-items: center; gap: 14px; }
.header-right .btn { padding: 10px 18px; font-size: 14px; }

.mobile-menu-btn {
  display: none; background: none; border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); padding: 8px 10px; cursor: pointer; font-size: 18px; line-height: 1;
}

/* Sticky navigation (legacy, now hidden) */
.sticky-nav { display: none; }

.brand { display: flex; gap: 14px; align-items: center; }
.brand img, .founder-photo { border-radius: 20px; border: 1px solid rgba(255,255,255,.1); object-fit: cover; }
.brand img { width: 64px; height: 64px; }
.brand-copy .brand-name { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; display: block; }
.brand-copy p { margin: 6px 0 0; color: var(--gold); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.nav-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.nav-actions-start { justify-content: flex-start; }
.hero { padding: 48px 0 72px; border-bottom: 1px solid rgba(202,161,44,.18); }
.hero-grid { grid-template-columns: 1.1fr .9fr; align-items: start; gap: 28px; }
.headline, .card h3, .card h2 { margin: 0; }
.headline { font-size: clamp(32px, 4vw, 52px); }
.lead { color: var(--muted); font-size: 20px; line-height: 1.7; }
.lead-small { font-size: 18px; }
.eyebrow {
  display: inline-flex; width: fit-content; margin-bottom: 18px; padding: 10px 14px;
  border-radius: 999px; border: 1px solid rgba(202,161,44,.22); background: rgba(202,161,44,.08);
  color: var(--gold-bright); text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 700;
}
.card {
  border: 1px solid var(--border); border-radius: 28px; background: rgba(255,255,255,.04);
  padding: 28px; box-shadow: 0 8px 40px rgba(0,0,0,.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,.28);
  border-color: rgba(202,161,44,.25);
}
.compact-card { padding: 22px; }
.card-dark { background: linear-gradient(180deg, #0d131d 0%, #0a1018 100%); border-color: rgba(202,161,44,.16); }
.badges { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 28px; }
.badge {
  padding: 16px; border-radius: 18px; border: 1px solid var(--border); background: rgba(255,255,255,.04); color: #e3e8ef;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.badge:hover { border-color: rgba(202,161,44,.3); background: rgba(202,161,44,.06); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.list { display: grid; gap: 14px; }
.list-item {
  display: flex; gap: 12px; padding: 16px; border-radius: 18px;
  border: 1px solid rgba(202,161,44,.14); background: rgba(202,161,44,.06);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.list-item:hover { background: rgba(202,161,44,.1); border-color: rgba(202,161,44,.25); }
.dot { width: 10px; height: 10px; border-radius: 999px; background: var(--gold-bright); margin-top: 8px; flex: 0 0 10px; }
.dot-muted { background: #555e6e; }
.btn, .btn-secondary {
  border-radius: 999px; padding: 14px 22px; font-weight: 700; border: 1px solid transparent; cursor: pointer;
  display: inline-flex; justify-content: center; align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn {
  background: linear-gradient(135deg, #f4d66a 0%, #caa12c 55%, #9f7b16 100%); color: #111318;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(202,161,44,.35);
}
.btn-secondary { background: rgba(255,255,255,.05); color: white; border-color: rgba(255,255,255,.12); }
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

/* Metrics cards */
.metric-card { text-align: center; padding: 32px 20px; }
.metric-number { font-size: 42px; font-weight: 800; color: var(--gold-bright); line-height: 1.1; }
.metric-label { color: var(--muted); font-size: 16px; margin-top: 8px; }

/* Testimonial cards */
.testimonial-card { display: flex; flex-direction: column; justify-content: space-between; }
.testimonial-text {
  font-size: 18px; line-height: 1.7; color: var(--muted); font-style: italic; margin: 0 0 24px;
}
.testimonial-author { border-top: 1px solid var(--border); padding-top: 16px; }
.testimonial-name { font-weight: 700; font-size: 16px; }
.testimonial-role { color: var(--gold); font-size: 14px; margin-top: 4px; }

/* Platform badges */
.platforms { text-align: center; }
.platforms .eyebrow { margin: 0 auto 18px; }
.platform-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.platform-badge {
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border);
  background: rgba(255,255,255,.04); color: var(--muted); font-size: 14px; font-weight: 600;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.platform-badge:hover { border-color: rgba(202,161,44,.3); color: var(--gold-bright); }

.form { display: grid; gap: 14px; }
.input, .textarea, select.input {
  width: 100%; border-radius: 18px; border: 1px solid var(--border); background: rgba(255,255,255,.05);
  color: white; padding: 14px 16px; font-family: inherit; font-size: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
select.input { appearance: auto; -webkit-appearance: menulist; cursor: pointer; background: #000000; color: #ffffff; }
select.input option { background: #000000; color: #ffffff; }
.input:focus, .textarea:focus {
  outline: none;
  border-color: rgba(202,161,44,.4);
  box-shadow: 0 0 0 3px rgba(202,161,44,.1);
}
.textarea { min-height: 130px; resize: vertical; }
.notice { color: var(--muted); font-size: 14px; min-height: 20px; }
.ghl-form-container { width: 100%; min-height: 984px; border-radius: 12px; overflow: hidden; }
.founder-photo { width: 120px; height: 120px; }
.price { font-size: 28px; font-weight: 800; }
.step-number { color: var(--gold-bright); font-size: 30px; font-weight: 800; margin-bottom: 12px; }
.footer { border-top: 1px solid rgba(255,255,255,.1); padding: 28px 0 40px; background: #04060b; }
.footer-row { grid-template-columns: 1fr auto; align-items: center; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; color: #99a3b0; }
.footer-links a { transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-bright); }
.space-top { margin-top: 24px; }
.space-top-small { margin-top: 18px; }
/* Page hero for inner pages */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(202,161,44,.18);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1.08; margin: 0; }
.page-hero .lead { margin-top: 16px; max-width: 700px; }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,7,13,0.97); z-index: 150;
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  padding: 14px 28px; border-radius: 999px; font-size: 18px; font-weight: 600;
  color: var(--muted); transition: color 0.2s ease;
}
.mobile-nav-overlay a:hover, .mobile-nav-overlay a.active { color: var(--gold-bright); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: var(--text); font-size: 28px; cursor: pointer;
}

@media (max-width: 960px) {
  .nav, .hero-grid, .grid-2, .grid-3, .badges, .footer-row { grid-template-columns: 1fr; }
  .nav-actions { justify-content: flex-start; }
  .site-nav { display: none; }
  .mobile-menu-btn { display: block; }
}
