/* ============================================================
   BenAllset — "Geceden Şafağa" Tasarım Sistemi
   Koyu gece laciverti → gün doğumu bakırı. Editöryel, sıcak, umutlu.
   Fonts: Fraunces (display) · Bricolage Grotesque (body) · Spline Sans Mono (meta)
   ============================================================ */

/* ---------- Değişkenler ---------- */
:root {
  /* Gece */
  --night: #0e1b2c;
  --night-2: #14263f;
  --night-3: #1b3350;
  --night-4: #24405f;
  /* Şafak / Bakır */
  --dawn: #e0a15c;
  --copper: #b87333;
  --copper-bright: #e8a25a;
  --amber: #f2c078;
  --ember: #c4522a;
  /* Kağıt */
  --paper: #f7f3ea;
  --paper-2: #efe9db;
  --paper-3: #e6ddc9;
  /* Mürekkep */
  --ink: #1b2432;
  --ink-soft: #2c3646;
  --muted: #5f6a78;
  --line: rgba(27, 36, 50, 0.14);
  --line-dark: rgba(247, 243, 234, 0.14);
  /* Destek */
  --teal: #2f7f74;
  --teal-soft: #3d9488;
  --rose: #c4522a;
  /* Fontlar */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Bricolage Grotesque", system-ui, sans-serif;
  --font-mono: "Spline Sans Mono", ui-monospace, monospace;
  /* Ölçek */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(14, 27, 44, 0.08);
  --shadow-md: 0 12px 40px rgba(14, 27, 44, 0.14);
  --shadow-glow: 0 0 0 1px rgba(224, 161, 92, 0.25), 0 12px 44px rgba(14, 27, 44, 0.18);
  --wrap: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--copper); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--ember); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 540; line-height: 1.14; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1.1em; }
::selection { background: var(--amber); color: var(--night); }

/* ---------- Doku (noise) ---------- */
.noise::after {
  content: "";
  position: fixed; inset: 0; z-index: 2000; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
}

/* ---------- Konteynerler ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 820px; }

/* ---------- Tipografi yardımcıları ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px; color: var(--copper);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--copper); display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 28px; height: 2px; background: var(--copper); }
.on-dark .eyebrow, .eyebrow--light { color: var(--amber); }
.on-dark .eyebrow::before, .eyebrow--light::before { background: var(--amber); }
.lead { font-size: 20px; line-height: 1.6; color: var(--ink-soft); }
.on-dark .lead { color: rgba(247, 243, 234, 0.82); }
.muted { color: var(--muted); }
.big-title { font-size: clamp(2.2rem, 5vw, 4.1rem); }
.kicker { font-family: var(--font-mono); font-size: 13px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.18s var(--ease), box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--copper-bright), var(--copper));
  color: #fff; box-shadow: 0 8px 26px rgba(184, 115, 51, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(184, 115, 51, 0.45); color: #fff; }
.btn--ghost { border-color: rgba(247, 243, 234, 0.35); color: var(--paper); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn--dark { background: var(--night); color: var(--paper); }
.btn--dark:hover { background: var(--night-3); color: var(--paper); transform: translateY(-2px); }
.btn--paper { background: var(--paper); color: var(--night); }
.btn--paper:hover { background: #fff; color: var(--night); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 27, 44, 0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(247, 243, 234, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 70px; }
.brand { display: flex; align-items: baseline; gap: 10px; font-family: var(--font-display); }
.brand__name { font-size: 21px; color: var(--paper); letter-spacing: -0.01em; }
.brand__name em { font-style: italic; color: var(--amber); }
.brand__tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(247,243,234,0.5); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: 14.5px; font-weight: 500; color: rgba(247, 243, 234, 0.78);
  padding: 9px 14px; border-radius: 999px; transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--paper); background: rgba(247,243,234,0.08); }
.nav__link[aria-current="page"] { color: var(--amber); }
.lang-switch {
  display: inline-flex; border: 1px solid rgba(247,243,234,0.25); border-radius: 999px; overflow: hidden;
}
.lang-switch a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  padding: 7px 12px; color: rgba(247,243,234,0.6);
}
.lang-switch a.is-active { background: var(--copper); color: #fff; }

/* Dil panelleri: varsayılan TR; EN seçilince JS ile gösterilir */
/* Dil sistemi: HTML lang attribute'una göre pane göster/gizle */
[data-lang-pane] { display: none; }
html[lang="tr"] [data-lang-pane].lang--tr { display: block; }
html[lang="en"] [data-lang-pane].lang--en { display: block; }
/* Liste öğesi olan pane'ler (footer link listelerinde) için list-item */
html[lang="tr"] li[data-lang-pane].lang--tr,
html[lang="en"] li[data-lang-pane].lang--en { display: list-item; }
/* Inline pane'ler (duo() ile üretilen span'lar için) */
html[lang="tr"] span[data-lang-pane].lang--tr,
html[lang="en"] span[data-lang-pane].lang--en { display: inline; }
.burger { display: none; background: none; border: 0; color: var(--paper); font-size: 24px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 70% -20%, var(--night-3) 0%, var(--night) 46%, #091120 100%);
  color: var(--paper); padding: clamp(84px, 12vw, 150px) 0 clamp(70px, 9vw, 120px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 12% 28%, rgba(255,255,255,0.7) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 30% 14%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(2px 2px at 52% 34%, rgba(255,255,255,0.55) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 68% 12%, rgba(255,255,255,0.6) 50%, transparent 51%),
    radial-gradient(2px 2px at 84% 30%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 44% 22%, rgba(255,255,255,0.7) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 91% 18%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 22% 42%, rgba(255,255,255,0.45) 50%, transparent 51%);
  animation: twinkle 7s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 220px; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(224,161,92,0.16) 55%, rgba(224,161,92,0.34));
  filter: blur(18px);
  mask-image: linear-gradient(90deg, transparent, black 30%, black 70%, transparent);
}
@keyframes twinkle { from { opacity: 0.75; } to { opacity: 1; } }
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: 22px; animation: rise 0.9s var(--ease) both; }
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem); font-weight: 460; letter-spacing: -0.02em;
  max-width: 18ch; animation: rise 0.9s 0.08s var(--ease) both;
}
.hero__title em { font-style: italic; color: var(--amber); }
.hero__sub { margin: 26px 0 0; max-width: 56ch; animation: rise 0.9s 0.16s var(--ease) both; }
.hero__actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; animation: rise 0.9s 0.24s var(--ease) both; }
.hero__foot { margin-top: 56px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,243,234,0.5); display: flex; gap: 18px; flex-wrap: wrap; animation: rise 0.9s 0.32s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Sayfa içi hero (alt sayfalar) */
.hero--page { padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 76px); }
.hero--page .hero__title { font-size: clamp(2rem, 4.4vw, 3.4rem); }

