:root {
  --bg: #0a0c0a;
  --bg-elev: #14171518;
  --bg-card: #161a17;
  --bg-card-2: #1c211e;
  --line: #232826;
  --text: #f4f1e8;
  --text-dim: #b3b8b1;
  --text-mute: #7d847e;
  --accent: #2fd277;
  --accent-deep: #14a653;
  --gold: #d3b06a;
  --max: 1180px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 12, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #06160d;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.brand-name { font-size: 15px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #06160d !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: #4be38c; }

/* ---------- Hero ---------- */
.hero {
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 580px at 18% -10%, rgba(47, 210, 119, 0.16), transparent 60%),
    radial-gradient(900px 540px at 92% 10%, rgba(211, 176, 106, 0.07), transparent 60%),
    var(--bg);
}
.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 18px;
}
.eyebrow.centered { text-align: center; }

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 17ch;
}
.accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-dim);
  max-width: 62ch;
  margin: 0 0 36px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #06160d;
}
.btn-primary:hover { background: #4be38c; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ---------- Stats ---------- */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.012), transparent);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  text-align: left;
}
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 56px);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.stat:nth-child(1) .stat-num { color: var(--accent); }
.stat:nth-child(4) .stat-num { color: var(--gold); }
.stat-label {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.4;
}

/* ---------- Band ---------- */
.band {
  padding: 110px 0;
}
.band-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.h-section {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.h-section.centered { text-align: center; }
.lede {
  font-size: 18.5px;
  color: var(--text-dim);
  max-width: 60ch;
  margin: 0 0 22px;
}
.lede strong { color: var(--text); font-weight: 600; }

/* ---------- Bios ---------- */
.bio {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.bio-alt { background: linear-gradient(180deg, rgba(47, 210, 119, 0.025), transparent); }
.bio-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.bio-grid--reverse { grid-template-columns: 1fr 280px; }
.bio-grid--reverse .bio-body { order: 1; }
.bio-grid--reverse .bio-photo { order: 2; }

.bio-photo { position: sticky; top: 100px; }
.photo-frame {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.photo-frame--owen {
  background:
    radial-gradient(circle at 30% 25%, rgba(47, 210, 119, 0.35), transparent 60%),
    linear-gradient(135deg, #1a221c, #0f1410);
}
.photo-frame--randall {
  background:
    radial-gradient(circle at 70% 30%, rgba(211, 176, 106, 0.28), transparent 60%),
    linear-gradient(135deg, #1d1f1a, #0f110d);
}
.photo-initials {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 88px;
  color: var(--text);
  letter-spacing: -0.04em;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bio-tag {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.bio-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 18px;
}
.bio-lede {
  font-size: 18px;
  color: var(--text-dim);
  margin: 0 0 28px;
  max-width: 60ch;
}
.resume {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.resume li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.55;
}
.resume li::before {
  content: '';
  position: absolute;
  top: 11px; left: 0;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(45deg);
}
.resume li strong { color: var(--text); font-weight: 600; }

/* ---------- Services ---------- */
.services {
  padding: 110px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(900px 500px at 50% -20%, rgba(47, 210, 119, 0.06), transparent 60%);
}
.services .h-section { margin-bottom: 16px; }
.services-sub {
  text-align: center;
  font-size: 16.5px;
  color: var(--text-dim);
  max-width: 64ch;
  margin: 0 auto 56px;
  line-height: 1.55;
}
.services-sub strong { color: var(--accent); font-weight: 700; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(47, 210, 119, 0.4); transform: translateY(-3px); }
.card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15.5px;
}
.card-feature {
  background: linear-gradient(160deg, rgba(47, 210, 119, 0.12), rgba(47, 210, 119, 0.02) 60%), var(--bg-card-2);
  border-color: rgba(47, 210, 119, 0.35);
  grid-column: span 1;
}
.card-feature .card-tag,
.card-accent .card-tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.card-tag--gold { color: var(--gold) !important; }
.card-accent {
  background: linear-gradient(160deg, rgba(211, 176, 106, 0.12), rgba(211, 176, 106, 0.02) 60%), var(--bg-card-2);
  border-color: rgba(211, 176, 106, 0.32);
}
.card-accent:hover { border-color: rgba(211, 176, 106, 0.55); }
.card-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 7px;
}
.card-list li {
  font-size: 14.5px;
  color: var(--text-dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.card-list li::before {
  content: '';
  position: absolute;
  top: 9px; left: 0;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---------- ExtractOS ---------- */
.extractos {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(1100px 600px at 80% 20%, rgba(47, 210, 119, 0.14), transparent 60%),
    radial-gradient(800px 480px at 10% 90%, rgba(211, 176, 106, 0.06), transparent 60%),
    var(--bg);
}
.extractos-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: start;
}
.extractos-copy .h-section { margin-bottom: 28px; }
.extractos-copy .lede { font-size: 17.5px; max-width: 56ch; }
.extractos-features {
  display: grid;
  gap: 18px;
}
.feat {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 22px 22px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feat:hover { border-color: rgba(47, 210, 119, 0.4); transform: translateY(-2px); }
.feat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  padding-top: 2px;
}
.feat h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--text);
  letter-spacing: -0.005em;
}
.feat p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---------- Disco Playbook ---------- */
.disco {
  padding: 130px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(211, 176, 106, 0.10), transparent 60%),
    radial-gradient(900px 540px at 80% 90%, rgba(47, 210, 119, 0.10), transparent 60%),
    var(--bg);
}
.disco .h-section { margin-bottom: 22px; }
.disco .lede.centered {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 70ch;
  font-size: 18px;
  color: var(--text-dim);
}
.disco-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.disco-stats--five { grid-template-columns: repeat(5, 1fr); }
.dstat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: left;
}
.dstat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1.05;
}
.dstat:nth-child(2) .dstat-num,
.dstat:nth-child(3) .dstat-num { color: var(--accent); }
.disco-stats--five .dstat:nth-child(4) .dstat-num { color: var(--gold); }
.disco-stats--five .dstat:nth-child(5) .dstat-num { color: var(--accent); }
.dstat-label {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.4;
}
.disco-context {
  text-align: center;
  font-size: 16.5px;
  color: var(--text-dim);
  max-width: 78ch;
  margin: 0 auto 64px;
  line-height: 1.6;
  padding: 22px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.disco-context strong { color: var(--text); font-weight: 600; }
.disco-context .muted { color: var(--text-mute); display: inline-block; margin-top: 6px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pillar:hover { border-color: rgba(47, 210, 119, 0.4); transform: translateY(-2px); }
.pillar-tag {
  display: inline-block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: rgba(47, 210, 119, 0.08);
  border: 1px solid rgba(47, 210, 119, 0.25);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.pillar h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.pillar p {
  margin: 0;
  font-size: 15.5px;
  color: var(--text-dim);
  line-height: 1.55;
}
.pillar p strong { color: var(--text); font-weight: 600; }
.disco-kicker {
  text-align: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--text);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.disco-kicker strong { color: var(--accent); font-weight: 700; }

/* ---------- Proof ---------- */
.proof {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}
.proof .h-section { margin-bottom: 56px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
}
.proof-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--accent);
}
.proof-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}
.proof-card li {
  font-size: 15px;
  color: var(--text-dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.proof-card li::before {
  content: '';
  position: absolute;
  top: 10px; left: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- Mid-page CTA ---------- */
.mid-cta {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(47, 210, 119, 0.10), rgba(47, 210, 119, 0.02));
}
.mid-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.mid-cta h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  line-height: 1.2;
}
.mid-cta p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15.5px;
}

/* ---------- States ---------- */
.states {
  padding: 110px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(800px 480px at 50% 100%, rgba(47, 210, 119, 0.06), transparent 60%);
}
.states .h-section { margin-bottom: 16px; }
.state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}
.state-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.state-card:hover { border-color: rgba(47, 210, 119, 0.4); transform: translateY(-2px); }
.state-card--active {
  border-color: rgba(47, 210, 119, 0.45);
  background: linear-gradient(160deg, rgba(47, 210, 119, 0.08), transparent 60%), var(--bg-card);
}
.state-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 6px;
}
.state-card--active .state-name { color: var(--accent); }
.state-meta {
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.4;
}

