:root {
  --bg: #f5f5f0;
  --text: #111111;
  --muted: #555555;
  --accent: #2f6f4f;
  --border: #d8d8d0;
}

html[data-theme="dark"] {
  --bg: #111111;
  --text: #f5f5f0;
  --muted: #bbbbbb;
  --accent: #7fd6a3;
  --border: #2a2a2a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-main {
  width: 100%;
  max-width: 900px;
  padding: 2rem;
}

span.dan-highlight {
  color: #009423;
}

a {
    color: var(--text)
}

.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 4rem;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  margin: 0 0 2rem 0;
  letter-spacing: -0.05em;
}

.hero p {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 760px;
}
.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.9rem 1.5rem;
  min-width: 140px;

  background: #009423;
  color: #ffffff;

  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;

  transition:
    transform 0.15s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

.action-button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 148, 35, 0.25);
}

.action-button:active {
  transform: translateY(0);
}