/* ---------- Bölümler ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section--paper2 { background: var(--paper-2); }
.section--night { background: var(--night); color: var(--paper); }
.section--dawn {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(224,161,92,0.22), transparent 60%),
    linear-gradient(160deg, var(--night-2), var(--night) 70%);
  color: var(--paper);
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin: 16px 0 12px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Grid & Kartlar ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card--dark { background: var(--night-2); border-color: var(--line-dark); color: var(--paper); }
.card--dark:hover { box-shadow: var(--shadow-glow); }
.card__img { aspect-ratio: 16/10; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { font-size: 21px; }
.card__meta { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.card--dark .card__meta { color: rgba(247,243,234,0.45); }
.card__link { margin-top: auto; padding-top: 8px; font-weight: 600; font-size: 15px; }
.card__link::after { content: " →"; }

/* ---------- Kanıt kutusu ---------- */
.evidence {
  border: 1px solid var(--copper); border-left: 4px solid var(--copper);
  background: linear-gradient(120deg, rgba(184,115,51,0.08), rgba(224,161,92,0.03));
  border-radius: var(--radius-sm); padding: 18px 22px; margin: 28px 0;
  font-size: 15.5px; display: flex; gap: 14px; align-items: flex-start;
}
.evidence__icon { font-size: 20px; line-height: 1.4; }
.evidence strong { color: var(--night); }
.on-dark .evidence { border-color: var(--amber); border-left-color: var(--amber); background: rgba(224,161,92,0.1); }
.on-dark .evidence strong { color: var(--amber); }

/* ---------- Tablolar ---------- */
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--line); }
.table { width: 100%; border-collapse: collapse; font-size: 15.5px; background: #fff; }
.table th, .table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { background: var(--paper-2); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.table tr:last-child td { border-bottom: 0; }

/* ---------- Alıntı ---------- */
.quote {
  border-left: 3px solid var(--copper); padding: 6px 0 6px 26px; margin: 32px 0;
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.4vw, 1.65rem); font-style: italic;
  color: var(--ink-soft); line-height: 1.45;
}
.on-dark .quote { color: var(--amber); border-color: var(--amber); }
.quote cite { display: block; font-family: var(--font-mono); font-size: 13px; font-style: normal; color: var(--muted); margin-top: 12px; }

/* ---------- Formül bölümleri ---------- */
.perm-block {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; margin: 18px 0;
  background: #fff; transition: box-shadow 0.25s ease;
}
.perm-block:hover { box-shadow: var(--shadow-sm); }
.perm-block__letter {
  font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--copper);
  display: block; line-height: 1; margin-bottom: 8px;
}
.perm-block h3 { font-size: 22px; margin-bottom: 8px; }
.perm-block p { margin: 0; }

