* {
  box-sizing: border-box
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif
}

a {
  color: #1d4ed8;
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

.prose p {
  margin: 0 0 1rem
}

.border {
  border: 1px solid #e5e7eb
}

.rounded-xl {
  border-radius: .75rem
}

.bg-gray-50 {
  background: #f9fafb
}

.text-gray-600 {
  color: #4b5563
}

.text-gray-700 {
  color: #374151
}

.text-gray-900 {
  color: #111827
}

.bg-blue-700 {
  background: #1d4ed8
}

.bg-blue-700:hover {
  background: #1e40af
}

/* === Zero-Cash Build Construction Theme — Design Tokens === */
:root {
  --brand: #f59e0b;
  --brand-600: #d97706;
  --brand-700: #b45309;
  --bg-dark: #0f172a;
  --panel: #111827;
  --text-light: #e5e7eb;
  --muted: #9ca3af;
  --border-color: rgba(148, 163, 184, .22);
  --radius: 14px;
  --ring: 0 0 0 .25rem rgba(245, 158, 11, .35);
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
}

.navbar,
footer {
  background: var(--panel);
  border-bottom: 1px solid var(--border-color);
}

.card {
  background: var(--panel);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #111;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--brand-600);
  border-color: var(--brand-600);
  box-shadow: var(--ring);
}

.text-muted {
  color: var(--muted) !important;
}

a {
  color: var(--brand);
}

a:hover {
  opacity: .9;
}

.calendly-embed {
  min-width: 320px;
  height: 780px;
}