@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --green: #357133;
  --green-deep: #2a5a28;
  --teal: #1f8297;
  --navy: #003940;
  --navy-deep: #00262a;
  --accent: #c6ffc5;
  --ai: #009689;
  --gold: #cb9703;
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #667085;
  --line: rgba(16, 24, 40, 0.08);
  --paper: #f4fbf6;
  --white: #ffffff;
  --danger: #b42318;
  --warn: #b54708;
  --shadow: 0 8px 32px rgba(0, 57, 64, 0.08);
  --radius: 16px;
  --footer-h: 58px;
  --font: "Poppins", "Noto Sans Devanagari", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

button, a { font-family: inherit; }
img { max-width: 100%; display: block; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 1.5rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

h1, h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.note { color: var(--ink-soft); line-height: 1.55; }
