/* Design tokens InovaKit — light theme
   Hasil ekstrak warna logo AJM: hijau sage #547467 + hijau segar #75B673
   Produk = stainless silver. 60-30-10: putih/netral + steel + hijau brand.
*/
:root {
  --bg:          #F7F9F7;
  --surface:     #FFFFFF;
  --ink:         #171D1B;
  --ink-soft:    #59655F;
  --brand:       #547467;
  --brand-deep:  #3C5A4E;
  --brand-bright:#75B673;
  --steel:       #9AA4A2;
  --line:        #E3E9E5;

  --radius: 12px;
  --font-sans: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-deep); }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.01em; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  background: var(--brand-deep);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: #2F4A3E; color: #fff; }

.badge {
  background: var(--brand-bright);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.line { border-color: var(--line); }
