/*
 * WUW LOOK web sitesi — ortak stil.
 *
 * Palet ve ilkeler mobil uygulamanın tasarım tokenlarından gelir
 * (mobile/src/theme/tokens.ts): tek nötr skala + tek aksan renk,
 * gradient / neon / glow / ağır gölge YOK (§4). Aydınlık ve karanlık
 * tema birlikte tasarlanmıştır (§116-11).
 */
:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --surface-sunken: #f1ede8;
  --text: #1c1a18;
  --text-muted: #6b645d;
  --text-faint: #9c948b;
  --border: #e3ddd5;
  --border-strong: #cfc7bc;
  --accent: #9a4a32;
  --accent-soft: rgba(154, 74, 50, 0.1);
  --on-accent: #ffffff;
  --success: #2f7d5b;
  --danger: #a63a2e;
  --danger-soft: rgba(166, 58, 46, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131211;
    --surface: #1d1b19;
    --surface-sunken: #0e0d0c;
    --text: #f4f1ed;
    --text-muted: #a8a099;
    --text-faint: #736c66;
    --border: #2e2b28;
    --border-strong: #403c38;
    --accent: #d98168;
    --accent-soft: rgba(217, 129, 104, 0.16);
    --on-accent: #1c1a18;
    --success: #5fb98c;
    --danger: #e08374;
    --danger-soft: rgba(224, 131, 116, 0.14);
    color-scheme: dark;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

.wrap {
  width: min(1080px, 100% - 48px);
  margin-inline: auto;
}

a {
  color: var(--accent);
}

/* --- Üst çubuk --- */
.topbar {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}
.brand-mark {
  display: flex;
  gap: 5px;
  align-items: center;
}
.brand-eye {
  width: 11px;
  height: 11px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}
.topnav {
  display: flex;
  gap: 22px;
  font-size: 15px;
}
.topnav a {
  color: var(--text-muted);
  text-decoration: none;
}
.topnav a:hover {
  color: var(--text);
}

/* --- Hero --- */
.hero {
  padding: 84px 0 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 22px;
}
h1 {
  font-size: clamp(34px, 5.5vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 17ch;
}
.lede {
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--text-muted);
  margin: 0;
  max-width: 58ch;
}

.store {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.store-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 15px;
  color: var(--text-muted);
  background: var(--surface);
}
.store-icon {
  width: 19px;
  height: 19px;
  flex: none;
  color: var(--text);
}

/* --- Bölümler --- */
section {
  padding: 62px 0;
  border-top: 1px solid var(--border);
}
h2 {
  font-size: clamp(24px, 3vw, 31px);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.section-lede {
  color: var(--text-muted);
  margin: 0 0 34px;
  max-width: 60ch;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
}
.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* --- Etiketler (§26) --- */
.labels {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.label {
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 16px;
  background: var(--surface);
}
.label.primary {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* --- İlke şeridi --- */
.principle {
  background: var(--surface-sunken);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.principle p {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  max-width: 52ch;
}
.principle .sub {
  margin-top: 12px;
  font-size: 16px;
  color: var(--text-muted);
}

/* --- Belge sayfaları (gizlilik, koşullar, kurallar) --- */
.doc {
  padding: 56px 0 72px;
  max-width: 74ch;
}
.doc h1 {
  font-size: clamp(30px, 4.5vw, 42px);
  max-width: none;
  margin-bottom: 10px;
}
.doc .updated {
  color: var(--text-faint);
  font-size: 15px;
  margin: 0 0 36px;
}
.doc h2 {
  font-size: 23px;
  margin: 40px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.doc h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.doc h3 {
  font-size: 18px;
  margin: 26px 0 8px;
}
.doc p,
.doc li {
  color: var(--text-muted);
}
.doc p {
  margin: 0 0 14px;
}
.doc ul,
.doc ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.doc li {
  margin-bottom: 7px;
}
.doc strong {
  color: var(--text);
}

.doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 16px;
}
.doc th,
.doc td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-muted);
}
.doc th {
  color: var(--text);
  font-weight: 600;
  border-bottom-color: var(--border-strong);
}
.table-scroll {
  overflow-x: auto;
}

.callout {
  background: var(--surface-sunken);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 0 0 22px;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout.warn {
  border-left-color: var(--danger);
}

.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 0 34px;
}
.toc p {
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}
.toc ol {
  margin: 0;
  padding-left: 20px;
}
.toc li {
  margin-bottom: 5px;
}

/* --- Alt bilgi --- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 56px;
  color: var(--text-muted);
  font-size: 15px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .wrap {
    width: min(1080px, 100% - 32px);
  }
  .hero {
    padding: 56px 0 44px;
  }
  .topnav {
    display: none;
  }
}
