:root {
  --gold:          #c9a22a;
  --gold-bright:   #deab2c;
  --gold-muted:    #a38f50;
  --gold-dim:      #7a6a35;
  --gold-glow:     rgba(201,162,42,0.15);
  --gold-glow-sm:  rgba(201,162,42,0.08);
  --black:         #0a0a0a;
  --black-warm:    #111108;
  --black-raised:  #181610;
  --black-border:  #2a2618;
  --white:         #ffffff;
  --white-90:      rgba(255,255,255,0.90);
  --white-60:      rgba(255,255,255,0.60);
  --white-30:      rgba(255,255,255,0.30);
  --white-10:      rgba(255,255,255,0.07);
  --muted:         #8a7f60;
  --shadow-md:     0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold:   0 4px 28px rgba(201,162,42,0.25);
  --shadow-gold-lg:0 8px 48px rgba(201,162,42,0.18);
  --radius:        16px;
  --radius-sm:     8px;
  --radius-pill:   999px;
  --max:           1120px;
  --font:          "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── NAV ───────────────────────────────────────────────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--black-border);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
}
.nav-brand img { height: 36px; width: auto; }
.nav-wordmark {
  font-size: 17px; font-weight: 800; letter-spacing: 0.08em;
  color: var(--gold); text-transform: uppercase;
}
.nav-wordmark span { color: var(--white-60); font-weight: 400; font-size: 11px; letter-spacing: 0.14em; display: block; margin-top: -2px; }
nav { display: flex; gap: 4px; align-items: center; }
nav a {
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500; color: var(--white-60);
  transition: color 0.15s, background 0.15s;
}
nav a:hover { color: var(--white); background: var(--white-10); }
nav a.cta {
  background: var(--gold); color: var(--black); font-weight: 700;
  padding: 9px 20px; box-shadow: var(--shadow-gold); margin-left: 8px;
}
nav a.cta:hover { background: var(--gold-bright); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 65% 40%, rgba(201,162,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 32px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: rgba(201,162,42,0.10); border: 1px solid var(--gold-dim);
  color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 20px; color: var(--white);
}
h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 17px; line-height: 1.65; color: var(--white-60);
  max-width: 50ch; margin-bottom: 32px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius-pill); border: 1px solid transparent;
  font-family: var(--font); font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer; transition: all 0.18s ease; text-decoration: none; white-space: nowrap;
}
.btn.primary { background: var(--gold); border-color: var(--gold); color: var(--black); box-shadow: var(--shadow-gold); }
.btn.primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); box-shadow: var(--shadow-gold-lg); transform: translateY(-1px); }
.btn.secondary { background: transparent; border-color: var(--gold-dim); color: var(--gold); }
.btn.secondary:hover { border-color: var(--gold); background: var(--gold-glow-sm); }
.btn.lg { padding: 16px 32px; font-size: 15px; }
.hero-note { font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }

/* Hero stats panel */
.hero-panel {
  background: var(--black-warm);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
/* crosshair corners */
.hero-panel::after {
  content: "";
  position: absolute; top: 10px; right: 10px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--gold-dim); border-right: 1px solid var(--gold-dim);
}
.panel-corner-bl {
  position: absolute; bottom: 10px; left: 10px;
  width: 14px; height: 14px;
  border-bottom: 1px solid var(--gold-dim); border-left: 1px solid var(--gold-dim);
}
.panel-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--black-border);
}
.panel-header-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-muted); margin-bottom: 4px;
}
.panel-header-title { font-size: 14px; font-weight: 600; color: var(--white-90); }
.stat-list { padding: 8px 0; }
.stat {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--black-border);
  transition: background 0.15s;
}
.stat:last-child { border-bottom: none; }
.stat:hover { background: var(--white-10); }
.stat-num {
  font-size: 30px; font-weight: 900; color: var(--gold);
  line-height: 1; min-width: 70px; letter-spacing: -0.02em;
}
.stat-text { padding-top: 2px; }
.stat-title { font-size: 13px; font-weight: 600; color: var(--white-90); margin-bottom: 3px; }
.stat-desc { font-size: 12px; color: var(--muted); line-height: 1.45; }
.panel-footer {
  padding: 14px 22px;
  background: rgba(201,162,42,0.05);
  border-top: 1px solid var(--black-border);
  font-size: 12px; color: var(--muted); text-align: center; letter-spacing: 0.03em;
}
.panel-footer span { color: var(--gold); font-weight: 600; }

