/* ============================================================
   Zach Boykin — Shared Stylesheet
   zachboykin.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Fraunces:ital,wght@0,300;0,600;0,700;1,300;1,600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:      #D4A843;
  --gold-dim:  #9a7a2f;
  --bg:        #0A0A0A;
  --bg2:       #111111;
  --bg3:       #181818;
  --border:    #222222;
  --text:      #F2F2F2;
  --text-dim:  #999999;
  --radius:    10px;
  --max-w:     1100px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

img { display: block; max-width: 100%; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: #e8c06a;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.25), 0 8px 24px rgba(212, 168, 67, 0.15);
}
.btn-gold:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(212, 168, 67, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s;
}

.nav-inner { transition: height 0.3s; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  font-size: 0.85rem !important;
  padding: 8px 20px !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 1.4rem;
}

.nav--scrolled {
  background: rgba(10,10,10,0.98);
  border-bottom-color: rgba(34,34,34,0.6);
}

.nav--scrolled .nav-inner { height: 56px; }

/* ── Page offset for fixed nav ────────────────────────────── */
.page-top { padding-top: 64px; }

/* ── Section labels ───────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ── Section spacing ──────────────────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Section titles ───────────────────────────────────────── */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 20px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 56px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.035) 0%, transparent 70%);
  pointer-events: none;
}

/* Faint dot-grid texture */
.hero {
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.hero-content {
  max-width: 720px;
  animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 32px;
}
.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Trust bar ────────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--bg2);
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.trust-bar:hover .trust-bar-inner { animation-play-state: paused; }

.trust-track {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding-right: 12px;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.03em;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-dot {
  width: 3px; height: 3px;
  background: var(--gold-dim);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Problem section ──────────────────────────────────────── */
.problem { background: var(--bg2); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.97rem;
}

.problem-list li::before {
  content: '✗';
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.problem-callout {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px;
}

.problem-callout p {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
}

.problem-callout span {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── Cards grid ───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  border-color: rgba(212,168,67,0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,168,67,0.08);
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.93rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── Steps ────────────────────────────────────────────────── */
.steps { background: var(--bg2); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: var(--border);
}

.step {
  padding: 0 32px;
  text-align: center;
}

.step-num {
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 auto 24px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ── Stats ────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  background: var(--bg2);
  padding: 40px 32px;
  text-align: center;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ── CTA section ──────────────────────────────────────────── */
.cta-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 96px 0;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-fine {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--text);
}
.footer-logo span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
  width: 100%;
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ── Solutions page (NEW redesign) ────────────────────────── */
.sol-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg2);
  padding: 40px;
  margin-bottom: 24px;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sol-card:hover {
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(212, 168, 67, 0.1);
}

.sol-card-featured {
  border: 1px solid rgba(212,168,67,0.5);
  background: linear-gradient(180deg, rgba(212,168,67,0.04) 0%, var(--bg2) 60%);
  box-shadow: 0 12px 48px rgba(212,168,67,0.12), 0 0 0 1px rgba(212,168,67,0.1), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sol-badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--gold);
  color: #000;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sol-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.sol-card h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.75rem);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.sol-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 8px;
  margin-bottom: 10px;
}

.sol-tier {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sol-tier-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.sol-tier-price {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.sol-pricing-context {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 28px;
}

.sol-content h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 24px 0 12px;
  font-family: 'Inter', sans-serif;
}

.sol-content h4:first-child { margin-top: 0; }

.sol-content p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 12px;
}

.sol-content p strong {
  color: var(--text);
  font-weight: 600;
}

.sol-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.sol-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.sol-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.sol-roi {
  margin: 24px 0 !important;
  padding: 14px 18px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.25);
  border-left: 3px solid #22C55E;
  border-radius: 6px;
  font-size: 0.92rem !important;
  color: #22C55E !important;
  font-weight: 600;
  font-style: normal !important;
}

.sol-cta {
  margin-top: 12px;
}

/* ── Pricing philosophy section ───────────────────────────── */
.section-philosophy { background: var(--bg2); }

.philosophy-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.philosophy-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.philosophy-box > p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.philosophy-grid h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.philosophy-grid p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}

