/* ============================================
   theagency47.com — Main Stylesheet
   Single CSS file by design (simple, fast, cacheable)
   ============================================ */

/* ============================================
   1. DESIGN TOKENS
   ============================================ */
:root {
  /* Brand colors — Option 4: Wine Burgundy + Bone */
  --brand-primary: #4C1320;          /* wine burgundy */
  --brand-primary-soft: #6B1A2C;     /* wine 700 */
  --brand-accent: #B8924A;           /* warm gold (passes WCAG with white text) */
  --brand-accent-dark: #8B6F32;      /* deeper gold for hover */
  --brand-accent-soft: #F4ECDD;      /* bone / cream */

  /* Text */
  --text-primary: #0F172A;           /* body remains slate-900 (neutral, max readable) */
  --text-secondary: #475569;
  --text-tertiary: #94A3B8;
  --text-inverse: #F4ECDD;           /* cream on dark wine surfaces */

  /* Backgrounds */
  --bg-base: #FFFFFF;
  --bg-subtle: #FAF7F0;              /* warm cream subtle bg */
  --bg-muted: #F4ECDD;               /* bone for cards & callouts */
  --bg-inverse: #4C1320;             /* wine dark sections */

  /* Borders */
  --border-subtle: #E5DACB;          /* warm border */
  --border-strong: #CBB99B;          /* warm strong border */

  /* Semantic */
  --success: #059669;
  --warning: #D97706;
  --error: #DC2626;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-narrow: 720px;
  --container-default: 1120px;
  --container-wide: 1280px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(76,19,32,0.08);
  --shadow-md: 0 4px 16px rgba(76,19,32,0.10);
  --shadow-lg: 0 12px 32px rgba(76,19,32,0.14);
  --shadow-accent: 0 8px 24px rgba(76,19,32,0.22);

  /* Motion */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

a {
  color: var(--brand-accent-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--brand-accent); }

:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: var(--space-3) var(--space-4);
  background: var(--brand-primary);
  color: var(--text-inverse);
  z-index: 1000;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { top: 0; }

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
}

h1 { font-size: var(--text-5xl); line-height: 1.05; }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-6xl); }
  h2 { font-size: var(--text-5xl); }
  h3 { font-size: var(--text-3xl); }
}

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-accent-dark);
  margin-bottom: var(--space-4);
}

.lede {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 60ch;
}

@media (min-width: 768px) {
  .lede { font-size: var(--text-xl); }
}

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--text-primary); }

/* ============================================
   4. LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-default);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.container-narrow { max-width: var(--container-narrow); }
.container-wide { max-width: var(--container-wide); }

@media (min-width: 768px) {
  .container { padding: 0 var(--space-8); }
}

section { padding: var(--space-16) 0; }
@media (min-width: 768px) { section { padding: var(--space-20) 0; } }
@media (min-width: 1024px) { section { padding: var(--space-24) 0; } }

.section-tight { padding: var(--space-12) 0; }
.section-dark { background: var(--bg-inverse); color: var(--text-inverse); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--text-inverse); }
.section-dark .lede { color: rgba(248, 250, 252, 0.85); }
.section-subtle { background: var(--bg-subtle); }

.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   5. HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  gap: var(--space-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo:hover { color: var(--text-primary); }

.nav-logo-mark {
  background: var(--brand-primary);
  color: var(--brand-accent);
  font-weight: 900;
  font-size: var(--text-lg);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: -1px;
}

.nav-logo-text {
  font-weight: 700;
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  gap: var(--space-6);
  align-items: center;
  list-style: none;
  padding: 0;
}

@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: var(--text-sm);
  position: relative;
}

.nav-links a:hover { color: var(--brand-accent-dark); }

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  min-width: 180px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--transition-fast);
  list-style: none;
  margin-top: var(--space-2);
}

.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
}

.dropdown-menu a:hover {
  background: var(--bg-muted);
}

.nav-cta-wrap { display: flex; align-items: center; gap: var(--space-3); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}

@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: var(--bg-base);
  padding: var(--space-8) var(--space-6);
  overflow-y: auto;
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.nav-mobile a {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-mobile .btn { margin-top: var(--space-6); width: 100%; text-align: center; }

/* ============================================
   6. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 28px;
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--text-inverse);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--brand-primary-soft);
  color: var(--text-inverse);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
}
.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--text-inverse);
}

.section-dark .btn-secondary {
  color: var(--text-inverse);
  border-color: var(--text-inverse);
}
.section-dark .btn-secondary:hover {
  background: var(--text-inverse);
  color: var(--brand-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-accent-dark);
  padding: 14px 0;
}
.btn-ghost:hover {
  color: var(--brand-accent);
}
.btn-ghost::after {
  content: "→";
  transition: transform var(--transition-fast);
}
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-sm { padding: 10px 18px; font-size: var(--text-sm); }
.btn-lg { padding: 18px 36px; font-size: var(--text-lg); }

/* ============================================
   7. HERO
   ============================================ */
.hero {
  padding: var(--space-16) 0 var(--space-20);
}

@media (min-width: 768px) {
  .hero { padding: var(--space-24) 0; }
}

.hero-title {
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  max-width: 18ch;
}

.hero-lede { margin-bottom: var(--space-8); }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; gap: var(--space-4); }
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  align-items: center;
}

.trust-strip > * { display: flex; align-items: center; gap: var(--space-2); }
.trust-strip > *::before {
  content: "•";
  color: var(--brand-accent);
  font-weight: 900;
}
.trust-strip > *:first-child::before { display: none; }

/* ============================================
   8. CARDS
   ============================================ */
.card {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.card-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-accent-dark);
  margin-bottom: var(--space-3);
}

