/* CİBİM — reset + element defaults. No raw colour values: tokens only. */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font: var(--t-body); color: var(--text);
  background: var(--bg-app);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  padding-bottom: env(safe-area-inset-bottom);
}
h1,h2,h3,h4,p,figure,blockquote,dl,dd { margin: 0; }
ul[class],ol[class] { list-style: none; margin: 0; padding: 0; }
img,svg { max-width: 100%; display: block; }
button,input,select,textarea { font: inherit; color: inherit; }
a { color: var(--accent-text); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }

h1 { font: var(--t-h1); letter-spacing: -.02em; }
h2 { font: var(--t-h2); letter-spacing: -.01em; }
h3 { font: var(--t-h3); }

/* Focus: visible on every interactive element, always. */
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--r-sm); }

/* Tabular figures — mandatory for money, IBANs, dates, any column of numbers. */
.num, table td.num, .amount, .iban {
  font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Azerbaijani has distinct i/İ and ı/I — uppercasing corrupts them.
   Never apply text-transform to UI copy. */
[lang="az"] { text-transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}