.philosophy-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem !important;
  color: var(--text) !important;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  margin-top: 20px;
}

/* ── Audit process block ──────────────────────────────────── */
.audit-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 48px;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg3) 100%);
  border: 1px solid rgba(212,168,67,0.35);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.08);
}

.audit-block .label { display: block; text-align: center; margin: 0 auto 16px; }

.audit-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0 32px;
  text-align: left;
}

.audit-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audit-step-num {
  width: 44px; height: 44px;
  border: 1px solid rgba(212,168,67,0.4);
  background: rgba(212,168,67,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.audit-step h3 {
  font-size: 1.1rem;
  margin: 0;
}

.audit-step p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

.audit-benefit {
  margin: 32px 0 28px !important;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  text-align: center;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ── Legacy solutions classes (kept for compat) ───────────── */
.solution-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.solution-header {
  background: var(--bg2);
  padding: 32px 40px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.solution-title-block { flex: 1; }

.solution-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.solution-header h2 {
  font-size: 1.5rem;
}

.solution-price {
  text-align: right;
  flex-shrink: 0;
}

.solution-price .price-build {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'Fraunces', serif;
}

.solution-price .price-retainer {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 32px;
  padding: 0 16px;
}

.solution-body {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--bg);
}

.solution-body h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.solution-body p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

.deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-dim);
}

.deliverables li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── About page ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-body p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.principle {
  background: var(--bg2);
  padding: 28px 32px;
}

.principle h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.principle p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── Book page ────────────────────────────────────────────── */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  line-height: 1.6;
}

.expect-list li .check {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.calendar-embed {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  text-align: center;
  padding: 32px;
}

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 580px;
}

.page-hero-sub {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-top: 12px;
  max-width: 580px;
}

/* ── Headshot ─────────────────────────────────────────────── */
.headshot-wrap {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  margin-bottom: 28px;
  flex-shrink: 0;
}

.headshot-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Proof of Work section ────────────────────────────────── */
.proof-section { background: var(--bg2); }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.proof-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.proof-story {
  padding: 30px;
  border-bottom: 1px solid var(--border);
}

.proof-story h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--gold);
}

.proof-story p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 10px;
}

.proof-story p:last-child { margin-bottom: 0; }

/* Dashboard mockup */
.dash-mock {
  padding: 22px;
  flex: 1;
}

.dash-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dash-mock-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
}

.dash-chip {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.dash-chip.ap5 {
  background: rgba(139,92,246,0.12);
  color: #8B5CF6;
  border: 1px solid rgba(139,92,246,0.4);
}
.dash-chip.ap4 {
  background: rgba(59,130,246,0.12);
  color: #3B82F6;
  border: 1px solid rgba(59,130,246,0.4);
}

.dash-student-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 13px;
  background: var(--bg2);
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.83rem;
}

.dash-score-val {
  color: var(--gold);
  font-weight: 700;
  font-family: 'Fraunces', serif;
}

.dash-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.dash-bar-row {
  display: grid;
  grid-template-columns: 36px 1fr 44px;
  gap: 10px;
  align-items: center;
  font-size: 0.76rem;
  color: var(--text-dim);
}

.dash-bar-track {
  height: 7px;
  background: var(--bg2);
  border-radius: 4px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  opacity: 0.6;
}

.dash-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.dash-btn-mock {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: default;
}

