/* ===== CSS Custom Properties ===== */
:root {
  --color-bg: #f5f8ed;
  --color-surface: #eaefdd;
  --color-border: #dee3d2;
  --color-text: #0a0a0a;
  --color-muted: #6e7268;
  --color-dim: #a2a696;
  --color-accent: #39ff14;      /* neon lime — fills only (buttons, tags), never text */
  --color-accent-text: #1c8a00; /* deeper green — safe for text on light bg */

  --font-sans: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'DM Mono', 'SFMono-Regular', monospace;
  --font-size-base: 1rem;
  --line-height-base: 1.6;

  --max-width: 1280px;
  --spacing-section: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
}

/* ===== Layout Utilities ===== */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 2rem;
}

.section {
  padding-block: var(--spacing-section);
  border-bottom: 1px solid var(--color-border);
}

/* Parenthetical eyebrow label, e.g. "( Belief )" */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-muted);
}
.eyebrow::before { content: '( '; }
.eyebrow::after { content: ' )'; }

/* Two-column editorial statement: label left, content right */
.split {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.9rem 1.6rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-text);
}
.btn--dark {
  background-color: var(--color-text);
  color: var(--color-bg);
}
.btn-link {
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--color-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.btn-link:hover {
  color: var(--color-text);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .container {
    padding-inline: 1.25rem;
  }
  :root {
    --spacing-section: 3.5rem;
  }
}
