/* Sıradasın — web. Tasarım dili "Köz": gölge yok, gradient yok, emoji yok.
   Ayrım çizgiyle yapılır. Köşeler asimetrik ("Çakıl"). Nötrler sıcağa kaydırılmış.
   Renkler mobile/lib/core/theme ile aynı kaynaktan. */

:root {
  --accent: #B4472C;
  --accent-deep: #8E3520;
  --accent-fill: #FBEDE8;
  --bg: #FFFFFF;
  --surface: #FAF8F7;
  --text: #1A1614;
  --text-dim: #6B615C;
  --line: #E8E2DF;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #D2603F;
    --accent-deep: #E8825F;
    --accent-fill: #3A211A;
    --bg: #141110;
    --surface: #1D1917;
    --text: #F5F1EF;
    --text-dim: #A79C96;
    --line: #322C29;
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Üst şerit — rol/marka ayrımı ince çizgiyle, gölgesiz. */
header {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-bottom: 48px;
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 620;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.brand svg { width: 26px; height: 26px; display: block; }

nav { display: flex; gap: 22px; }

nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
}

nav a:hover, nav a[aria-current="page"] { color: var(--accent); }

h1 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 660;
  margin: 0 0 12px;
}

h2 {
  font-size: 20px;
  letter-spacing: -0.015em;
  font-weight: 620;
  margin: 40px 0 8px;
}

p { margin: 0 0 16px; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }

.lede {
  font-size: 19px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.meta {
  font-size: 14px;
  color: var(--text-dim);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

/* "Çakıl" — iki karşıt köşe yuvarlak, diğer ikisi keskine yakın. */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px 4px 18px 4px;
  padding: 20px 22px;
  margin: 0 0 16px;
}

.card.alt { border-radius: 4px 18px 4px 18px; }

.card h2 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

.note {
  background: var(--accent-fill);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 4px 14px 14px 4px;
  padding: 16px 18px;
  margin: 24px 0;
}

.note p:last-child { margin-bottom: 0; }

ul { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 8px; }

/* Enerji yalnızca eylemde: dolu, yüksek kontrast. */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 24px;
  border-radius: 16px 4px 16px 4px;
  text-decoration: none;
  font-weight: 560;
  font-size: 16px;
}

.btn:hover { background: var(--accent-deep); }

@media (prefers-color-scheme: dark) {
  .btn { color: #141110; }
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding: 28px 0 48px;
  color: var(--text-dim);
  font-size: 14px;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

footer a { color: var(--text-dim); }

@media (max-width: 560px) {
  body { font-size: 16px; }
  h1 { font-size: 27px; }
  .lede { font-size: 17px; }
  header { margin-bottom: 32px; }
}