/* 50-40-10 pasta */
.pie-row { display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: center; }
.pie-legend { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.pie-legend li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.pie-legend .dot { width: 14px; height: 14px; border-radius: 50%; margin-top: 5px; flex: none; }
.pie-note { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }

/* İkigai diyagramı */
.ikigai-wrap { display: grid; place-items: center; padding: 20px 0 10px; }
.ikigai-labels { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 28px; margin-top: 18px; }
.ikigai-labels div { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.ikigai-labels b { color: var(--ink); font-weight: 600; }

/* Enerji matrisi */
.matrix { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quad { border-radius: var(--radius); padding: 20px; border: 1px solid var(--line); }
.quad--grow { background: #eef5f0; border-color: #b8d6c6; }
.quad--protect { background: #fbf3e7; border-color: #e6cba4; }
.quad--cut { background: #f4f4f4; border-color: #d6d6d6; }
.quad--drop { background: #f9ece6; border-color: #e0b9a8; }
.quad h4 { font-size: 18px; margin-bottom: 6px; }
.quad .quad__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Pratikler ---------- */
.practice-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 26px 0;
  border-bottom: 1px solid var(--line); align-items: start;
}
.practice-item:last-child { border-bottom: 0; }
.practice-item__num { font-family: var(--font-display); font-size: 34px; color: var(--copper); line-height: 1; }
.practice-item h3 { font-size: 21px; margin-bottom: 6px; }
.practice-item__time { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; display: block; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist label {
  display: flex; gap: 14px; align-items: flex-start; cursor: pointer;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; transition: border-color 0.2s, background 0.2s;
}
.checklist label:hover { border-color: var(--copper); }
.checklist input { width: 20px; height: 20px; accent-color: var(--copper); margin-top: 3px; flex: none; }
.checklist .check-text { font-size: 15.5px; }
.checklist label.done { background: #f2f7f4; border-color: var(--teal); }
.checklist label.done .check-text { text-decoration: line-through; color: var(--muted); }

/* ---------- Kütüphane / makale listesi ---------- */
.lib-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.chip {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em;
  padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line); background: #fff; cursor: pointer;
  transition: all 0.2s; color: var(--ink-soft);
}
.chip:hover { border-color: var(--copper); }
.chip.is-active { background: var(--night); color: var(--paper); border-color: var(--night); }
.ref-item { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.ref-item:last-child { border-bottom: 0; }
.ref-item .ref-authors { font-style: italic; }
.ref-item .ref-year { font-family: var(--font-mono); color: var(--copper); font-size: 13px; }

/* ---------- Araçlar (tools) ---------- */
.tool-hero { position: relative; overflow: hidden; background: var(--night); color: var(--paper); padding: 64px 0 56px; }
.tool-shell { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md); padding: clamp(24px, 4vw, 44px); margin-top: -44px; position: relative; z-index: 3; }
.tool-progress { height: 6px; background: var(--paper-3); border-radius: 99px; overflow: hidden; margin: 18px 0 30px; }
.tool-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--copper), var(--amber)); transition: width 0.4s var(--ease); }
.step { display: none; }
.step.is-active { display: block; animation: rise 0.5s var(--ease) both; }
.step h3 { font-size: 26px; margin-bottom: 8px; }
.step p.lead { font-size: 16.5px; margin-bottom: 22px; }
.step-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input[type="text"], .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: 16px; background: var(--paper); color: var(--ink); transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--copper); }
.field textarea { min-height: 92px; resize: vertical; }
.option-row { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.option-row input { flex: 1; }
.option-row .del { background: none; border: 0; color: var(--ember); font-size: 18px; cursor: pointer; padding: 4px; }
.add-option { background: none; border: 1.5px dashed var(--copper); color: var(--copper); border-radius: 999px; padding: 8px 16px; font-weight: 600; cursor: pointer; }
.add-option:hover { background: rgba(184,115,51,0.08); }
.scale-row { display: flex; gap: 6px; flex-wrap: wrap; }
.scale-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--paper);
  font: inherit; font-weight: 600; cursor: pointer; transition: all 0.15s;
}
.scale-btn:hover { border-color: var(--copper); }
.scale-btn.is-selected { background: var(--copper); border-color: var(--copper); color: #fff; }
.scale-labels { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 4px; }
.result-box { border: 1px solid var(--teal); background: #eef5f0; border-radius: var(--radius); padding: 26px; }
.result-box h3 { color: var(--teal); font-size: 26px; margin-bottom: 10px; }
.result-line { font-size: 16px; padding: 8px 0; border-bottom: 1px dashed rgba(47,127,116,0.3); display: flex; justify-content: space-between; gap: 12px; }
.result-line:last-child { border-bottom: 0; }
.result-line b { font-family: var(--font-mono); }
.bar-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.bar-wrap .bar-label { width: 130px; font-size: 14px; color: var(--ink-soft); }
.bar-track { flex: 1; height: 14px; background: var(--paper-3); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--teal), var(--copper)); width: 0; transition: width 0.8s var(--ease); }
.bar-val { font-family: var(--font-mono); font-size: 13px; color: var(--copper); width: 44px; text-align: right; }

/* Mood */
.mood-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.mood-btn { border: 1.5px solid var(--line); background: var(--paper); border-radius: var(--radius-sm); padding: 14px 4px; cursor: pointer; font-size: 26px; transition: all 0.15s; }
.mood-btn:hover { transform: translateY(-3px); }
.mood-btn.is-selected { border-color: var(--copper); background: #fbf3e7; box-shadow: 0 6px 16px rgba(184,115,51,0.2); }
.mood-note { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
.mood-tag { border: 1px solid var(--line); border-radius: 999px; padding: 9px 12px; background: #fff; cursor: pointer; font-size: 13.5px; transition: all 0.15s; }
.mood-tag.is-selected { background: var(--night); color: var(--paper); border-color: var(--night); }

/* Breath circle */
.breath-stage { position: relative; aspect-ratio: 1; max-width: 340px; margin: 30px auto; }
.breath-circle {
  position: absolute; inset: 12%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(242,192,120,0.9), var(--copper) 60%, #8a5520);
  box-shadow: 0 0 80px rgba(224,161,92,0.5);
  transform: scale(0.82); transition: transform 1.6s ease-in-out;
}
.breath-stage.inhale .breath-circle { transform: scale(1); }
.breath-stage.hold .breath-circle { transform: scale(1); }
.breath-stage.exhale .breath-circle { transform: scale(0.62); }
.breath-pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(224,161,92,0.3); animation: pulse-ring 2.4s ease-out infinite; }
@keyframes pulse-ring { 0% { transform: scale(0.9); opacity: 0.8; } 100% { transform: scale(1.25); opacity: 0; } }
.breath-label { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: 30px; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.4); }
.breath-count { font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.2em; }
.timer-display { text-align: center; font-family: var(--font-mono); font-size: 15px; color: var(--muted); letter-spacing: 0.14em; }
.practice-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }

/* Habit */
.habit-grid { display: grid; grid-template-columns: 170px repeat(7, 1fr); gap: 6px; align-items: center; margin-top: 16px; }
.habit-grid .day { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--muted); text-align: center; }
.habit-grid .habit-name { font-size: 14.5px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.habit-cell { width: 100%; aspect-ratio: 1; border-radius: 8px; border: 1.5px solid var(--line); background: var(--paper); cursor: pointer; font-size: 15px; transition: all 0.15s; }
.habit-cell:hover { border-color: var(--copper); }
.habit-cell.is-done { background: var(--teal); border-color: var(--teal); color: #fff; }
.streak-box { display: inline-flex; align-items: center; gap: 10px; background: #fbf3e7; border: 1px solid #e6cba4; padding: 10px 18px; border-radius: 999px; font-weight: 700; color: #8a5520; }
.streak-box .flame { font-size: 20px; }

/* Mood zaman grafiği */
.mood-chart { display: flex; align-items: flex-end; gap: 4px; height: 150px; padding: 10px 0; border-bottom: 2px solid var(--line); }
.mood-chart .mc-bar { flex: 1; min-width: 5px; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--amber), var(--copper)); opacity: 0.85; transition: height 0.6s var(--ease); position: relative; }
.mood-chart .mc-bar:hover { opacity: 1; }
.mood-chart .mc-bar .mc-tip { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); background: var(--night); color: var(--paper); font-family: var(--font-mono); font-size: 11px; padding: 3px 8px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.15s; margin-bottom: 4px; }
.mood-chart .mc-bar:hover .mc-tip { opacity: 1; }
.mood-chart .mc-empty { flex: 1; min-width: 5px; height: 4px; background: var(--paper-3); border-radius: 4px; }

