:root {
  --bg: #f3efe7;
  --surface: #fffdf8;
  --ink: #182028;
  --muted: #5f6b76;
  --accent: #0a7f5a;
  --accent-dark: #07573e;
  --warn: #d86a1c;
}

body {
  background: radial-gradient(circle at top left, #fff3d9, transparent 35%), linear-gradient(135deg, #f3efe7, #e4efe9);
  color: var(--ink);
  font-family: "Segoe UI", sans-serif;
  min-height: 100vh;
}

.glass-card {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(24, 32, 40, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(24, 32, 40, 0.08);
}

.brand-title {
  font-family: Georgia, serif;
  letter-spacing: 0.02em;
}

.metric {
  font-size: 2rem;
  font-weight: 700;
}

.hero-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 0 12px rgba(10, 127, 90, 0.1);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.support-card,
.disclaimer-card {
  position: relative;
  overflow: hidden;
}

.support-card::after,
.disclaimer-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 127, 90, 0.14), transparent 70%);
}

.support-block,
.disclaimer-card p,
.support-card p,
.support-card a {
  position: relative;
  z-index: 1;
}

.support-card a {
  color: var(--accent-dark);
  text-decoration: none;
}

.support-card a:hover {
  text-decoration: underline;
}
