/* Tasarim token'lari (:root degiskenleri), reset, html/body/a temel stilleri */

:root {
  --ink: #101828;
  --muted: #5b6575;
  --line: #e5e7eb;
  --surface: #f7f9fc;
  --white: #ffffff;
  --blue: #174ea6;
  --green: #2e3e39;
  --amber: #f4b740;
  --shadow: 0 18px 55px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