/* Panel */
.panel-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.panel-tab { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.05em; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; cursor: pointer; transition: all 0.2s; color: var(--ink-soft); }
.panel-tab:hover { border-color: var(--copper); }
.panel-tab.is-active { background: var(--night); color: var(--paper); border-color: var(--night); }
.panel-greeting { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); margin-bottom: 24px; color: var(--night); }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.panel-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.panel-card h3 { font-size: 21px; margin-bottom: 6px; }
.panel-card > p.muted { font-size: 14px; margin-bottom: 16px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; text-align: center; }
.stat-card .stat-num { font-family: var(--font-display); font-size: 34px; color: var(--copper); line-height: 1.1; }
.stat-card .stat-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-top: 6px; }
.note-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--amber); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 12px; }
.note-card.is-pinned { border-left-color: var(--copper); background: #fdf9f1; }
.note-card .note-date { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.note-card .note-text { font-size: 15.5px; margin: 6px 0 10px; white-space: pre-wrap; }
.note-card .note-actions { display: flex; gap: 12px; }
.note-card .note-actions button { background: none; border: 0; cursor: pointer; font-family: var(--font-mono); font-size: 12px; color: var(--copper); padding: 0; }
.plan-item { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 10px; }
.plan-item .plan-info { flex: 1; }
.plan-item .plan-name { font-weight: 700; font-size: 15.5px; }
.plan-item .plan-desc { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.plan-item .plan-dots { display: flex; gap: 4px; margin-top: 8px; }
.plan-item .plan-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--paper-3); }
.plan-item .plan-dot.is-done { background: var(--teal); }
.block-row { display: flex; gap: 10px; margin-bottom: 10px; align-items: center; }
.block-row input.block-time { width: 84px; flex: none; font-family: var(--font-mono); text-align: center; }
.block-row input { padding: 11px 13px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; font-size: 15px; background: var(--paper); }
.block-row input:focus { outline: none; border-color: var(--copper); }
.block-row .del { background: none; border: 0; color: var(--ember); font-size: 18px; cursor: pointer; padding: 4px; }
.priority-row { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.priority-row .p-num { width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--night); color: var(--amber); display: grid; place-items: center; font-family: var(--font-display); font-size: 17px; }
.priority-row input { flex: 1; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; font-size: 15.5px; background: var(--paper); }
.priority-row input:focus { outline: none; border-color: var(--copper); }
.priority-row input.done { text-decoration: line-through; color: var(--muted); }
.priority-row .p-check { width: 24px; height: 24px; accent-color: var(--teal); cursor: pointer; flex: none; }
.review-entry { border-bottom: 1px dashed var(--line); padding: 14px 0; }
.review-entry .re-date { font-family: var(--font-mono); font-size: 12px; color: var(--copper); }
.review-entry .re-q { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.review-entry .re-a { font-size: 14.5px; }
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--night); color: var(--paper); padding: 13px 26px; border-radius: 999px; font-size: 14.5px; box-shadow: var(--shadow-lg); opacity: 0; transition: all 0.35s var(--ease); z-index: 999; pointer-events: none; }
.toast.is-show { transform: translateX(-50%); opacity: 1; }
@media (max-width: 720px) { .panel-grid { grid-template-columns: 1fr; } }

