@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
  --font-sans: "Montserrat", "Segoe UI", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 800;
  --bg-1: #f6f4ec;
  --bg-2: #ebe6d2;
  --bg-3: #edf3ef;
  --paper: #ffffff;
  --ink: #0f2f22;
  --brand: #0a6a3b;
  --accent: #ddd1a3;
  --muted: #61766a;
  --border: #d7ddd8;
  --shadow: 0 18px 45px rgba(15, 47, 34, 0.12);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  line-height: 1.45;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.type-display {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: var(--font-weight-black);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.type-title {
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.type-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.45;
  color: var(--muted);
}

.type-label {
  font-size: 0.8rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icon-badge {
  min-width: 78px;
  min-height: 64px;
  padding: 0 18px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: var(--font-weight-bold);
}

.icon-badge--brand {
  background: rgba(10, 106, 59, 0.12);
  color: var(--brand);
}

.icon-badge--accent {
  background: rgba(221, 209, 163, 0.58);
  color: var(--ink);
}

.icon-check {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26' fill='none'%3E%3Ccircle cx='13' cy='13' r='12.5' fill='%23E7F5EE' stroke='%23CFE2D8'/%3E%3Cpath d='M8.2 13.3l3.1 3.15 6.45-6.6' stroke='%230A6A3B' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}