.card-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.card-text {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.card-footer {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
}

.card-meta {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  font-weight: 600;
}

.card-price {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.card-features {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
}
.card-features li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ============================================
   9. TIER / WORKFORCE BLOCKS
   ============================================ */
.tier-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
}

.tier-card.featured {
  background: var(--brand-primary);
  color: var(--text-inverse);
}
.tier-card.featured h3, .tier-card.featured h4 { color: var(--text-inverse); }
.tier-card.featured .card-text { color: rgba(248,250,252,0.85); }

.tier-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  right: var(--space-6);
  background: var(--brand-accent-soft);
  color: var(--brand-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ============================================
   10. PROCESS STEPS
   ============================================ */
.process {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  counter-reset: step;
}

@media (min-width: 768px) {
  .process { grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
}

.process-step {
  position: relative;
  padding-top: var(--space-12);
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--brand-accent);
  width: 40px;
  height: 40px;
  background: var(--brand-accent-soft);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h4 { margin-bottom: var(--space-2); }
.process-step p { font-size: var(--text-sm); color: var(--text-secondary); }

/* ============================================
   11. FAQ
   ============================================ */
.faq {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-6) 0;
}

.faq details:first-child { border-top: 1px solid var(--border-subtle); }

.faq summary {
  cursor: pointer;
  font-size: var(--text-lg);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
  user-select: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-size: var(--text-2xl);
  color: var(--brand-accent);
  font-weight: 300;
  transition: transform var(--transition-fast);
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details p {
  margin-top: var(--space-4);
  color: var(--text-secondary);
  max-width: 70ch;
}

/* ============================================
   12. TABLE (pricing comparison)
   ============================================ */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: var(--space-8) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  font-size: var(--text-sm);
}

@media (min-width: 768px) { .pricing-table { font-size: var(--text-base); } }

.pricing-table thead {
  background: var(--brand-primary);
  color: var(--text-inverse);
}

.pricing-table th {
  padding: var(--space-4);
  text-align: left;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
}

.pricing-table td {
  padding: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  vertical-align: top;
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--bg-subtle);
}

.pricing-table .price-cell {
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--text-primary);
}

/* ============================================
   13. CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--bg-inverse);
  color: var(--text-inverse);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "47";
  position: absolute;
  font-size: 24rem;
  font-weight: 900;
  color: rgba(244, 236, 221, 0.06);
  bottom: -8rem;
  right: -3rem;
  letter-spacing: -0.1em;
  line-height: 1;
}

.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--text-inverse); max-width: 20ch; margin: 0 auto var(--space-6); }
.cta-banner p { color: rgba(248,250,252,0.85); max-width: 50ch; margin: 0 auto var(--space-8); }
.cta-banner .hero-ctas { justify-content: center; }

/* ============================================
   14. BREADCRUMB
   ============================================ */
.breadcrumb {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-bottom: var(--space-6);
}

.breadcrumb a {
  color: var(--text-tertiary);
}
.breadcrumb a:hover { color: var(--brand-accent-dark); }
.breadcrumb-sep { margin: 0 var(--space-2); }

/* ============================================
   15. NEWSLETTER FORM
   ============================================ */
.newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 400px;
}

@media (min-width: 480px) {
  .newsletter { flex-direction: row; }
}

.newsletter input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--bg-base);
  color: var(--text-primary);
}

.newsletter input:focus {
  border-color: var(--brand-accent);
  outline: none;
}

/* ============================================
   16. CODE BLOCKS
   ============================================ */
.code-block {
  background: var(--brand-primary);
  color: var(--text-inverse);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  font-family: 'JetBrains Mono', 'Menlo', Consolas, monospace;
  font-size: var(--text-sm);
  line-height: 1.6;
  overflow-x: auto;
  margin: var(--space-6) 0;
  border-left: 3px solid var(--brand-accent);
}

.code-block pre { margin: 0; }

code:not(.code-block code) {
  background: var(--bg-muted);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  font-family: 'JetBrains Mono', monospace;
  color: var(--brand-accent-dark);
}

/* ============================================
   17. STAT BLOCKS
   ============================================ */
.stat {
  text-align: center;
  padding: var(--space-6);
}

.stat-number {
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--brand-accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-base);
  color: var(--text-secondary);
  font-weight: 600;
}

/* ============================================
   18. FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-inverse);
  color: var(--text-inverse);
  padding: var(--space-20) 0 var(--space-8);
  margin-top: var(--space-24);
}

.footer-grid {
  display: grid;
  gap: var(--space-12);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-8); } }

.footer-brand h3 { color: var(--text-inverse); margin-bottom: var(--space-3); font-size: var(--text-xl); }
.footer-brand p { color: rgba(248,250,252,0.75); margin-bottom: var(--space-6); max-width: 30ch; }

.footer-col h4 {
  color: var(--brand-accent);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-4);
  font-weight: 700;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: var(--space-2); }

.footer-col a {
  color: rgba(248,250,252,0.75);
  font-size: var(--text-sm);
}
.footer-col a:hover { color: var(--brand-accent); }

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(248,250,252,0.1);
  font-size: var(--text-xs);
  color: rgba(248,250,252,0.5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
}

/* ============================================
   19. UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.text-accent { color: var(--brand-accent-dark); }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.section-header {
  text-align: center;
  max-width: 50ch;
  margin: 0 auto var(--space-12);
}
.section-header h2 { margin-bottom: var(--space-4); }
.section-header .lede { margin: 0 auto; }

/* Quick answer block (GEO) */
.quick-answer {
  background: var(--bg-subtle);
  border-left: 4px solid var(--brand-accent);
  padding: var(--space-6) var(--space-8);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-8) 0;
}
.quick-answer h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.quick-answer p {
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}
.quick-answer cite {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-style: normal;
}