/* ---------- Tam genişlik özellik satırları (ana sayfa) ---------- */
.feature-row {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(28px, 5vw, 76px); align-items: center;
  padding: clamp(28px, 4vw, 54px) 0; border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 0; }
.feature-row--rev .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media img {
  width: 100%; aspect-ratio: 16/11; object-fit: cover; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.feature-media .feature-tag {
  position: absolute; top: 16px; left: 16px; background: rgba(14,27,44,0.82); color: var(--amber);
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em; padding: 7px 14px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.feature-body h3 { font-size: clamp(23px, 2.6vw, 32px); margin-bottom: 14px; }
.feature-body p { font-size: clamp(15.5px, 1.25vw, 17.5px); line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px; }
.on-dark .feature-body p { color: rgba(247,243,234,0.82); }
.on-dark .feature-row { border-bottom-color: var(--line-dark); }
.tool-deep { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 22px; }
.tool-deep .td-card {
  background: rgba(247,243,234,0.05); border: 1px solid rgba(247,243,234,0.14);
  border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.tool-deep .td-card:hover { transform: translateY(-4px); border-color: var(--copper); }
.tool-deep .td-icon { font-size: 30px; }
.tool-deep h3 { font-size: 21px; }
.tool-deep p { font-size: 15px; line-height: 1.7; color: rgba(247,243,234,0.8); flex: 1; }
.practice-mini { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; }
.practice-mini .pm-item { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--amber); border-radius: var(--radius-sm); padding: 20px 22px; }
.practice-mini .pm-item h4 { font-size: 17.5px; margin-bottom: 6px; }
.practice-mini .pm-item p { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }

/* ---------- Yol haritası testi ---------- */
.roadmap-quiz { max-width: 900px; margin: 0 auto; }
.rq-item { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 24px 26px; margin-bottom: 16px; transition: border-color 0.3s, box-shadow 0.3s; }
.rq-item--missing { border-color: var(--ember); box-shadow: 0 0 0 3px rgba(214,90,66,0.15); animation: rq-shake 0.4s; }
@keyframes rq-shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.rq-submit-wrap { text-align: center; margin-top: 30px; position: sticky; bottom: 16px; z-index: 5; }
.rq-submit-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 22px 32px; box-shadow: var(--shadow-lg); display: inline-block; min-width: 280px; max-width: 90vw; }
.rq-progress-bar { width: 100%; height: 8px; background: var(--paper-3); border-radius: 99px; overflow: hidden; margin-bottom: 12px; }
.rq-progress-fill { height: 100%; background: linear-gradient(90deg, var(--amber), var(--teal)); border-radius: 99px; transition: width 0.4s var(--ease); }
.rq-remaining { font-family: var(--font-mono); font-size: 14px; margin-bottom: 14px; }
.rq-remaining--pending { color: var(--ember); }
.rq-remaining--pending b { font-size: 18px; }
.rq-remaining--done { color: var(--teal); font-weight: 700; font-size: 15px; }
.rq-finish { font-size: 15px; padding: 14px 32px; }
.rq-finish:disabled { opacity: 0.4; cursor: not-allowed; background: var(--muted) !important; border-color: var(--muted) !important; }
.rq-finish--ready { animation: rq-pulse 1.8s ease-in-out infinite; }
@keyframes rq-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(47,127,116,0.5); } 50% { box-shadow: 0 0 0 12px rgba(47,127,116,0); } }

