:root {
  --accent: #059669;
  --accent-2: #10b981;
  --bg: #f8fdfb;
  --surface: #ffffff;
  --text: #0a2419;
  --muted: #3d5a4d;
  --glass-stroke: rgba(16, 185, 129, 0.18);
  --ring: rgba(16, 185, 129, 0.25);
  --shadow:
    0 10px 30px rgba(16, 185, 129, 0.08),
    inset 0 1px 0 rgba(16, 185, 129, 0.05);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font:
    16px/1.6 Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(16, 185, 129, 0.08),
    rgba(16, 185, 129, 0.04)
  );
  border: 1px solid var(--glass-stroke);
  font-weight: 600;
  font-size: 13px;
}

/* Shared top navigation and CTA styles are in nav-component.css */

.hero {
  padding: 72px 0 36px;
}

.headline {
  font:
    800 clamp(30px, 4vw, 54px) / 1.04 "Plus Jakarta Sans",
    Inter,
    sans-serif;
  margin: 18px 0 12px;
  color: #065f46;
}

.sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 18px;
}

section {
  padding: 36px 0 56px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
}

.ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border: 1px dashed var(--glass-stroke);
  background: rgba(16, 185, 129, 0.03);
}

.ghost:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--accent);
}

footer {
  margin-top: 36px;
  padding: 24px 0 48px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--glass-stroke);
}

@media (max-width: 880px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

