:root{
  --primary: #1B6B4A;
  --secondary: #1F4ED8;

  --bg: #ffffff;
  --bg-main:#f6f8fb;

  --text:#0b1220;
  --text-light:#5b677a;
  --muted:#94a3b8;

  --card: rgba(255,255,255,0.78);
  --card-strong: rgba(255,255,255,0.92);
  --border: rgba(15,23,42,0.10);

  --shadow-sm: 0 12px 34px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 28px 80px rgba(15,23,42,0.12);

  --radius: 18px;
  --ease: cubic-bezier(.2,.8,.2,1);

  --ring: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent);

  --danger:#ef4444;
  --danger-hover:#dc2626;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html, body{ height:100%; }

body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
}
