/* Cimetrica One — statik yasal sayfalar (Google Fonts yok; site paleti) */
:root {
  --coal: #0e0e10;
  --panel: #161618;
  --ink: #f2efe8;
  --muted: #8a8780;
  --muted-2: #6b6862;
  --line: rgba(242, 239, 232, 0.12);
  --ember: #c8442a;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  background: var(--coal);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
a {
  color: color-mix(in srgb, var(--ink) 88%, var(--ember));
  text-decoration: none;
}
a:hover {
  color: var(--ember);
  text-decoration: underline;
}
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 60px;
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--coal) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 16px;
}
.logo svg {
  flex-shrink: 0;
}
.back {
  font-size: 13px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
}
.back:hover {
  color: var(--ember);
}
main {
  padding: 4rem 0 6rem;
}
h1 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
.meta {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
h2 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
  color: color-mix(in srgb, var(--ink) 92%, var(--ember));
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
h3 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
p,
li {
  color: color-mix(in srgb, var(--ink) 78%, var(--coal));
  font-size: 15.5px;
}
ul {
  padding-left: 1.2rem;
}
li {
  margin-bottom: 0.35rem;
}
strong {
  color: var(--ink);
}
.info-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 14.5px;
}
.info-box .k {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  font-size: 12.5px;
  color: var(--muted-2);
  font-family: ui-monospace, monospace;
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1200px;
}
