/* VOGAI Legal Docs — shared styles
   Tutarlılık için ana studio'nun krem/siyah paleti. Inter + Instrument Serif. */

:root {
  --bg: #0A0A0A;
  --bg-card: #141414;
  --border: #2a2a2a;
  --text: #EDEDED;
  --secondary: #999;
  --secondary-dim: #666;
  --accent: #E8E2D0;
  --accent-ink: #0A0A0A;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding: 0;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
header .logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic; font-size: 20px;
}
header .brand { font-weight: 500; letter-spacing: -0.02em; font-size: 15px; }
header .brand-sub { font-size: 11px; text-transform: uppercase; color: var(--secondary); letter-spacing: 0.1em; }
header a {
  margin-left: auto;
  font-size: 12px;
  color: var(--secondary);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 120ms ease;
}
header a:hover { color: var(--text); border-color: var(--secondary); }

.eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

h1 {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.last-updated {
  font-size: 11px;
  color: var(--secondary-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

h2 {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 15px;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: var(--text);
}

p.muted, .muted { color: var(--secondary); }

ul, ol {
  margin: 12px 0 20px 24px;
  color: var(--text);
}
li { margin-bottom: 6px; }

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--secondary-dim);
}
a:hover { text-decoration-color: var(--accent); }

.note {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 13px;
  color: var(--secondary);
}
.note strong { color: var(--text); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
th {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  font-weight: 600;
  background: var(--bg-card);
}

footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--secondary);
}
footer nav { display: flex; gap: 20px; }
footer a { color: var(--secondary); text-decoration: none; }
footer a:hover { color: var(--text); }