/* Kılavuz kartı */
.rq-guide {
  display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: flex-start;
  background: linear-gradient(135deg, #fef8ec 0%, #f7f3ea 100%); border: 2px solid var(--amber);
  border-radius: var(--radius); padding: 22px 26px; margin-bottom: 30px;
}
.rq-guide-num { font-size: 36px; line-height: 1; }
.rq-guide-body h3 { font-size: 19px; margin-bottom: 10px; color: var(--night); }
.rq-guide-body ol { list-style: none; padding: 0; counter-reset: guide; }
.rq-guide-body ol li { counter-increment: guide; padding-left: 30px; position: relative; font-size: 14.5px; line-height: 1.65; margin-bottom: 6px; color: var(--ink); }
.rq-guide-body ol li::before {
  content: counter(guide); position: absolute; left: 0; top: 2px; width: 22px; height: 22px;
  background: var(--copper); color: #fff; border-radius: 50%; text-align: center; font-family: var(--font-mono);
  font-size: 12px; font-weight: 700; line-height: 22px;
}

/* Cevaplanmış soruların ayırt edici stili */
.rq-item--answered { border-color: var(--teal); background: #f7fbf9; }
.rq-item--answered .rq-num { color: var(--teal); font-weight: 700; }
.rq-answer.is-selected {
  background: var(--night); border-color: var(--night); color: var(--paper);
  font-weight: 600; position: relative;
}
.rq-answer.is-selected::after {
  content: "✓"; position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--amber); font-weight: 700; font-size: 15px;
}

@media (max-width: 640px) {
  .rq-guide { grid-template-columns: 48px 1fr; gap: 12px; padding: 18px 20px; }
  .rq-guide-num { font-size: 28px; }
  .rq-submit-card { padding: 18px 22px; min-width: 240px; }
}

/* ---------- 21 Günlük Program tablosu ---------- */
.program21-week-title {
  font-size: clamp(19px, 2.2vw, 24px); margin: 32px 0 14px; padding-bottom: 8px;
  border-bottom: 2px solid var(--amber); display: inline-block;
}
.program21 { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.p21-day {
  display: grid; grid-template-columns: 78px 1fr; gap: 16px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; transition: border-color 0.2s;
}
.p21-day:hover { border-color: var(--copper); }
.p21-num {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  color: var(--copper); letter-spacing: 0.08em; text-transform: uppercase;
  padding-top: 4px; border-right: 1px dashed var(--line); padding-right: 8px;
}
.p21-body { display: flex; flex-direction: column; gap: 8px; }
.p21-item { display: grid; grid-template-columns: 76px 1fr; gap: 10px; align-items: baseline; }
.p21-when { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; color: var(--muted); text-transform: uppercase; }
.p21-text { font-size: 14.5px; line-height: 1.6; color: var(--ink); }
@media (max-width: 640px) {
  .p21-day { grid-template-columns: 1fr; gap: 8px; }
  .p21-num { border-right: 0; border-bottom: 1px dashed var(--line); padding-bottom: 6px; padding-right: 0; }
  .p21-item { grid-template-columns: 62px 1fr; gap: 8px; }
}

/* ---------- Test'ten önce bilgi kartları ---------- */
.test-info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px;
}
.test-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.test-info-card:hover { border-color: var(--copper); transform: translateY(-2px); }
.test-info-icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--night); color: var(--amber);
  display: grid; place-items: center; font-size: 20px;
}
.test-info-body h4 { font-size: 17.5px; margin-bottom: 6px; color: var(--night); }
.test-info-body p { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }
.rq-item .rq-num { font-family: var(--font-mono); font-size: 12px; color: var(--copper); letter-spacing: 0.12em; }
.rq-item h4 { font-size: 19px; margin: 6px 0 14px; }
.rq-answers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rq-answer {
  text-align: left; font: inherit; font-size: 14.5px; line-height: 1.5;
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--paper); cursor: pointer; transition: all 0.15s; color: var(--ink);
}
.rq-answer:hover { border-color: var(--copper); }
.rq-answer.is-selected { background: var(--night); border-color: var(--night); color: var(--paper); }
.rq-result { margin-top: 30px; }
.route-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; margin-bottom: 18px; border-top: 5px solid var(--copper);
  animation: rise 0.5s var(--ease) both;
}
.route-card .rc-rank { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper); }
.route-card h4 { font-size: 23px; margin: 6px 0 10px; }
.route-card .rc-why { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 16px; }
.route-card ol { list-style: none; counter-reset: rc; }
.route-card ol li { counter-increment: rc; margin-bottom: 10px; }
.route-card ol a {
  display: flex; gap: 12px; align-items: center; padding: 12px 16px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; transition: all 0.15s;
}
.route-card ol a::before { content: counter(rc); flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--night); color: var(--amber); display: grid; place-items: center; font-family: var(--font-mono); font-size: 13px; }
.route-card ol a:hover { border-color: var(--copper); transform: translateX(4px); }
@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; gap: 20px; }
  .feature-row--rev .feature-media { order: 0; }
  .rq-answers { grid-template-columns: 1fr; }
}