/* ── SECTION STRUCTURE ─────────────────────────────────── */
section { padding: 64px 0; }
.section-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-muted); margin-bottom: 12px;
}
h2 {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.12;
  letter-spacing: -0.03em; color: var(--white); margin-bottom: 14px;
}
h2 em { font-style: normal; color: var(--gold); }
.section-sub {
  font-size: 16px; color: var(--white-60); line-height: 1.65;
  max-width: 58ch; margin-bottom: 40px;
}

/* ── PROBLEM SECTION ───────────────────────────────────── */
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.problem-card {
  background: var(--black-warm); border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.problem-card:hover { border-color: var(--gold-dim); box-shadow: var(--shadow-gold); }
.problem-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(201,162,42,0.10); border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; margin-bottom: 16px;
}
.problem-card h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.problem-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── HOW IT WORKS ──────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps::before {
  content: ""; position: absolute; left: 19px; top: 20px; bottom: 20px;
  width: 1px; background: linear-gradient(to bottom, var(--gold), var(--gold-dim), transparent);
}
.step { display: flex; gap: 20px; align-items: flex-start; padding: 18px 0; position: relative; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--black);
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold); position: relative; z-index: 1;
}
.step-body { padding-top: 6px; }
.step-body h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.step-tag {
  display: inline-block; margin-top: 8px; padding: 3px 10px;
  border-radius: var(--radius-pill); background: rgba(201,162,42,0.10);
  border: 1px solid var(--gold-dim); color: var(--gold-muted);
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
}

/* ── ROI SECTION ───────────────────────────────────────── */
.roi-block {
  background: var(--black-warm); border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 52px; position: relative; overflow: hidden;
}
.roi-block::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
/* crosshair corners on roi block */
.roi-tl, .roi-tr, .roi-bl, .roi-br {
  position: absolute; width: 16px; height: 16px; border-color: var(--gold-dim); border-style: solid;
}
.roi-tl { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.roi-tr { top: 14px; right: 14px; border-width: 1px 1px 0 0; }
.roi-bl { bottom: 14px; left: 14px; border-width: 0 0 1px 1px; }
.roi-br { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }
.roi-glow {
  position: absolute; top: 0; right: 0;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,42,0.06) 0%, transparent 70%);
  transform: translate(30%, -30%); pointer-events: none;
}
.roi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 36px 0; }
.roi-card {
  background: rgba(0,0,0,0.3); border: 1px solid var(--black-border);
  border-radius: var(--radius-sm); padding: 24px;
  transition: border-color 0.2s;
}
.roi-card:hover { border-color: var(--gold-dim); }
.roi-num { font-size: 38px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 10px; letter-spacing: -0.02em; }
.roi-label { font-size: 13px; color: var(--white-60); line-height: 1.5; }
.roi-label strong { color: var(--white); display: block; margin-bottom: 4px; font-weight: 600; }
.roi-divider { height: 1px; background: var(--black-border); margin: 32px 0; }
.roi-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.roi-cta-text { font-size: 20px; font-weight: 700; color: var(--white); flex: 1; line-height: 1.3; }
.roi-cta-text em { font-style: normal; color: var(--gold); }