/* ---------- Testimonial ---------- */
.testimonial {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.testimonial .eyebrow.centered { margin-bottom: 32px; }
.quote {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
}
.quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 24px;
}
.quote footer {
  font-size: 14.5px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}
.quote footer strong { color: var(--text-dim); font-weight: 600; }

/* ---------- CTA ---------- */
.cta {
  padding: 130px 0;
  background:
    radial-gradient(800px 460px at 50% 50%, rgba(47, 210, 119, 0.13), transparent 65%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.cta-inner {
  max-width: 760px;
  text-align: center;
}
.cta-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.cta-sub {
  font-size: 18px;
  color: var(--text-dim);
  margin: 0 auto 36px;
  max-width: 56ch;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 36px 0 56px;
  background: var(--bg);
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-mute);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .stats .wrap { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .band-grid { grid-template-columns: 1fr; gap: 28px; }
  .bio-grid, .bio-grid--reverse { grid-template-columns: 1fr; gap: 36px; }
  .bio-grid--reverse .bio-photo { order: 1; }
  .bio-grid--reverse .bio-body { order: 2; }
  .bio-photo { position: static; max-width: 220px; }
  .cards, .proof-grid { grid-template-columns: 1fr; }
  .state-grid { grid-template-columns: repeat(2, 1fr); }
  .mid-cta-row { flex-direction: column; align-items: flex-start; text-align: left; }
  .extractos-grid { grid-template-columns: 1fr; gap: 40px; }
  .disco-stats, .disco-stats--five { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; font-size: 13.5px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 80px 0 64px; }
  .band, .bio, .services, .proof { padding: 72px 0; }
  .foot-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .stats .wrap { grid-template-columns: 1fr; }
  .disco-stats, .disco-stats--five { grid-template-columns: 1fr; }
  .state-grid { grid-template-columns: 1fr; }
  .photo-initials { font-size: 64px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .btn, .card, .nav-cta { transition: none !important; }
  .btn-primary:hover, .card:hover { transform: none !important; }
}