/* ---------- Ansiklopedi (bilinen + az bilinen yöntemler) ---------- */
.encyc-group { margin-bottom: 40px; }
.encyc-group h3 { font-size: clamp(20px,2.2vw,26px); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--amber); display: inline-block; }
.encyc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.encyc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; transition: border-color 0.2s, transform 0.2s; }
.encyc-item:hover { border-color: var(--copper); transform: translateY(-2px); }
.encyc-item h4 { font-size: 15.5px; margin-bottom: 6px; color: var(--night); }
.encyc-item p { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }
.encyc-note { margin-top: 20px; font-size: 13.5px; color: var(--muted); font-style: italic; border-left: 3px solid var(--line); padding-left: 14px; }

/* ---------- İsim adımı (test öncesi) ---------- */
.rq-name-step { max-width: 560px; margin: 0 auto; text-align: center; padding: 20px 0; }
.rq-name-step h3 { font-size: clamp(22px,2.6vw,28px); margin-bottom: 10px; }
.rq-name-step .rq-hint { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.rq-name-step input { width: 100%; max-width: 400px; padding: 15px 18px; font-size: 17px; text-align: center; border: 2px solid var(--line); border-radius: 999px; font: inherit; background: var(--paper); margin-bottom: 20px; }
.rq-name-step input:focus { outline: none; border-color: var(--copper); }
.rq-promise { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 22px 0; }
.rq-promise span { font-family: var(--font-mono); font-size: 12px; background: var(--night); color: var(--amber); padding: 8px 14px; border-radius: 999px; }

/* ---------- Kişisel Mektup ---------- */
.letter-wrap { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(30px,5vw,60px); }
.letter-wrap::first-letter { font-family: var(--font-display); font-size: 62px; float: left; line-height: 0.85; padding: 8px 10px 0 0; color: var(--copper); }
.letter-date { font-family: var(--font-mono); font-size: 12px; color: var(--muted); text-align: right; margin-bottom: 20px; }
.letter-section { font-size: 16.5px; line-height: 1.85; color: var(--ink); margin-bottom: 8px; white-space: pre-wrap; }
.letter-section a { font-weight: 700; border-bottom: 1.5px solid var(--copper); }
.letter-divider { display: flex; align-items: center; gap: 14px; margin: 34px 0; }
.letter-divider::before, .letter-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.letter-divider span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); }
.letter-universal { background: var(--paper); border-left: 4px solid var(--amber); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 22px; margin: 20px 0; }
.letter-universal h4 { font-size: 17px; margin-bottom: 8px; }
.letter-universal p { font-size: 15px; line-height: 1.75; color: var(--ink-soft); }
.routine-table { width: 100%; border-collapse: collapse; margin: 10px 0 0; }
.routine-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 14.5px; vertical-align: top; }
.routine-table td:first-child { font-family: var(--font-mono); color: var(--copper); font-weight: 700; white-space: nowrap; width: 90px; }
.letter-guarantee { background: var(--night); color: var(--paper); border-radius: var(--radius); padding: 26px 28px; margin-top: 30px; }
.letter-guarantee p { line-height: 1.8; font-size: 15.5px; white-space: pre-wrap; }
.letter-crisis { background: #fdf3f0; border: 1.5px solid var(--ember); border-radius: var(--radius-sm); padding: 20px 22px; margin: 24px 0; }
.letter-crisis strong { color: var(--ember); }
.letter-print { text-align: center; margin-top: 30px; }
@media (max-width: 640px) { .letter-wrap { padding: 26px 20px; } .letter-wrap::first-letter { font-size: 44px; } }

/* ---------- Makale ---------- */
.article-hero { position: relative; overflow: hidden; background: var(--night); color: var(--paper); padding: 64px 0 72px; }
.article-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.5) 50%, transparent 51%), radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,0.4) 50%, transparent 51%), radial-gradient(1px 1px at 45% 60%, rgba(255,255,255,0.5) 50%, transparent 51%); }
.article-hero__inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; padding: 0 24px; }
.article-body { max-width: 780px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) 24px 90px; }
.article-body > h2 { font-size: 32px; margin: 44px 0 16px; }
.article-body > h3 { font-size: 24px; margin: 36px 0 12px; }
.article-body > p { margin-bottom: 1.25em; }
.article-body ul, .article-body ol { padding-left: 24px; margin: 0 0 1.2em; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote { border-left: 3px solid var(--copper); margin: 28px 0; padding: 4px 0 4px 24px; font-family: var(--font-display); font-style: italic; font-size: 21px; color: var(--ink-soft); }
.article-body hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.article-body strong { color: var(--night); }
.article-cover { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.article-cover img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 16/8; object-fit: cover; width: 100%; }
.progressbar { position: fixed; top: 70px; left: 0; height: 3px; background: linear-gradient(90deg, var(--copper), var(--amber)); z-index: 99; width: 0; }
.article-cta { background: var(--night); color: var(--paper); border-radius: var(--radius); padding: 34px; margin-top: 48px; text-align: center; }
.article-cta h3 { font-size: 24px; margin-bottom: 10px; }
.article-cta p { opacity: 0.8; margin-bottom: 20px; }

/* ---------- Arama ---------- */
.search-input {
  width: 100%; padding: 16px 20px; border: 1.5px solid var(--line); border-radius: 999px;
  font: inherit; font-size: 16px; background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 4px rgba(184,115,51,0.12); }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: rgba(247,243,234,0.7); padding: 64px 0 40px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { color: var(--paper); font-size: 16px; margin-bottom: 14px; font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-size: 12.5px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { color: rgba(247,243,234,0.7); }
.footer-grid a:hover { color: var(--amber); }
.footer-brand { font-family: var(--font-display); font-size: 24px; color: var(--paper); margin-bottom: 12px; }
.footer-brand em { color: var(--amber); font-style: italic; }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: rgba(247,243,234,0.4); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Medya ---------- */
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pie-row { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--night-2); padding: 16px; gap: 6px; transform: translateY(-130%); transition: transform 0.35s var(--ease);
    border-bottom: 1px solid var(--line-dark);
  }
  .nav.is-open { transform: none; }
  .nav__link { padding: 13px 16px; }
  .burger { display: block; }
  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .practice-item { grid-template-columns: 46px 1fr; }
  .habit-grid { grid-template-columns: 120px repeat(7, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .mood-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

/* ---------- Ana sayfa 21 günlük genel formül ---------- */
.p21-week { margin-bottom: 48px; }
.p21-week-head { max-width: 780px; margin: 0 auto 22px; text-align: center; }
.p21-week-head h3 {
  font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 30px);
  color: var(--paper); margin-bottom: 10px;
}
.p21-week-sum {
  font-size: 15.5px; line-height: 1.7; color: rgba(247,243,234,0.82);
}
.p21-days-wide {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.p21-day-wide {
  display: grid; grid-template-columns: 56px 1fr; gap: 14px;
  background: rgba(247,243,234,0.06); border: 1px solid rgba(247,243,234,0.15);
  border-radius: var(--radius-sm); padding: 16px 18px;
  transition: border-color 0.2s, transform 0.2s;
}
.p21-day-wide:hover { border-color: var(--amber); transform: translateY(-2px); }
.p21-day-num {
  font-family: var(--font-display); font-size: 30px; font-weight: 600;
  color: var(--amber); line-height: 1;
  border-right: 1px dashed rgba(247,243,234,0.2); padding-right: 12px;
  display: grid; place-items: center;
}
.p21-day-body h4 { font-size: 15.5px; margin-bottom: 8px; color: var(--paper); }
.p21-day-body p { font-size: 14px; line-height: 1.6; color: rgba(247,243,234,0.78); }
.p21-closing {
  max-width: 780px; margin: 32px auto 0; padding: 24px 28px;
  background: rgba(0,0,0,0.15); border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm);
}
.p21-closing p { font-size: 14.5px; line-height: 1.7; color: rgba(247,243,234,0.88); }
.p21-closing strong { color: var(--amber); font-weight: 600; }
@media (max-width: 640px) {
  .p21-day-wide { grid-template-columns: 44px 1fr; gap: 10px; padding: 14px 16px; }
  .p21-day-num { font-size: 24px; padding-right: 8px; }
}