/* ── WHAT'S INCLUDED ───────────────────────────────────── */
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.includes-card {
  background: var(--black-warm); border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 28px;
}
.includes-card h3 {
  font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px; color: var(--white);
}
.includes-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.includes-list li {
  font-size: 13px; color: var(--muted); display: flex;
  align-items: flex-start; gap: 10px; line-height: 1.5;
}
.includes-list li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.includes-list.excluded li::before { content: "✗"; color: var(--black-border); }
.includes-list.excluded li { color: #4a4535; }

/* ── PILOT ─────────────────────────────────────────────── */
.pilot-card {
  background: var(--black-warm); border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 48px; text-align: center;
  position: relative; overflow: hidden;
}
.pilot-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-muted), transparent);
}
.pilot-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: var(--radius-pill);
  background: rgba(201,162,42,0.10); border: 1px solid var(--gold-dim);
  color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.pilot-card h2 { margin-bottom: 14px; }
.pilot-card .sub { font-size: 16px; color: var(--white-60); max-width: 52ch; margin: 0 auto 36px; line-height: 1.6; }
.pilot-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 0 0 36px; text-align: left; }
.pilot-step {
  background: rgba(0,0,0,0.3); border: 1px solid var(--black-border);
  border-radius: var(--radius-sm); padding: 20px;
}
.pilot-step-num {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-muted); margin-bottom: 8px;
}
.pilot-step h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.pilot-step p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── CONTACT / BOOKING ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.form-card, .booking-card {
  background: var(--black-warm); border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 32px;
}
.form-card h2, .booking-card h2 { font-size: 22px; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
form { display: grid; gap: 14px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { font-size: 12px; font-weight: 600; color: var(--muted); display: block; margin-bottom: 5px; letter-spacing: 0.02em; }
input, select, textarea {
  width: 100%; padding: 11px 14px;
  border-radius: var(--radius-sm); border: 1px solid var(--black-border);
  background: rgba(0,0,0,0.3); font-family: var(--font);
  font-size: 14px; color: var(--white); outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input::placeholder, textarea::placeholder { color: #3a3520; }
select option { background: var(--black-warm); color: var(--white); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold-dim); box-shadow: 0 0 0 3px rgba(201,162,42,0.08);
}
textarea { min-height: 100px; resize: vertical; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.fineprint { font-size: 12px; color: var(--muted); line-height: 1.5; }
.form-status { font-size: 13px; color: var(--muted); min-height: 18px; margin-top: 4px; }
.form-status.success { color: #4caf82; }
.form-status.error { color: #e57373; }
.booking-sub { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }
.booking-embed {
  border: 1px solid var(--black-border); border-radius: var(--radius-sm);
  overflow: hidden; background: #fff;
}
.booking-embed .calendly-inline-widget {
  width: 100% !important; min-height: 680px; height: 680px !important;
}

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  margin-top: 80px;
  border-top: 1px solid var(--black-border);
  background: var(--black-warm);
}
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 48px 24px 28px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 32px; border-bottom: 1px solid var(--black-border); margin-bottom: 24px;
}
.footer-brand-name {
  font-size: 20px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.footer-tagline { font-size: 13px; color: var(--muted); max-width: 32ch; line-height: 1.6; }
.footer-contact { font-size: 13px; color: var(--muted); line-height: 2; }
.footer-contact a { color: var(--gold-muted); transition: color 0.15s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--muted);
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--gold-muted); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .how-grid, .problem-grid,
  .roi-grid, .includes-grid, .contact-grid { grid-template-columns: 1fr; }
  .pilot-steps { grid-template-columns: 1fr; }
  .roi-block { padding: 32px 24px; }
  .pilot-card { padding: 28px 20px; }
}
@media (max-width: 580px) {
  .wrap { padding: 0 16px; }
  section { padding: 44px 0; }
  .hero { padding: 52px 0 40px; }
  .row2 { grid-template-columns: 1fr; }
  nav a:not(.cta) { display: none; }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .roi-cta { flex-direction: column; }
  .form-card, .booking-card { padding: 20px; }
}
