:root {
  --ink: #ecf3ff;
  --muted: #9caec6;
  --panel: #101a2a;
  --line: #25344a;
  --accent: #5ee1c1;
  --background: #08111f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(111, 140, 255, .13), transparent 29rem),
    radial-gradient(circle at 88% 5%, rgba(94, 225, 193, .09), transparent 24rem),
    var(--background);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(148, 163, 184, .18);
  background: rgba(8, 17, 31, .86);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 780; letter-spacing: -.02em; text-decoration: none; }
.brand-mark { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: #06111d; font-size: 13px; font-weight: 900; letter-spacing: -.08em; background: linear-gradient(135deg, var(--accent), #ffd66f); box-shadow: 0 10px 30px rgba(94, 225, 193, .18); }
nav { display: flex; gap: 6px; }
.language-link { border-radius: 999px; padding: 7px 12px; color: var(--muted); font-size: 13px; text-decoration: none; }
.language-link:hover, .language-link.active { color: var(--ink); background: rgba(255, 255, 255, .07); }
.page-shell { display: grid; grid-template-columns: 220px minmax(0, 820px); gap: 48px; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 72px 0 88px; }
.side-nav { position: sticky; top: 112px; align-self: start; display: flex; flex-direction: column; gap: 6px; }
.side-label { margin: 0 0 8px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.side-nav a { border-left: 2px solid transparent; padding: 7px 12px; color: var(--muted); font-size: 13px; line-height: 1.35; text-decoration: none; }
.side-nav a:hover { color: var(--accent); border-left-color: var(--accent); }
.policy-card { min-width: 0; padding: clamp(28px, 6vw, 68px); border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(180deg, rgba(16, 26, 42, .96), rgba(12, 22, 36, .97)); box-shadow: 0 30px 90px rgba(0, 0, 0, .22); }
.eyebrow { margin-bottom: 12px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
h1 { max-width: 700px; margin: 0; font-size: clamp(36px, 6vw, 62px); line-height: 1.04; letter-spacing: -.055em; }
.updated { margin: 14px 0 32px; color: var(--muted); font-size: 14px; }
.summary { margin-bottom: 46px; padding: 22px 24px; border: 1px solid rgba(94, 225, 193, .28); border-radius: 18px; background: rgba(94, 225, 193, .07); }
.summary strong { color: var(--accent); }
.summary p { margin: 7px 0 0; }
section { scroll-margin-top: 104px; }
section + section { margin-top: 40px; }
h2 { margin: 0 0 12px; font-size: clamp(22px, 3vw, 28px); line-height: 1.2; letter-spacing: -.025em; }
p, li { color: #bdc9da; }
p { margin: 0; }
p + p { margin-top: 15px; }
ul { margin: 10px 0 0; padding-left: 21px; }
li + li { margin-top: 8px; }
strong { color: var(--ink); }
hr { margin: 56px 0; border: 0; border-top: 1px solid var(--line); }
.turkish { padding: 26px; border-radius: 20px; background: rgba(111, 140, 255, .07); }
.contact-link { color: var(--accent); text-underline-offset: 4px; }
.contact-link:hover { color: #9af0dc; }
footer { display: flex; justify-content: space-between; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 24px 0 42px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
footer a { text-decoration: none; }
footer a:hover { color: var(--accent); }
@media (max-width: 820px) {
  .page-shell { grid-template-columns: 1fr; padding-top: 34px; }
  .side-nav { display: none; }
  .policy-card { border-radius: 22px; }
}
@media (max-width: 520px) {
  .site-header { padding-inline: 16px; }
  .brand > span:last-child { display: none; }
  .page-shell { width: min(100% - 24px, 820px); }
  .policy-card { padding: 25px 20px; }
  .language-link { padding-inline: 10px; }
  footer { width: min(100% - 32px, 1180px); }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