.dash-auto-note {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* Email automation mockup */
.email-mock {
  padding: 22px;
  flex: 1;
}

.email-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.email-trigger-label {
  font-size: 0.73rem;
  color: var(--text-dim);
}

.email-status-chip {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(34,197,94,0.08);
  color: #22C55E;
  border: 1px solid rgba(34,197,94,0.35);
}

.email-card {
  background: var(--bg2);
  border-radius: 6px;
  padding: 13px 15px;
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.email-meta-line {
  color: var(--text-dim);
  margin-bottom: 5px;
}

.email-meta-line strong {
  color: var(--text);
  font-weight: 600;
}

.email-body-preview {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.65;
  font-style: italic;
}

.email-sequence {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.seq-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  padding: 7px 11px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.seq-step.done {
  border-color: rgba(34,197,94,0.35);
  color: #22C55E;
  background: rgba(34,197,94,0.05);
}

.seq-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.seq-step.done .seq-dot { background: #22C55E; }

.proof-source-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── FAQ section ──────────────────────────────────────────── */
.faq-section { background: var(--bg2); }

.faq-list {
  max-width: 740px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item { background: var(--bg); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 28px;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s;
}

.faq-question:hover {
  background: var(--bg2);
  color: var(--gold);
}

.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 28px 22px;
  font-size: 0.93rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── Animated Demo section ────────────────────────────────── */
.demo-section { background: var(--bg); }

.laptop-outer {
  max-width: 840px;
  margin: 56px auto 0;
  filter: drop-shadow(0 60px 120px rgba(0,0,0,0.8)) drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.laptop-lid {
  background: #1d1d1f;
  border-radius: 18px 18px 0 0;
  padding: 14px 14px 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  position: relative;
}

.laptop-lid::after {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.laptop-camera {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  margin: 0 auto 10px;
}

.laptop-screen-wrap {
  border-radius: 4px;
  overflow: hidden;
  background: #000000;
  aspect-ratio: 16 / 10;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.laptop-hinge {
  height: 5px;
  background: #161618;
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.laptop-base {
  background: #1d1d1f;
  height: 30px;
  border-radius: 0 0 14px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop-trackpad {
  width: 64px; height: 10px;
  border-radius: 3px;
  background: #161618;
  border: 1px solid rgba(255,255,255,0.07);
}

/* ── Spa Dashboard (inside laptop) ───────────────────────── */
.spa-dash {
  width: 100%;
  height: 100%;
  background: #080808;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  padding: 10px 12px 12px;
  gap: 8px;
}

.dash-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  top: 0;
  z-index: 20;
  opacity: 0;
  box-shadow: 0 0 10px rgba(212,168,67,0.5), 0 0 30px rgba(212,168,67,0.15);
  pointer-events: none;
}

.spa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #181818;
  flex-shrink: 0;
}

.spa-brand {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ddd;
  flex: 1;
  letter-spacing: -0.01em;
}

.spa-live-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #22C55E;
  padding: 2px 7px;
  border-radius: 100px;
  border: 1px solid rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.07);
  letter-spacing: 0.03em;
}

.live-pulse {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22C55E;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.spa-period {
  font-size: 0.6rem;
  color: #3a3a3a;
}

/* KPI row */
.spa-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  flex-shrink: 0;
}

.spa-kpi {
  background: #101010;
  border: 1px solid #1c1c1c;
  border-radius: 6px;
  padding: 8px 10px;
}

.kpi-l {
  font-size: 0.57rem;
  color: #484848;
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kpi-v {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}

.kpi-d {
  font-size: 0.56rem;
  color: #444;
  line-height: 1.3;
}
.kpi-d.up  { color: #22C55E; }
.kpi-d.pos { color: #3B82F6; }

/* Chart + Feed bottom half */
.spa-bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 6px;
  flex: 1;
  min-height: 0;
}

.spa-chart-wrap,
.spa-feed-wrap {
  background: #101010;
  border: 1px solid #1c1c1c;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.spa-chart-title,
.spa-feed-title {
  font-size: 0.57rem;
  color: #484848;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.spa-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  flex: 1;
  min-height: 0;
  padding-bottom: 2px;
}

.spa-bc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}

.spa-b {
  width: 100%;
  background: linear-gradient(to top, var(--gold), rgba(212,168,67,0.4));
  border-radius: 3px 3px 0 0;
  transition: height 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
  min-height: 0;
}

.spa-bc > span {
  font-size: 0.5rem;
  color: #3a3a3a;
  flex-shrink: 0;
  font-weight: 500;
}

/* Live feed */
.spa-feed {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: feedSlide 0.3s ease-out both;
}

@keyframes feedSlide {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.feed-icon { font-size: 0.95rem; flex-shrink: 0; }

.feed-body { flex: 1; min-width: 0; }

.feed-text {
  font-size: 0.64rem;
  color: #ccc;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-sub {
  font-size: 0.57rem;
  color: #3a3a3a;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-tag {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.tag-green {
  background: rgba(34,197,94,0.1);
  color: #22C55E;
  border: 1px solid rgba(34,197,94,0.25);
}

.tag-gold {
  background: rgba(212,168,67,0.1);
  color: var(--gold);
  border: 1px solid rgba(212,168,67,0.25);
}

.demo-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.demo-caption span {
  color: var(--gold);
  font-weight: 600;
}

/* ── Dashboard tabs ───────────────────────────────────────── */
.demo-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.demo-tab {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 9px 28px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.demo-tab:hover { border-color: var(--gold); color: var(--text); }
.demo-tab.active { background: var(--gold); color: #000; border-color: var(--gold); }

/* ── Dashboard internals (db-*) — Apple-inspired ─────────── */
.db-wrap {
  position: absolute;
  inset: 0;
  background: #000000;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  padding: 11px 13px 11px;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  overflow: hidden;
}

/* Header: two rows */
.db-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.db-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.db-brand {
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.015em;
}

.db-location {
  color: rgba(255,255,255,0.28);
  font-weight: 400;
  margin-left: 3px;
}

.db-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.db-date {
  font-size: 0.54rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.02em;
}

.db-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.55rem;
  font-weight: 600;
  color: #30D158;
  padding: 2px 7px;
  border-radius: 100px;
  border: 1px solid rgba(48,209,88,0.22);
  background: rgba(48,209,88,0.08);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Integration chips */
.db-integrations {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.db-int {
  font-size: 0.43rem;
  color: rgba(255,255,255,0.32);
  padding: 1px 6px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* KPIs */
.db-kpis {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  flex-shrink: 0;
}

.db-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 9px;
}

.db-kpi.alert {
  background: rgba(255,69,58,0.06);
  border-color: rgba(255,69,58,0.2);
}

.db-kl {
  font-size: 0.48rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.db-kv {
  font-family: 'Inter', sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.04em;
}

.db-kv.gold { color: #FFD60A; }
.db-kv.red  { color: #FF453A; }
.db-kv.pos  { color: #0A84FF; }

.db-ks {
  font-size: 0.48rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.3;
}
.db-ks.up  { color: #30D158; }
.db-ks.pos { color: #0A84FF; }
.db-ks.red { color: #FF453A; }

/* Body: two columns */
.db-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 6px;
  flex: 1;
  min-height: 0;
}

.db-left, .db-right {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 9px 11px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

.db-panel-title {
  font-size: 0.47rem;
  color: rgba(255,255,255,0.28);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 8px;
  flex-shrink: 0;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Horizontal bar chart */
.db-hbars {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-around;
  min-height: 0;
}

.db-hbar-row {
  display: grid;
  grid-template-columns: 90px 1fr 50px;
  gap: 8px;
  align-items: center;
}

.db-hbar-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.38);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-hbar-track {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
}

.db-hbar-fill {
  height: 100%;
  background: #FFD60A;
  border-radius: 100px;
  transition: width 0.65s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.db-hbar-amt {
  font-size: 0.56rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

/* Schedule (med spa) */
.db-schedule {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  overflow: hidden;
}

.db-appt {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 6px;
  align-items: center;
  padding: 5px 7px;
  border-radius: 6px;
  border: 1px solid transparent;
  flex-shrink: 0;
}

.db-appt.done     { opacity: 0.3; }
.db-appt.active   {
  background: rgba(10,132,255,0.1);
  border-color: rgba(10,132,255,0.2);
}
.db-appt.upcoming { background: rgba(255,255,255,0.025); border-color: rgba(255,255,255,0.05); }

.db-appt-time {
  font-size: 0.53rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}

.db-appt-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.db-appt-name {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-appt-svc {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-badge {
  font-size: 0.47rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.db-badge.done { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.2); }
.db-badge.curr {
  background: rgba(10,132,255,0.18);
  color: #0A84FF;
  border: 1px solid rgba(10,132,255,0.28);
}
.db-badge.upc  { color: rgba(255,255,255,0.18); }

/* Follow-ups (real estate) */
.db-followups {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  overflow: hidden;
}

.db-followup {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 5px 7px;
  border-radius: 6px;
  border: 1px solid transparent;
  flex-shrink: 0;
}

.db-followup.urgent {
  background: rgba(255,69,58,0.06);
  border-color: rgba(255,69,58,0.16);
}
.db-followup.warn   {
  background: rgba(255,214,10,0.04);
  border-color: rgba(255,214,10,0.12);
}
.db-followup.ok     {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.05);
}

.db-fu-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.db-fu-dot.red    { background: #FF453A; }
.db-fu-dot.yellow { background: #FFD60A; }
.db-fu-dot.green  { background: #30D158; }

.db-fu-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.db-fu-name {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-fu-detail {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-fu-age {
  font-size: 0.55rem;
  font-weight: 700;
  flex-shrink: 0;
}

.db-fu-age.red    { color: #FF453A; }
.db-fu-age.yellow { color: #FFD60A; }
.db-fu-age.green  { color: #30D158; }

/* Activity feed strip */
.db-feed {
  flex-shrink: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  min-height: 28px;
}

.db-feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  animation: feedSlide 0.3s ease-out both;
}

.db-feed-icon { font-size: 0.75rem; flex-shrink: 0; }

.db-feed-text {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.35);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-feed-text strong { color: rgba(255,255,255,0.65); font-weight: 600; }

.db-feed-chip {
  font-size: 0.47rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Real Estate: SMS conversation panel ─────────────────── */
.re-sms-wrap {
  display: flex;
  flex-direction: column;
}

.re-sms-thread {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  justify-content: center;
}

.re-sms-source {
  font-size: 0.46rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  transition: opacity 0.28s ease;
}

.re-sms-bubble {
  font-size: 0.54rem;
  line-height: 1.5;
  padding: 6px 9px;
  border-radius: 10px;
  max-width: 90%;
  color: rgba(255,255,255,0.82);
  transition: opacity 0.28s ease;
}

.re-sms-bubble.incoming {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.re-sms-bubble.outgoing {
  background: rgba(10,132,255,0.12);
  border: 1px solid rgba(10,132,255,0.22);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  color: rgba(255,255,255,0.88);
}

.re-sms-response-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -2px;
}

.re-sms-badge {
  font-size: 0.43rem;
  font-weight: 700;
  color: #FFD60A;
  background: rgba(255,214,10,0.08);
  border: 1px solid rgba(255,214,10,0.2);
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.re-sms-footer {
  margin-top: 3px;
}

.re-sms-status {
  font-size: 0.44rem;
  color: rgba(48,209,88,0.6);
  letter-spacing: 0.03em;
}

/* ── Real Estate: Pipeline donut chart ────────────────────── */
.re-donut-wrap {
  display: flex;
  flex-direction: column;
}

.re-donut-chart-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 8px;
}

.re-donut-svg {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  transform: rotate(-90deg);
}

.re-donut-bg {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 12;
}

.re-donut-seg {
  fill: none;
  stroke-width: 12;
  stroke-linecap: butt;
}

.re-donut-center-val {
  font-size: 9px;
  font-weight: 800;
  fill: #ffffff;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.04em;
  transform: rotate(90deg);
  transform-origin: 40px 40px;
}

.re-donut-center-sub {
  font-size: 5px;
  fill: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: 40px 40px;
}

.re-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.re-donut-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.re-donut-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.re-donut-lbl {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.42);
  flex: 1;
}

.re-donut-pct {
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

/* ── Hero Disclaimer ──────────────────────────────────────── */
.hero-disclaimer {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.testimonial-context {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ── Founding Clients ─────────────────────────────────────── */
.founding-section { background: var(--bg2); }

.founding-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--bg3);
}

.founding-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.founding-box h3 {
  font-size: 1.55rem;
  margin-bottom: 16px;
  color: var(--text);
}

.founding-box p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.founding-fine {
  font-size: 0.78rem !important;
  color: var(--text-dim);
  margin-bottom: 28px !important;
}

.founding-box .btn {
  margin-top: 8px;
}

/* ── Gold CTA pulse ───────────────────────────────────────── */
@keyframes pulse-gold {
  0%, 90%, 100% { box-shadow: 0 6px 24px rgba(212,168,67,0.3); }
  95%            { box-shadow: 0 6px 36px rgba(212,168,67,0.55), 0 0 0 6px rgba(212,168,67,0.08); }
}

.btn-gold-pulse {
  animation: pulse-gold 5s ease-in-out infinite;
}

/* ── Scroll-reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for cards */
.cards-grid .card:nth-child(1) { transition-delay: 0s; }
.cards-grid .card:nth-child(2) { transition-delay: 0.08s; }
.cards-grid .card:nth-child(3) { transition-delay: 0.16s; }
.cards-grid .card:nth-child(4) { transition-delay: 0.24s; }

/* Stagger delays for steps */
.steps-grid .step:nth-child(1) { transition-delay: 0s; }
.steps-grid .step:nth-child(2) { transition-delay: 0.1s; }
.steps-grid .step:nth-child(3) { transition-delay: 0.2s; }

/* Stagger delays for testimonials */
.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.09s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.18s; }

/* Stagger delays for stats */
.stats-grid .stat:nth-child(1) { transition-delay: 0s; }
.stats-grid .stat:nth-child(2) { transition-delay: 0.07s; }
.stats-grid .stat:nth-child(3) { transition-delay: 0.14s; }
.stats-grid .stat:nth-child(4) { transition-delay: 0.21s; }

/* Stagger delays for problem list items */
.problem-list li:nth-child(1) { transition-delay: 0s; }
.problem-list li:nth-child(2) { transition-delay: 0.07s; }
.problem-list li:nth-child(3) { transition-delay: 0.14s; }
.problem-list li:nth-child(4) { transition-delay: 0.21s; }
.problem-list li:nth-child(5) { transition-delay: 0.28s; }

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }

  .nav-links.open .nav-cta {
    font-size: 0.95rem !important;
    padding: 14px 24px !important;
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  /* Tighten section padding on mobile */
  .section { padding: 64px 0; }

  .hero h1 { font-size: 2.2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .step { padding: 0 0 40px; text-align: left; }
  .step-num { margin: 0 0 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-header { flex-direction: column; }
  .solution-price { text-align: left; }
  .solution-body { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .proof-grid { grid-template-columns: 1fr; }
  .email-mock-header { flex-direction: column; align-items: flex-start; }

  /* Demo section: hide laptop + tabs, collapse to just the intro text */
  .laptop-outer { display: none; }
  .demo-caption { display: none; }
  .demo-tabs { display: none; }
  .demo-section { padding: 48px 0; }

  /* Headshot: center on mobile */
  .headshot-wrap { margin-left: auto; margin-right: auto; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .founding-box { padding: 32px 20px; }

  /* Stats: readable 2-col on mobile */
  .stat { padding: 28px 20px; }

  /* Reduce proof section body text padding */
  .proof-story { padding: 22px 20px; }
  .dash-mock { padding: 18px 16px; }
  .email-mock { padding: 18px 16px; }

  /* New solutions page */
  .sol-card { padding: 28px 22px; }
  .sol-pricing { grid-template-columns: 1fr; gap: 12px; padding: 14px 16px; }
  .sol-badge { right: 16px; top: -10px; }
  .philosophy-box { padding: 32px 22px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 32px; }
  .audit-block { padding: 40px 22px; }
  .audit-steps { grid-template-columns: 1fr; gap: 28px; margin: 32px 0 24px; }

  /* Field Notes mobile */
  .fn-home-grid { grid-template-columns: 1fr; }
  .fn-list { grid-template-columns: 1fr; }
  .fn-post-page { padding: 40px 0 80px; }
}

/* ============================================================
   Field Notes
   ============================================================ */

/* ── Home section ────────────────────────────────────────── */
.fn-home-section { background: var(--bg2); }

.fn-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* ── Listing page ────────────────────────────────────────── */
.fn-index-page {
  padding: 80px 0 120px;
  min-height: 60vh;
}

.fn-index-header {
  margin-bottom: 48px;
}

.fn-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ── Post card (shared: listing + home) ─────────────────── */
.fn-card {
  display: flex;
  flex-direction: column;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.fn-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--text);
}

.fn-card-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fn-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text);
}

.fn-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.fn-card-read {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.fn-empty {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* Featured card variant: image at top + featured eyebrow */
.fn-card--featured {
  position: relative;
  border-color: var(--gold);
  background: var(--bg3);
  padding: 0;
  overflow: hidden;
}

.fn-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg);
  overflow: hidden;
}

.fn-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.fn-card--featured:hover .fn-card-image img {
  transform: scale(1.03);
}

.fn-card-body {
  padding: 24px 28px 24px;
}

.fn-card-featured-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.fn-card--featured .fn-card-title {
  font-size: 1.5rem;
  line-height: 1.25;
}

.fn-card--featured:hover {
  transform: translateY(-3px);
}

/* Post page hero image */
.fn-post-hero {
  margin: 0 0 2.4rem;
  border-radius: var(--radius, 12px);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}

.fn-post-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Individual post page ────────────────────────────────── */
.fn-post-page {
  padding: 64px 0 120px;
}

.fn-back {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 40px;
  transition: color 0.2s;
}

.fn-back:hover { color: var(--gold); }

.fn-post {
  max-width: 680px;
}

.fn-post-header {
  margin-bottom: 40px;
}

.fn-post-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.fn-post-meta {
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fn-post-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.4em;
}

.fn-post-body strong {
  color: var(--text);
  font-weight: 600;
}

.fn-post-body h3 {
  font-family: var(--font-head, "Fraunces", Georgia, serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin: 2.4em 0 0.8em;
  letter-spacing: -0.01em;
}

.fn-figure {
  margin: 2em auto;
  max-width: 360px;
  text-align: center;
}

.fn-figure img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: block;
  background: var(--bg2);
}

.fn-figure figcaption {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-top: 0.8em;
  line-height: 1.5;
  font-style: italic;
}

.fn-callout {
  border-left: 3px solid var(--gold);
  background: var(--bg2);
  padding: 1.2em 1.4em;
  margin: 2em 0;
  border-radius: 0 8px 8px 0;
}

.fn-callout p:last-child { margin-bottom: 0; }

.fn-post-cta {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 32px;
  font-size: 1rem;
  color: var(--text-dim);
}

.fn-post-cta a {
  color: var(--gold);
  font-weight: 600;
}
