/* shell.css — the real app shell: landing, top bar, bottom-tab nav, and the
   Home / Notlarım / Profil views. Loads after theme-suisse.css (palette vars). */
:root{
  --muted:#6b5d44; --shadow:0 2px 0 var(--ink);
  --nav-h:64px; --top-h:58px;
}

/* ---------- App root layout ---------- */
.app-root{ min-height:100vh; background:var(--cream); padding-bottom:calc(var(--nav-h) + env(safe-area-inset-bottom,0px)); }
.views{ max-width:1000px; margin:0 auto; padding:14px 16px 24px; }
.view[hidden]{ display:none; }

/* ---------- Top bar ---------- */
.topbar{ position:sticky; top:0; z-index:60; height:var(--top-h); background:var(--teal); color:var(--panel2);
  border-bottom:3px solid var(--ink); display:flex; align-items:center; gap:12px; padding:0 14px; }
.topbar-brand{ display:flex; align-items:center; gap:9px; min-width:0; flex:0 0 auto; }
.topbar-logo{ width:32px; height:32px; border-radius:6px; border:2px solid var(--ink); background:var(--panel2); flex:0 0 auto; }
.topbar-title{ font-family:var(--sg); font-weight:700; font-size:16px; color:var(--panel2); white-space:nowrap; }
.topbar-search{ flex:1; min-width:0; display:flex; align-items:center; gap:8px; background:var(--panel2); color:var(--muted);
  border:2px solid var(--ink); border-radius:8px; padding:8px 12px; font-family:var(--sg); font-size:13px; cursor:text; text-align:left; }
.topbar-search svg{ width:15px; height:15px; color:var(--teal); flex:0 0 auto; }
.topbar-search span{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.topbar-right{ display:flex; align-items:center; gap:8px; flex:0 0 auto; }
.cns-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
@media (max-width:640px){ .topbar-title{ display:none; } }

.pill{ font-family:var(--sg); font-weight:700; font-size:12px; border:2px solid var(--ink); border-radius:20px; padding:5px 12px; cursor:pointer; display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
.pill-premium{ background:var(--mustard); color:var(--ink); }
.pill-premium:hover{ background:var(--brick); color:var(--panel2); }
.pill-active{ background:var(--teal-dk); color:var(--panel2); }
.pill-ghost{ background:var(--panel2); color:var(--ink); }
.pill svg{ width:14px; height:14px; }

/* ---------- Bottom nav ---------- */
.bottomnav{ position:fixed; left:0; right:0; bottom:0; z-index:70; height:calc(var(--nav-h) + env(safe-area-inset-bottom,0px));
  padding-bottom:env(safe-area-inset-bottom,0px); background:var(--panel2); border-top:3px solid var(--ink);
  display:flex; }
.navbtn{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px;
  background:none; border:none; cursor:pointer; color:var(--muted); font-family:var(--sg); font-weight:500; font-size:11px; padding:6px 0; }
/* the [hidden] attribute (used to gate the admin-only tab) must beat .navbtn's display:flex */
.navbtn[hidden]{ display:none !important; }
.navbtn svg{ width:23px; height:23px; }
.navbtn.active{ color:var(--brick); }
.navbtn.active svg{ color:var(--brick); }
.navbtn .nav-dot{ position:absolute; }

/* ---------- Generic section blocks ---------- */
.block{ background:var(--panel2); border:2px solid var(--ink); border-radius:10px; padding:16px 18px; margin:0 0 16px; }
.block-title{ font-family:var(--sg); font-weight:700; font-size:15px; margin:0 0 12px; display:flex; align-items:center; gap:8px; }
.block-title .more{ margin-left:auto; font-size:12px; font-weight:500; color:var(--teal); cursor:pointer; }
.muted{ color:var(--muted); }
.btn{ font-family:var(--sg); font-weight:700; border:2px solid var(--ink); border-radius:6px; padding:10px 16px; cursor:pointer; background:var(--panel2); color:var(--ink); font-size:14px; }
.btn:hover{ background:var(--mustard-lt); }
.btn-primary{ background:var(--brick); color:var(--panel2); } .btn-primary:hover{ background:var(--brick-dk); }
.btn-teal{ background:var(--teal); color:var(--panel2); } .btn-teal:hover{ background:var(--teal-dk); }
.btn-ink{ background:var(--ink); color:var(--panel2); } .btn-ink:hover{ background:#3c352a; }
.btn-block{ display:block; width:100%; text-align:center; }
.btn-sm{ padding:6px 12px; font-size:12.5px; }

/* ---------- HOME ---------- */
.home-hero{ background:var(--teal); border:2px solid var(--ink); border-radius:12px; padding:20px; color:var(--panel2); margin:0 0 16px; }
.home-hero h1{ font-family:var(--sg); font-weight:700; font-size:22px; margin:0 0 4px; color:var(--panel2); }
.home-hero p{ margin:0 0 14px; font-size:13.5px; color:#d8e7e3; }
.home-search{ display:flex; gap:8px; }
.home-search input{ flex:1; border:2px solid var(--ink); border-radius:8px; padding:12px 14px; font-family:var(--sg); font-size:15px; background:var(--panel2); color:var(--ink); }
.home-search .btn{ background:var(--mustard); }

.grid-modes{ display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:10px; }
.mode-card{ display:flex; flex-direction:column; gap:6px; align-items:flex-start; text-align:left; background:var(--panel); border:2px solid var(--ink); border-radius:9px; padding:12px; cursor:pointer; font-family:var(--sg); }
.mode-card:hover{ background:var(--mustard-lt); transform:translateY(-1px); }
.mode-card .ic{ width:30px; height:30px; border-radius:7px; background:var(--teal); color:var(--panel2); display:flex; align-items:center; justify-content:center; border:2px solid var(--ink); }
.mode-card .ic svg{ width:17px; height:17px; }
.mode-card .t{ font-weight:700; font-size:13.5px; }
.mode-card .s{ font-size:11px; color:var(--teal); }
.mode-card.free .ic{ background:var(--mustard); color:var(--ink); }

.chips{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{ display:inline-flex; align-items:center; gap:6px; background:var(--panel); border:2px solid var(--ink); border-radius:18px; padding:7px 13px; cursor:pointer; font-family:var(--sg); font-weight:500; font-size:13px; }
.chip:hover{ background:var(--mustard-lt); }
.chip .tag-free{ font-size:9px; font-weight:700; letter-spacing:.04em; background:var(--mustard); color:var(--ink); border-radius:3px; padding:1px 5px; }

.cat-list{ display:flex; flex-direction:column; }
.cat-row{ display:flex; align-items:center; justify-content:space-between; padding:11px 4px; border-bottom:1.5px solid var(--sand); cursor:pointer; }
.cat-row:last-child{ border-bottom:none; }
.cat-row:hover{ background:var(--panel); }
.cat-row .cn{ font-weight:500; font-size:14px; }
.cat-row .cc{ font-size:12px; color:var(--muted); display:flex; align-items:center; gap:8px; }
.cat-row .arrow{ color:var(--teal); }

/* ---------- Premium promo / comparison ---------- */
.promo{ background:var(--mustard-lt); border:2px solid var(--brick); border-radius:12px; padding:18px; margin:0 0 16px; }
.promo h3{ font-family:var(--sg); font-weight:700; font-size:17px; margin:0 0 4px; }
.promo .price{ font-size:30px; font-weight:700; color:var(--brick); }
.promo .price small{ font-size:13px; font-weight:500; color:var(--teal-dk); }
.compare{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:14px 0; }
.compare .col{ background:var(--panel2); border:2px solid var(--ink); border-radius:9px; padding:12px; }
.compare .col.full{ border-color:var(--brick); background:#fff7ee; }
.compare .col h4{ margin:0 0 8px; font-size:13px; font-family:var(--sg); font-weight:700; display:flex; align-items:center; gap:6px; }
.compare .col h4 .tag{ font-size:9px; padding:1px 6px; border-radius:3px; font-weight:700; }
.tag-free-b{ background:var(--mustard); color:var(--ink); }
.tag-full-b{ background:var(--brick); color:var(--panel2); }
.flist{ list-style:none; margin:0; padding:0; }
.flist li{ font-size:12.5px; padding:4px 0 4px 20px; position:relative; line-height:1.4; }
.flist li::before{ content:"✓"; position:absolute; left:0; color:var(--teal); font-weight:700; }
.flist li.no::before{ content:"–"; color:var(--muted); }
.flist li.no{ color:var(--muted); }

.status-card{ background:var(--teal); border:2px solid var(--ink); border-radius:12px; padding:16px 18px; color:var(--panel2); margin:0 0 16px; display:flex; align-items:center; gap:12px; }
.status-card .ck{ width:40px; height:40px; border-radius:50%; background:var(--mustard); color:var(--ink); border:2px solid var(--ink); display:flex; align-items:center; justify-content:center; flex:0 0 auto; }
.status-card h3{ margin:0; font-size:16px; color:var(--panel2); font-family:var(--sg); font-weight:700; }
.status-card p{ margin:2px 0 0; font-size:12.5px; color:#d8e7e3; }

/* ---------- NOTLARIM ---------- */
.notes-head{ display:flex; align-items:center; justify-content:space-between; margin:0 0 6px; }
.notes-head h2{ font-family:var(--sg); font-weight:700; font-size:20px; margin:0; }
.notes-device-note{ font-size:12.5px; margin:0 0 14px; }
.note-card{ background:var(--panel2); border:2px solid var(--ink); border-radius:10px; padding:13px 15px; margin:0 0 11px; }
.note-card h4{ margin:0 0 4px; font-size:15px; font-family:var(--sg); font-weight:700; }
.note-card .meta{ font-size:11px; color:var(--muted); margin:0 0 7px; }
.note-card p{ margin:0; font-size:13.5px; white-space:pre-wrap; line-height:1.5; }
.note-card .acts{ display:flex; gap:7px; margin-top:10px; }
.note-topic{ display:inline-block; font-size:11px; background:var(--mustard-lt); border:1.5px solid var(--mustard); border-radius:4px; padding:1px 7px; color:var(--brick-dk); margin-bottom:6px; }
.empty{ text-align:center; padding:36px 16px; color:var(--muted); }
.empty .big{ width:54px; height:54px; border-radius:12px; background:var(--panel); border:2px solid var(--ink); display:inline-flex; align-items:center; justify-content:center; margin-bottom:12px; }
.note-editor input, .note-editor textarea{ width:100%; box-sizing:border-box; border:2px solid var(--ink); border-radius:7px; padding:10px 12px; font-family:var(--sg); font-size:14px; background:var(--panel2); margin:0 0 11px; }
.note-editor textarea{ min-height:120px; resize:vertical; line-height:1.5; }

/* ---------- PROFIL ---------- */
.prof-card{ display:flex; align-items:center; gap:14px; background:var(--panel2); border:2px solid var(--ink); border-radius:12px; padding:18px; margin:0 0 16px; }
.prof-avatar{ width:56px; height:56px; border-radius:50%; background:var(--teal); color:var(--panel2); border:2px solid var(--ink); display:flex; align-items:center; justify-content:center; font-family:var(--sg); font-weight:700; font-size:22px; flex:0 0 auto; }
.prof-card h2{ margin:0; font-size:18px; font-family:var(--sg); font-weight:700; }
.prof-card .email{ font-size:13px; color:var(--muted); }
.prof-card .prof-meta{ font-size:12px; color:var(--teal); margin:3px 0 5px; }
.prof-card .badge{ display:inline-block; margin-top:6px; font-size:10px; text-transform:uppercase; letter-spacing:.04em; font-weight:700; padding:2px 8px; border-radius:4px; border:1.5px solid var(--ink); }
.badge-paid{ background:var(--mustard); color:var(--ink); } .badge-free{ background:var(--panel); color:var(--teal-dk); } .badge-admin{ background:var(--teal-dk); color:var(--panel2); }
.settings-row{ display:flex; align-items:center; justify-content:space-between; padding:13px 4px; border-bottom:1.5px solid var(--sand); cursor:pointer; font-size:14px; }
.settings-row:last-child{ border-bottom:none; }
.settings-row .arrow{ color:var(--teal); }
.settings-row.danger{ color:var(--brick); font-weight:700; }

/* ---------- LANDING (marketing) ---------- */
.landing{ min-height:100vh; background:var(--cream); display:block; }
.landing[hidden]{ display:none; }
.home-greet{ font-family:var(--sg); font-weight:500; font-size:13px; color:#d8e7e3; margin:0 0 2px; letter-spacing:.02em; }

.mk-wrap{ max-width:1080px; margin:0 auto; padding:0 22px; }
.mk-header{ position:sticky; top:0; z-index:40; background:var(--teal); border-bottom:3px solid var(--ink); }
.mk-header .mk-wrap{ display:flex; align-items:center; justify-content:space-between; height:60px; }
.mk-brand{ display:flex; align-items:center; gap:9px; cursor:pointer; }
.mk-brand img{ width:34px; height:34px; border:2px solid var(--ink); border-radius:7px; background:var(--panel2); }
.mk-brand span{ display:flex; flex-direction:column; line-height:1.05; }
.mk-brand b{ font-family:var(--sg); font-weight:700; font-size:15px; color:var(--panel2); letter-spacing:.02em; }
.mk-brand small{ font-size:9px; letter-spacing:.14em; text-transform:uppercase; color:var(--mustard-lt); }
.mk-nav{ display:flex; align-items:center; gap:18px; }
.mk-nav a{ font-family:var(--sg); font-weight:500; font-size:13.5px; color:#d8e7e3; cursor:pointer; }
.mk-nav a:hover{ color:var(--panel2); }

.mk-hero{ background:var(--teal); color:var(--panel2); border-bottom:3px solid var(--ink); padding:40px 0 54px; }
.mk-hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:38px; align-items:center; }
.mk-chip{ display:inline-flex; align-items:center; gap:7px; font-size:12px; background:rgba(247,240,221,.14); border:1.5px solid rgba(247,240,221,.4); border-radius:20px; padding:5px 12px; color:#eef5f2; }
.mk-chip b{ background:var(--mustard); color:var(--ink); border-radius:12px; padding:1px 8px; font-size:10px; font-weight:700; }
.mk-kicker{ font-size:11px; letter-spacing:.2em; color:var(--mustard-lt); margin:16px 0 8px; font-weight:700; }
.mk-hero h1{ font-family:var(--sg); font-weight:700; font-size:44px; line-height:1.05; letter-spacing:-.02em; margin:0; color:var(--panel2); }
.mk-hero h1 em{ font-style:normal; color:var(--mustard); }
.mk-lead{ font-size:16px; line-height:1.55; color:#d8e7e3; max-width:460px; margin:16px 0 22px; }
.mk-cta{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.btn-lg{ padding:13px 22px; font-size:15px; }
.mk-textlink{ display:inline-flex; align-items:center; gap:7px; color:var(--panel2); font-weight:700; font-family:var(--sg); cursor:pointer; font-size:14px; }
.mk-textlink svg{ width:18px; height:18px; }
.mk-proof{ display:flex; align-items:center; gap:12px; margin-top:24px; }
.mk-proof p{ font-size:12.5px; color:#d8e7e3; margin:0; line-height:1.4; }
.mk-proof b{ color:var(--panel2); }

.mk-hero-art{ position:relative; }
.mk-float{ position:absolute; display:flex; align-items:center; gap:8px; background:var(--panel2); border:2px solid var(--ink); border-radius:10px; padding:8px 12px; box-shadow:4px 4px 0 rgba(40,35,28,.25); }
.mk-float svg{ width:18px; height:18px; color:var(--brick); flex:0 0 auto; }
.mk-float span{ display:flex; flex-direction:column; line-height:1.15; }
.mk-float b{ font-family:var(--sg); font-weight:700; font-size:12.5px; color:var(--ink); }
.mk-float small{ font-size:10.5px; color:var(--muted); }
.mk-float-1{ top:-14px; left:-18px; }
.mk-float-2{ bottom:-16px; right:-10px; }
.mk-float-2 svg{ color:var(--teal); }

/* product preview window */
.pw-window{ background:var(--panel); border:2px solid var(--ink); border-radius:12px; overflow:hidden; box-shadow:8px 8px 0 rgba(40,35,28,.3); }
.pw-bar{ display:flex; align-items:center; gap:6px; background:var(--ink); padding:8px 12px; }
.pw-bar > span{ width:9px; height:9px; border-radius:50%; background:#6b5d44; }
.pw-bar b{ font-family:var(--sg); font-size:10px; letter-spacing:.1em; color:var(--panel2); margin-left:8px; }
.pw-bar small{ margin-left:auto; font-size:9px; color:#7fd1a8; letter-spacing:.08em; }
.pw-body{ display:flex; min-height:240px; }
.pw-side{ width:46px; background:var(--panel2); border-right:2px solid var(--ink); display:flex; flex-direction:column; align-items:center; gap:11px; padding:11px 0; }
.pw-side img{ width:24px; height:24px; border-radius:5px; }
.pw-side i{ width:18px; height:6px; border-radius:3px; background:var(--sand); }
.pw-side i.on{ background:var(--brick); }
.pw-main{ flex:1; padding:13px 14px; background:var(--panel2); }
.pw-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.pw-head small{ font-size:9px; letter-spacing:.1em; color:var(--muted); font-weight:700; }
.pw-head b{ display:block; font-family:var(--sg); font-weight:700; font-size:16px; color:var(--ink); }
.pw-head span{ font-size:10px; border:1.5px solid var(--sand); border-radius:5px; padding:2px 6px; color:var(--muted); }
.pw-safety{ background:#f7e3df; border:2px solid var(--brick); border-radius:7px; padding:8px 10px; margin-bottom:10px; }
.pw-safety b{ font-size:9px; letter-spacing:.08em; color:var(--brick); font-weight:700; }
.pw-safety p{ margin:2px 0 0; font-size:11px; color:var(--brick-dk); line-height:1.35; }
.pw-steps{ display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:10px; }
.pw-steps > div{ background:var(--panel); border:1.5px solid var(--sand); border-radius:7px; padding:7px 9px; }
.pw-steps small{ font-size:9px; color:var(--mustard-dk,#a8651c); font-weight:700; }
.pw-steps b{ display:block; font-size:11.5px; font-weight:700; color:var(--ink); margin:1px 0; }
.pw-steps p{ margin:0; font-size:10px; color:var(--muted); line-height:1.3; }
.pw-route{ display:flex; align-items:center; gap:8px; background:var(--teal); color:var(--panel2); border:2px solid var(--ink); border-radius:7px; padding:8px 10px; }
.pw-route svg{ width:16px; height:16px; flex:0 0 auto; }
.pw-route small{ font-size:8.5px; letter-spacing:.08em; color:var(--mustard-lt); font-weight:700; }
.pw-route b{ display:block; font-size:11.5px; font-weight:700; }
.pw-route svg:last-child{ margin-left:auto; }

.mk-ticker{ background:var(--ink); }
.mk-ticker-row{ display:flex; align-items:center; justify-content:center; gap:18px; flex-wrap:wrap; padding:13px 22px; }
.mk-ticker-row span{ font-size:13.5px; color:var(--panel2); font-family:var(--sg); }
.mk-ticker-row b{ color:var(--mustard); font-weight:700; }
.mk-ticker-row i{ color:#6b5d44; font-style:normal; }

.mk-section{ padding:54px 0; }
.mk-intro{ max-width:560px; margin:0 auto 30px; text-align:center; }
.mk-intro.centered{ margin-bottom:34px; }
.mk-intro .eyebrow{ color:var(--brick); }
.mk-intro h2, .mk-section-row h2{ font-family:var(--sg); font-weight:700; font-size:30px; letter-spacing:-.01em; margin:6px 0 8px; color:var(--ink); }
.mk-intro p{ font-size:15px; color:var(--muted); margin:0; }
.mk-benefits{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:14px; }
.mk-benefit{ background:var(--panel2); border:2px solid var(--ink); border-radius:12px; padding:18px; position:relative; }
.mk-benefit svg{ width:26px; height:26px; color:var(--teal); margin:6px 0 8px; }
.mk-bnum{ position:absolute; top:14px; right:16px; font-family:var(--sg); font-weight:700; font-size:22px; color:var(--sand); }
.mk-benefit h3{ font-family:var(--sg); font-weight:700; font-size:16px; margin:0 0 5px; }
.mk-benefit p{ font-size:13px; color:var(--muted); margin:0; line-height:1.5; }

.mk-testi-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:14px; margin-top:22px; }
.mk-testi-card{ background:var(--panel2); border:2px solid var(--ink); border-radius:12px; padding:20px; }
.mk-testi-card p{ font-size:14px; line-height:1.6; margin:0 0 14px; color:var(--ink); }
.mk-testi-who b{ font-family:var(--sg); font-size:13.5px; display:block; }
.mk-testi-who small{ font-size:12px; color:var(--muted); }

.mk-modules{ background:var(--panel); border-top:3px solid var(--ink); border-bottom:3px solid var(--ink); }
.mk-section-row{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:26px; }
.mk-showcase{ display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:13px; }
.mk-mod{ position:relative; text-align:left; background:var(--panel2); border:2px solid var(--ink); border-radius:12px; padding:16px; cursor:pointer; font-family:var(--sg); }
.mk-mod:hover{ transform:translateY(-2px); background:var(--mustard-lt); }
.mk-mod-idx{ font-size:11px; font-weight:700; color:var(--sand); }
.mk-mod-ic{ display:flex; width:34px; height:34px; border-radius:8px; align-items:center; justify-content:center; border:2px solid var(--ink); margin:8px 0 9px; }
.mk-mod-ic svg{ width:18px; height:18px; }
.mod-teal .mk-mod-ic{ background:var(--teal); color:var(--panel2); }
.mod-mustard .mk-mod-ic{ background:var(--mustard); color:var(--ink); }
.mod-brick .mk-mod-ic{ background:var(--brick); color:var(--panel2); }
.mk-mod h3{ font-size:15px; font-weight:700; margin:0 0 3px; }
.mk-mod p{ font-size:12px; color:var(--teal-dk); margin:0; }
.mk-mod-arrow{ position:absolute; bottom:16px; right:16px; width:18px; height:18px; color:var(--ink); opacity:.5; }

.mk-free-grid{ display:grid; grid-template-columns:1fr 1fr; gap:34px; align-items:center; }
.mk-free-copy h2{ font-family:var(--sg); font-weight:700; font-size:28px; margin:6px 0 10px; }
.mk-free-copy > p{ font-size:14px; color:var(--muted); margin:0 0 14px; }
.mk-checks{ list-style:none; padding:0; margin:0 0 18px; }
.mk-checks li{ display:flex; align-items:center; gap:8px; font-size:14px; padding:5px 0; }
.mk-checks li svg{ width:16px; height:16px; color:var(--teal); flex:0 0 auto; }
.mk-checks li.muted{ color:var(--muted); } .mk-checks li.muted svg{ color:var(--muted); }
.mk-samples{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }

.mk-lead{ padding-top:0; }
.mk-lead-box{ display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap;
  background:var(--panel2); border:2px solid var(--ink); border-radius:12px; padding:28px 32px; }
.mk-lead-copy{ flex:1 1 320px; min-width:240px; }
.mk-lead-copy h2{ font-family:var(--sg); font-weight:700; font-size:22px; margin:4px 0 6px; color:var(--ink); }
.mk-lead-copy p{ font-size:14px; color:var(--muted); margin:0; }
.mk-lead-form{ flex:1 1 320px; min-width:260px; }
.mk-lead-row{ display:flex; gap:10px; }
.mk-lead-row input{ flex:1; box-sizing:border-box; border:2px solid var(--ink); border-radius:4px; padding:11px 12px; font-size:14px; font-family:var(--sg); background:var(--panel); color:var(--ink); }
.mk-lead-row .btn{ flex:0 0 auto; }
.mk-lead-ok{ font-size:14px; font-weight:700; color:var(--teal); margin:0; }
@media (max-width:640px){ .mk-lead-row{ flex-direction:column; } }
.mk-sample{ background:var(--panel2); border:2px solid var(--ink); border-radius:11px; padding:14px; cursor:pointer; text-align:left; }
.mk-sample:hover{ background:var(--mustard-lt); transform:translateY(-2px); }
.mk-sample span{ font-size:10px; letter-spacing:.04em; text-transform:uppercase; color:var(--teal); font-weight:700; }
.mk-sample h3{ font-family:var(--sg); font-weight:700; font-size:15px; margin:5px 0 4px; }
.mk-sample p{ font-size:12px; color:var(--muted); margin:0 0 8px; }
.mk-sample small{ font-size:9px; font-weight:700; letter-spacing:.04em; background:var(--mustard); color:var(--ink); border-radius:3px; padding:2px 6px; }

.mk-premium{ background:var(--teal); color:var(--panel2); border-top:3px solid var(--ink); padding:44px 0; }
.mk-premium-grid{ display:grid; grid-template-columns:1.2fr .8fr 1fr auto; gap:26px; align-items:center; }
.mk-premium .eyebrow.light{ color:var(--mustard-lt); }
.mk-premium h2{ font-family:var(--sg); font-weight:700; font-size:26px; margin:6px 0 0; color:var(--panel2); }
.mk-price{ display:flex; align-items:baseline; gap:3px; }
.mk-price span{ font-size:20px; color:var(--mustard); font-weight:700; }
.mk-price b{ font-family:var(--sg); font-size:52px; font-weight:700; color:var(--mustard); line-height:1; }
.mk-price small{ display:block; font-size:11px; color:#d8e7e3; margin-left:6px; }
.mk-premium-list p{ display:flex; align-items:center; gap:8px; font-size:13px; margin:5px 0; color:#eef5f2; }
.mk-premium-list svg{ width:16px; height:16px; color:var(--mustard-lt); }

.mk-footer{ background:var(--panel2); border-top:3px solid var(--ink); padding:22px 0; }
.mk-footer-row{ display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; }
.mk-fbrand{ display:flex; align-items:center; gap:10px; }
.mk-fbrand img{ width:34px; height:34px; border:2px solid var(--ink); border-radius:7px; }
.mk-fbrand p{ font-size:12px; margin:0; line-height:1.3; }
.mk-disclaimer{ font-size:11.5px; color:var(--muted); max-width:340px; margin:0; }
.mk-pwa{ display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:700; color:var(--teal); }
.mk-pwa svg{ width:14px; height:14px; }

/* pricing overlay */
.pricing-overlay{ position:fixed; inset:0; z-index:1300; background:var(--cream); overflow-y:auto; }
.pr-main{ padding:36px 22px 60px; }
.pr-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; max-width:760px; margin:0 auto; }
.pr-card{ background:var(--panel2); border:2px solid var(--ink); border-radius:14px; padding:24px; }
.pr-card.pr-featured{ border-color:var(--brick); background:#fff7ee; position:relative; }
.pr-pop{ position:absolute; top:-12px; left:24px; background:var(--brick); color:var(--panel2); font-size:10px; font-weight:700; letter-spacing:.04em; border-radius:5px; padding:3px 10px; border:2px solid var(--ink); }
.pr-num{ display:flex; align-items:baseline; gap:4px; margin:8px 0 16px; }
.pr-num span{ font-size:22px; font-weight:700; color:var(--brick); }
.pr-num b{ font-family:var(--sg); font-size:46px; font-weight:700; line-height:1; }
.pr-num small{ font-size:12px; color:var(--muted); margin-left:4px; }
.pr-assurance{ display:flex; align-items:center; gap:12px; max-width:760px; margin:22px auto 0; background:var(--panel2); border:2px solid var(--ink); border-radius:10px; padding:14px 16px; }
.pr-assurance svg{ width:24px; height:24px; color:var(--teal); flex:0 0 auto; }
.pr-assurance b{ font-family:var(--sg); font-weight:700; font-size:14px; }
.pr-assurance p{ margin:2px 0 0; font-size:12.5px; color:var(--muted); }

@media (max-width:860px){
  .mk-hero-grid{ grid-template-columns:1fr; gap:46px; }
  .mk-hero h1{ font-size:34px; }
  .mk-nav a[data-scroll]{ display:none; }
  .mk-premium-grid{ grid-template-columns:1fr; gap:16px; text-align:left; }
  .mk-free-grid{ grid-template-columns:1fr; }
  .pr-grid{ grid-template-columns:1fr; }
}
/* Below 860px only [data-scroll] links survive the hide above, but #mkPricing (no
   data-scroll) still crowds Giriş/Kaydol against a wrapping brand lockup on real phones —
   shrink the brand, drop "Fiyatlandırma" (still reachable via the hero's "Planları gör"
   and the footer), and turn Giriş into a plain text link so Kaydol never gets clipped. */
@media (max-width:600px){
  .mk-header .mk-wrap{ height:auto; min-height:56px; padding:9px 14px; }
  .mk-brand small{ display:none; }
  .mk-brand b{ font-size:13px; }
  .mk-brand img{ width:28px; height:28px; }
  .mk-nav{ gap:8px; }
  .mk-nav a#mkPricing{ display:none; }
  #mkLogin{ background:transparent; border:0; padding:8px 4px; color:#d8e7e3; text-decoration:underline; }
  #mkSignup{ padding:9px 14px; }
}

/* legacy landing (unused, kept harmless) */
.landing[hidden]{ display:none; }
.land-hero{ width:100%; background:var(--teal); border-bottom:3px solid var(--ink); color:var(--panel2); text-align:center; padding:46px 20px 38px; }
.land-logo{ width:78px; height:78px; border-radius:16px; border:3px solid var(--ink); background:var(--panel2); margin:0 auto 16px; display:block; }
.land-hero .eyebrow{ font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--mustard-lt); margin:0 0 6px; }
.land-hero h1{ font-family:var(--sg); font-weight:700; font-size:34px; margin:0 0 10px; color:var(--panel2); letter-spacing:-.01em; }
.land-hero p{ margin:0 auto; max-width:520px; font-size:15px; color:#d8e7e3; line-height:1.55; }
.land-cta{ display:flex; gap:12px; justify-content:center; margin-top:22px; flex-wrap:wrap; }
.land-cta .btn{ padding:13px 24px; font-size:15px; }
.land-body{ width:100%; max-width:900px; padding:30px 20px 0; }
.land-feats{ display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:12px; margin:0 0 28px; }
.feat{ background:var(--panel2); border:2px solid var(--ink); border-radius:10px; padding:16px; }
.feat .ic{ width:34px; height:34px; border-radius:8px; background:var(--mustard); color:var(--ink); border:2px solid var(--ink); display:flex; align-items:center; justify-content:center; margin-bottom:10px; }
.feat h3{ font-family:var(--sg); font-weight:700; font-size:15px; margin:0 0 4px; }
.feat p{ margin:0; font-size:12.5px; color:var(--muted); line-height:1.45; }
.land-note{ font-size:11.5px; color:var(--muted); text-align:center; max-width:640px; margin:24px auto 0; line-height:1.5; border-top:1.5px solid var(--sand); padding-top:18px; }

/* ---------- responsive ---------- */
@media (max-width:560px){
  .compare{ grid-template-columns:1fr; }
  .land-hero h1{ font-size:28px; }
  .views{ padding:12px 12px 20px; }
}
@media (min-width:1001px){
  .bottomnav{ left:50%; transform:translateX(-50%); max-width:1000px; border-left:3px solid var(--ink); border-right:3px solid var(--ink); border-radius:14px 14px 0 0; }
}

/* Lift app.js's on-screen draw toggle above the bottom nav */
.annotation-toggle{ bottom:calc(var(--nav-h) + 16px) !important; right:16px !important; z-index:65 !important; border:2px solid var(--ink) !important; }

/* ---------- REHBER: two-pane search-first reference ---------- */
.view-flush{ padding:0 !important; max-width:100% !important; }
.rehber2{ display:flex; align-items:stretch; max-width:1100px; margin:0 auto; min-height:calc(100vh - var(--top-h) - var(--nav-h)); }

/* left panel */
.rehber-side{ width:300px; flex:0 0 auto; background:var(--panel); border-right:2px solid var(--ink);
  display:flex; flex-direction:column; max-height:calc(100vh - var(--top-h)); position:sticky; top:var(--top-h); }
.rside-search{ display:flex; align-items:center; gap:8px; padding:12px 12px 8px; border-bottom:1.5px solid var(--sand); }
.rside-search svg{ width:16px; height:16px; color:var(--teal); flex:0 0 auto; }
.rside-search input{ flex:1; border:2px solid var(--ink); border-radius:7px; padding:8px 10px; font-family:var(--sg); font-size:13.5px; background:var(--panel2); }
.rside-cats{ display:flex; flex-wrap:wrap; gap:6px; padding:10px 12px; border-bottom:1.5px solid var(--sand); }
.rcat{ font-family:var(--sg); font-size:11.5px; font-weight:500; border:2px solid var(--ink); border-radius:14px; padding:3px 9px; background:var(--panel2); color:var(--ink); cursor:pointer; }
.rcat i{ font-style:normal; color:var(--muted); font-size:10.5px; }
.rcat.on{ background:var(--teal); color:var(--panel2); } .rcat.on i{ color:#cfe3e0; }
.rside-list{ flex:1; overflow-y:auto; padding:8px 8px 16px; }
.rside-cat{ font-size:10px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); font-weight:700; margin:12px 6px 5px; }
.ritem{ display:flex; align-items:center; justify-content:space-between; gap:8px; width:100%; text-align:left;
  font-family:var(--sg); font-size:13px; color:var(--ink); background:none; border:none; border-radius:7px; padding:9px 10px; cursor:pointer; }
.ritem:hover{ background:var(--panel2); }
.ritem.on{ background:var(--mustard); color:var(--ink); font-weight:700; }
.ritem .rfree{ font-style:normal; font-size:8.5px; font-weight:700; letter-spacing:.03em; background:var(--mustard-lt); color:var(--brick-dk); border:1px solid var(--mustard); border-radius:3px; padding:1px 4px; flex:0 0 auto; }
.ritem.on .rfree{ background:var(--panel2); }
.rside-empty{ color:var(--muted); font-size:13px; padding:18px 10px; text-align:center; }

/* right reader */
.rehber-main{ flex:1; min-width:0; padding:0 18px 24px; }
.rehber-bar{ padding:10px 0 0; }
.rback{ display:inline-flex; align-items:center; gap:5px; font-family:var(--sg); font-weight:700; font-size:13px; border:2px solid var(--ink); border-radius:7px; padding:6px 12px; background:var(--panel2); color:var(--ink); cursor:pointer; }
.rback svg{ width:14px; height:14px; }
.rback-mobile{ display:none; }
.reader-head{ min-width:0; }
.topics-title{ font-family:var(--sg); font-weight:700; }
/* in topics context, hide app.js's own title+picker; in tool mode, hide my title */
.rehber2:not(.tool-mode) #diagnosisTitle{ display:none; }
.rehber2.tool-mode #rehberTitle{ display:none; }
.rehber2:not(.tool-mode) #rehberTitle{ display:block; }

/* ---------- responsive: master–detail on mobile ---------- */
@media (max-width:820px){
  .rehber2{ display:block; min-height:0; }
  .rehber-side{ width:auto; position:static; max-height:none; border-right:none; border-bottom:2px solid var(--ink); }
  .rside-list{ max-height:none; }
  .rehber-main{ padding:0 14px 24px; }
  .rback-mobile{ display:inline-flex; }
  .rehber2:not(.show-reader) .rehber-main{ display:none; }
  .rehber2.show-reader .rehber-side{ display:none; }
}
@media (min-width:821px){
  /* desktop: list always visible; only tool-mode hides it */
  .rehber2.tool-mode .rehber-side{ display:none; }
  .rehber2:not(.tool-mode) .rehber-bar:empty{ display:none; }
  .rehber2:not(.tool-mode) .rback-mobile{ display:none; }
}
.rehber2.tool-mode .rehber-side{ display:none; }

/* ---------- ARAÇLAR view uses .grid-modes/.mode-card from Home ---------- */

/* ---------- NOTLARIM: Notlar/Çizim toggle + drawings ---------- */
.seg{ display:inline-flex; border:2px solid var(--ink); border-radius:8px; overflow:hidden; }
.seg-btn{ display:flex; align-items:center; gap:6px; font-family:var(--sg); font-weight:700; font-size:13px; border:none; background:var(--panel2); color:var(--ink); padding:8px 14px; cursor:pointer; }
.seg-btn svg{ width:15px; height:15px; }
.seg-btn + .seg-btn{ border-left:2px solid var(--ink); }
.seg-btn.on{ background:var(--teal); color:var(--panel2); }
.tab-head{ display:flex; justify-content:flex-end; margin:0 0 14px; }

.draw-gallery{ display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:14px; }
.draw-thumb{ background:var(--panel2); border:2px solid var(--ink); border-radius:10px; overflow:hidden; display:flex; flex-direction:column; }
.draw-thumb img{ width:100%; height:130px; object-fit:cover; background:#fbf7ec; border-bottom:2px solid var(--ink); cursor:pointer; display:block; }
.dt-meta{ display:flex; flex-direction:column; padding:9px 11px 4px; }
.dt-title{ font-family:var(--sg); font-weight:700; font-size:14px; }
.dt-date{ font-size:11px; color:var(--muted); }
.dt-acts{ display:flex; gap:7px; padding:6px 11px 11px; }

.draw-overlay{ position:fixed; inset:0; z-index:1200; background:var(--cream); display:flex; flex-direction:column; }
.draw-toolbar{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; padding:10px 14px; background:var(--teal); border-bottom:3px solid var(--ink); }
.draw-toolbar .d-title{ flex:0 1 220px; min-width:120px; border:2px solid var(--ink); border-radius:6px; padding:7px 10px; font-family:var(--sg); font-size:13.5px; background:var(--panel2); }
.draw-toolbar .d-tool{ display:flex; align-items:center; gap:5px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:var(--panel2); }
.draw-toolbar .d-tool input[type=color]{ width:30px; height:28px; padding:0; border:2px solid var(--ink); border-radius:5px; background:none; }
.draw-toolbar .d-tool input[type=range]{ width:90px; }
.d-btn{ font-family:var(--sg); font-weight:700; font-size:12.5px; border:2px solid var(--ink); border-radius:6px; padding:7px 12px; background:var(--panel2); color:var(--ink); cursor:pointer; }
.d-btn.on{ background:var(--mustard); }
.d-btn.d-save{ background:var(--brick); color:var(--panel2); }
.d-spacer{ flex:1; }
.draw-stage{ flex:1; background:#fbf7ec; overflow:hidden; }
#dCanvas{ display:block; touch-action:none; cursor:crosshair; }
@media (max-width:640px){ .draw-toolbar .d-title{ flex:1 1 100%; } .d-spacer{ display:none; } }

/* Lift app.js's on-screen draw toggle above the bottom nav */
.annotation-toggle{ bottom:calc(var(--nav-h) + 16px) !important; right:16px !important; z-index:65 !important; border:2px solid var(--ink) !important; }

/* ---------- reader extras (safety banner, verify badge, TOC, privacy) ---------- */
#readerExtras{ margin:0 0 12px; }
#readerExtras:empty{ display:none; }
.rd-safety{ display:flex; gap:10px; background:#f7e3df; border:2px solid var(--brick); border-radius:8px; padding:11px 13px; margin:0 0 10px; }
.rd-safety svg{ width:22px; height:22px; color:var(--brick); flex:0 0 auto; margin-top:1px; }
.rd-safety b{ font-size:10px; letter-spacing:.08em; color:var(--brick); font-weight:700; }
.rd-safety p{ margin:2px 0 0; font-size:13px; color:var(--brick-dk); line-height:1.45; }
.rd-verify{ display:inline-flex; align-items:center; gap:7px; background:var(--panel2); border:1.5px solid var(--teal); border-radius:20px; padding:5px 12px; margin:0 0 10px; font-size:12px; color:var(--teal-dk); }
.rd-verify svg{ width:15px; height:15px; color:var(--teal); flex:0 0 auto; }
.rd-verify b{ font-weight:700; }
.rd-toc{ background:var(--panel2); border:2px solid var(--ink); border-radius:8px; padding:10px 12px; margin:0 0 12px; }
.rd-toc-h{ font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); font-weight:700; margin:0 0 7px; }
.rd-toc-row{ display:flex; flex-wrap:wrap; gap:6px; }
.rd-toc-chip{ display:inline-flex; align-items:center; gap:6px; font-family:var(--sg); font-size:12px; font-weight:500; background:var(--panel); border:2px solid var(--ink); border-radius:7px; padding:5px 10px; cursor:pointer; color:var(--ink); }
.rd-toc-chip:hover{ background:var(--mustard-lt); }
.rd-toc-chip span{ font-weight:700; color:var(--teal); font-size:10px; }
.rd-privacy{ display:flex; gap:11px; background:#e6efe9; border:2px solid var(--teal); border-radius:9px; padding:13px 15px; margin:0 0 4px; }
.rd-privacy svg{ width:24px; height:24px; color:var(--teal); flex:0 0 auto; margin-top:1px; }
.rd-privacy b{ font-family:var(--sg); font-weight:700; font-size:14px; color:var(--teal-dk); }
.rd-privacy p{ margin:3px 0 0; font-size:12.5px; color:var(--teal-dk); line-height:1.45; }

/* Notlarım auto-save indicator */
.note-auto{ font-size:12px; color:var(--muted); font-weight:600; }

/* ============ CONTACT FOOTER (landing) ============ */
.mk-foot{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:26px; padding:8px 0; }
.mk-foot .mk-fbrand{ display:block; }
.mk-foot .mk-fbrand img{ width:38px; height:38px; border:2px solid var(--ink); border-radius:8px; }
.mk-foot .mk-fbrand p{ margin:8px 0; font-size:13px; }
.mk-fcol h4{ font-family:var(--sg); font-weight:700; font-size:13px; margin:0 0 10px; color:var(--ink); }
.mk-fcol p{ font-size:12.5px; color:var(--muted); margin:0 0 7px; line-height:1.45; }
.mk-fcol a{ color:var(--teal); text-decoration:none; cursor:pointer; }
.mk-fcol a:hover{ text-decoration:underline; }
/* accepted payment methods + currency strip */
.mk-foot-pay{ display:flex; align-items:center; flex-wrap:wrap; gap:10px 14px; padding:16px 0 4px; border-top:1px solid var(--line, rgba(0,0,0,.08)); margin-top:8px; }
.mk-pay-label{ font-family:var(--sg); font-weight:700; font-size:12px; letter-spacing:.02em; color:var(--ink); text-transform:uppercase; }
.mk-cards{ display:inline-flex; align-items:center; gap:8px; }
.mk-card{ display:inline-flex; align-items:center; justify-content:center; height:24px; min-width:40px; padding:0 8px; background:#fff; border:1px solid rgba(0,0,0,.12); border-radius:5px; box-shadow:0 1px 2px rgba(0,0,0,.06); font-family:var(--sg); font-weight:800; font-size:12px; letter-spacing:.04em; line-height:1; }
.mk-card-visa{ color:#1a1f71; font-style:italic; }
.mk-card-amex{ background:#006fcf; color:#fff; border-color:#006fcf; }
.mk-card-mc{ padding:0 7px; }
.mk-card-mc svg{ width:34px; height:20px; display:block; }
.mk-pay-note{ font-size:12px; color:var(--muted); flex:1 1 240px; min-width:200px; }
.mk-foot-base{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; border-top:1.5px solid var(--sand); margin-top:6px; padding:12px 0 0; font-size:11.5px; color:var(--muted); }

/* ============ PRICING — shared by landing section + plan overlay (cns-plans.js) ============ */
.mk-pricing{ padding:18px 0 8px; }
.plans-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; align-items:stretch; margin-top:14px; }
.plans-grid-2{ grid-template-columns:repeat(2,1fr); max-width:760px; margin-left:auto; margin-right:auto; }
.plan-card{ position:relative; background:var(--panel2); border:1.5px solid var(--line); border-radius:16px; padding:26px 22px 22px; display:flex; flex-direction:column; box-shadow:0 1px 3px rgba(20,30,45,.05); transition:transform .15s ease, box-shadow .15s ease; }
.plan-card:hover{ transform:translateY(-3px); box-shadow:0 10px 26px rgba(20,30,45,.10); }
.plan-card.feat{ border:2px solid var(--accent); box-shadow:0 14px 34px rgba(20,30,45,.16); z-index:1; }
.plan-card.top{ border-color:var(--accent); }
.plan-card.current{ outline:2px dashed var(--teal); outline-offset:3px; }
/* per-tier accent — reuses the theme-safe category-color tokens (slate / blue / amber) */
.t-free{ --accent:var(--c-img); }
.t-pro{ --accent:var(--c-hep); }
.plan-ribbon{ position:absolute; top:-13px; left:50%; transform:translateX(-50%); display:inline-flex; align-items:center; gap:5px; white-space:nowrap; background:var(--accent); color:var(--panel2); font-family:var(--sg); font-size:11px; font-weight:800; letter-spacing:.05em; border-radius:999px; padding:5px 14px; box-shadow:0 5px 12px rgba(20,30,45,.20); }
.plan-ribbon-ic{ width:12px; height:12px; }
.plan-top{ display:flex; align-items:center; gap:11px; margin:2px 0 9px; }
.plan-emblem{ width:42px; height:42px; border-radius:12px; background:var(--accent); color:var(--panel2); display:flex; align-items:center; justify-content:center; flex:0 0 auto; box-shadow:0 5px 13px rgba(20,30,45,.16); }
.plan-emblem svg{ width:23px; height:23px; }
.plan-name{ font-family:var(--sg); font-size:13px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; color:var(--accent); margin:0; }
.plan-tag{ font-size:13.5px; font-weight:600; color:var(--ink); margin:0 0 14px; line-height:1.35; min-height:36px; }
.plan-pricerow{ display:flex; align-items:baseline; gap:6px; flex-wrap:wrap; }
.plan-amt{ font-family:var(--sg); font-size:40px; font-weight:800; line-height:1; color:var(--ink); letter-spacing:-.02em; }
.plan-per{ font-size:15px; font-weight:700; color:var(--muted); }
.plan-sub{ font-size:14px; font-weight:700; color:var(--brick); }
.plan-note{ font-size:12px; color:var(--muted); margin:5px 0 0; }
.plan-anchor{ font-size:11.5px; color:var(--muted); margin:6px 0 0; line-height:1.4; }
.plan-micro{ font-size:11.5px; color:var(--muted); text-align:center; margin:8px 0 0; }
.plan-micro-trust{ display:flex; align-items:center; justify-content:center; gap:5px; }
.plan-micro-ic{ width:13px; height:13px; flex:0 0 auto; }
.plan-value{ font-size:12px; color:var(--ink); background:var(--mustard-lt); border-radius:8px; padding:8px 11px; margin:13px 0 4px; line-height:1.4; }
.plan-card.feat .plan-value{ font-weight:600; }
.plan-from{ display:flex; align-items:center; gap:8px; font-size:11.5px; font-weight:700; letter-spacing:.02em; text-transform:uppercase; color:var(--muted); margin:15px 0 9px; padding-top:13px; border-top:1px solid var(--sand); }
.plan-from-base{ display:block; }
.pf-em{ display:inline-flex; align-items:center; justify-content:center; color:var(--accent); flex:0 0 auto; }
.pf-em svg{ width:18px; height:18px; }
.pf-txt{ flex:1; color:var(--ink); }
.pf-plus{ display:inline-flex; align-items:center; justify-content:center; width:20px; height:20px; border-radius:50%; background:var(--accent); color:var(--panel2); font-family:var(--sg); font-weight:800; font-size:14px; flex:0 0 auto; }
.plan-feats{ list-style:none; margin:0 0 20px; padding:0; flex:1; }
.plan-feats li{ display:flex; align-items:flex-start; gap:9px; font-size:13.5px; margin:0 0 10px; line-height:1.45; color:var(--ink); }
.plan-feats li svg{ width:17px; height:17px; color:var(--teal); flex:0 0 auto; margin-top:1px; }
.plan-feats li.muted{ color:var(--muted); } .plan-feats li.muted svg{ color:var(--muted); }
.plan-card .btn{ width:100%; }

/* trust strip */
.plan-trust{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px 26px; margin:26px 0 4px; }
.plan-trust-item{ display:inline-flex; align-items:center; gap:7px; font-size:12.5px; font-weight:600; color:var(--muted); }
.plan-trust-item svg{ width:16px; height:16px; color:var(--teal); flex:0 0 auto; }

/* comparison matrix — always visible (classic feature grid) */
.plan-matrix{ max-width:840px; margin:34px auto 0; }
.matrix-h{ text-align:center; font-family:var(--sg); font-weight:800; font-size:21px; color:var(--ink); margin:0 0 16px; }
.cmp-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; border:1.5px solid var(--line); border-radius:14px; background:var(--panel2); box-shadow:0 1px 3px rgba(20,30,45,.05); }
.cmp-table{ width:100%; border-collapse:collapse; font-size:13px; min-width:560px; }
.cmp-table tfoot td{ padding:14px 12px; text-align:center; border-top:1px solid var(--line); }
.cmp-table tfoot td:first-child{ border-top:none; }
.cmp-table tfoot .btn{ width:100%; }
.cmp-table th, .cmp-table td{ padding:11px 12px; text-align:center; border-bottom:1px solid var(--sand); }
.cmp-table thead th{ font-family:var(--sg); font-weight:800; color:var(--ink); font-size:13px; vertical-align:bottom; }
.cmp-table thead th.cmp-feat{ color:var(--c-hep); }
.cmp-em{ display:flex; align-items:center; justify-content:center; width:30px; height:30px; margin:0 auto 6px; border-radius:9px; background:var(--accent); color:var(--panel2); box-shadow:0 3px 8px rgba(20,30,45,.14); }
.cmp-em svg{ width:17px; height:17px; }
.cmp-table tbody th{ text-align:left; font-weight:600; color:var(--ink); font-size:12.5px; }
.cmp-table td.ok svg{ width:17px; height:17px; color:var(--teal); }
.cmp-table td.no svg{ width:15px; height:15px; color:var(--muted); opacity:.55; }
.cmp-table td.val{ font-weight:700; color:var(--ink); font-size:12.5px; }
.cmp-table tbody tr:last-child th, .cmp-table tbody tr:last-child td{ border-bottom:none; font-weight:800; }
.cmp-table td:nth-child(3), .cmp-table th:nth-child(3){ background:var(--mustard-lt); }

/* FAQ */
.plan-faq{ max-width:760px; margin:30px auto 0; }
.plan-faq-h{ font-family:var(--sg); font-weight:700; font-size:18px; color:var(--ink); text-align:center; margin:0 0 14px; }
.plan-q{ border:1.5px solid var(--line); border-radius:11px; background:var(--panel2); margin:0 0 10px; overflow:hidden; }
.plan-q > summary{ display:flex; align-items:center; justify-content:space-between; gap:10px; cursor:pointer; list-style:none; padding:14px 16px; font-weight:700; font-size:14px; color:var(--ink); }
.plan-q > summary::-webkit-details-marker{ display:none; }
.plan-q-chev{ width:18px; height:18px; color:var(--muted); flex:0 0 auto; transition:transform .18s ease; }
.plan-q[open] .plan-q-chev{ transform:rotate(180deg); }
.plan-q p{ margin:0; padding:0 16px 15px; font-size:13.5px; color:var(--muted); line-height:1.6; }
.plan-q a{ color:var(--teal); }

/* plan overlay (onboarding + standalone) */
.plan-overlay{ position:fixed; inset:0; z-index:1300; background:var(--bg); overflow-y:auto; padding:0 0 56px; }
.pl-head{ max-width:760px; margin:0 auto; padding:34px 22px 6px; text-align:center; }
.pl-head h1{ font-family:var(--sg); font-weight:800; font-size:32px; margin:6px 0 8px; color:var(--ink); letter-spacing:-.01em; }
.pl-head p{ font-size:14.5px; color:var(--muted); margin:0; }
.pl-body{ max-width:1040px; margin:0 auto; padding:18px 22px 0; }
.pl-skip{ display:block; margin:26px auto 0; background:none; border:none; color:var(--teal); font-family:var(--sg); font-weight:700; font-size:14px; cursor:pointer; text-decoration:underline; }
.co-note{ font-size:12px; color:var(--muted); margin:12px 0 0; text-align:center; }

@media (max-width:860px){
  .plans-grid{ grid-template-columns:1fr; max-width:440px; margin-left:auto; margin-right:auto; }
  .plan-card.feat{ order:-1; }
  .plan-tag{ min-height:0; }
  .mk-foot{ grid-template-columns:1fr 1fr; gap:20px; }
}
@media (max-width:560px){ .mk-foot{ grid-template-columns:1fr; } .pl-head h1{ font-size:26px; } }

/* ============ LANDING: how-it-works + product showcase mockups ============ */
.mk-how .how-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:14px; }
.how-step{ position:relative; background:var(--panel2); border:1.5px solid var(--line); border-radius:14px; padding:22px 20px 20px; }
.how-step .how-num{ position:absolute; top:-12px; left:20px; width:26px; height:26px; border-radius:50%; background:var(--accent,var(--teal)); color:var(--panel2); display:flex; align-items:center; justify-content:center; font-family:var(--sg); font-weight:800; font-size:13px; box-shadow:0 4px 10px rgba(20,30,45,.16); }
.how-step .how-ic{ display:inline-flex; width:44px; height:44px; border-radius:12px; align-items:center; justify-content:center; background:color-mix(in srgb, var(--accent,var(--teal)) 14%, transparent); color:var(--accent,var(--teal)); margin:6px 0 12px; }
.how-step .how-ic svg{ width:23px; height:23px; }
.how-step h3{ font-family:var(--sg); font-weight:700; font-size:16px; margin:0 0 5px; color:var(--ink); }
.how-step p{ font-size:13px; color:var(--muted); margin:0; line-height:1.5; }
.how-blue{ --accent:var(--c-ust); } .how-teal{ --accent:var(--c-pankreo); } .how-amber{ --accent:var(--c-hep); }

.mk-shots .shots-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:16px; }
.shot{ margin:0; }
.shot-frame{ border:1.5px solid var(--line); border-radius:14px; overflow:hidden; background:#fff; box-shadow:0 10px 30px rgba(20,30,45,.12); }
.shot-bar{ display:flex; align-items:center; gap:6px; padding:9px 12px; background:#eef2f7; border-bottom:1px solid #e2e8f0; }
.shot-bar i{ width:9px; height:9px; border-radius:50%; background:#cbd5e1; }
.shot-bar i:first-child{ background:#f87171; } .shot-bar i:nth-child(2){ background:#fbbf24; } .shot-bar i:nth-child(3){ background:#34d399; }
.shot-screen{ background:#fff; color:#1e293b; height:280px; padding:14px; overflow:hidden; font-size:12px; }
.shot-cap{ margin:14px 4px 0; }
.shot-cap b{ display:block; font-family:var(--sg); font-weight:700; font-size:15px; color:var(--ink); }
.shot-cap span{ display:block; font-size:12.5px; color:var(--muted); margin-top:3px; line-height:1.45; }

/* mockup — Rehber */
.sx-rehber{ display:grid; grid-template-columns:42% 1fr; gap:10px; height:100%; }
.sx-side{ border-right:1px solid #eef2f7; padding-right:8px; display:flex; flex-direction:column; gap:6px; }
.sx-search{ display:flex; align-items:center; gap:5px; background:#f6f8fc; border:1px solid #e6ebf3; border-radius:7px; padding:6px 8px; color:#94a3b8; font-size:11px; }
.sx-search svg{ width:12px; height:12px; }
.sx-item{ display:flex; align-items:center; gap:7px; font-size:11.5px; color:#334155; padding:4px 2px; }
.sx-item.on{ background:#eaf1ff; border-radius:6px; padding:5px 7px; font-weight:700; color:#1e293b; }
.sx-dot{ width:9px; height:9px; border-radius:3px; flex:0 0 auto; }
.sx-cat{ font-size:9px; letter-spacing:.08em; color:#2563eb; font-weight:800; }
.sx-title{ font-family:var(--sg); font-weight:800; font-size:17px; color:#0f172a; margin:2px 0 8px; }
.sx-safety{ background:#fff1f0; border:1px solid #fbc5c0; border-left:3px solid #cf392b; border-radius:7px; padding:7px 9px; font-size:10.5px; color:#9b2c2c; line-height:1.4; }
.sx-safety b{ color:#cf392b; }
.sx-tabs{ display:flex; gap:6px; margin:9px 0 8px; }
.sx-tabs span{ font-size:10.5px; padding:4px 9px; border-radius:6px; background:#f1f5f9; color:#64748b; }
.sx-tabs span.on{ background:#2563eb; color:#fff; font-weight:700; }
.sx-ln{ height:7px; border-radius:4px; background:#eef2f7; margin:7px 0; } .sx-ln.s{ width:60%; }

/* mockup — calculator */
.sx-calc{ height:100%; display:flex; flex-direction:column; gap:9px; }
.sx-ctitle{ display:flex; align-items:center; gap:6px; font-family:var(--sg); font-weight:800; font-size:13px; color:#0f172a; }
.sx-ctitle svg{ width:16px; height:16px; color:#2563eb; }
.sx-fields{ display:grid; grid-template-columns:repeat(3,1fr); gap:7px; }
.sx-fields label{ display:flex; flex-direction:column; gap:3px; background:#f6f8fc; border:1px solid #e6ebf3; border-radius:8px; padding:7px 8px; font-size:9.5px; color:#64748b; }
.sx-fields label b{ font-family:var(--sg); font-size:16px; color:#0f172a; }
.sx-result{ background:#eaf1ff; border:1px solid #c7dafc; border-radius:8px; padding:9px 10px; font-size:11px; color:#1e3a5f; line-height:1.45; }
.sx-badge{ display:inline-block; background:#2563eb; color:#fff; font-weight:800; font-size:11px; border-radius:5px; padding:2px 7px; margin-right:5px; }
.sx-chips{ display:flex; flex-wrap:wrap; gap:6px; }
.sx-chips span{ background:#f1f5f9; border:1px solid #e2e8f0; border-radius:999px; padding:4px 10px; font-size:10.5px; color:#334155; font-weight:600; }

/* mockup — community */
.sx-comm{ height:100%; display:flex; }
.sx-post{ background:#fff; border:1px solid #e6ebf3; border-radius:12px; padding:12px; width:100%; box-shadow:0 2px 8px rgba(20,30,45,.05); }
.sx-ph{ display:flex; align-items:center; gap:9px; }
.sx-av{ width:34px; height:34px; border-radius:50%; background:#2563eb; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:12px; }
.sx-ph b{ font-size:12.5px; color:#0f172a; display:block; } .sx-ph small{ font-size:10px; color:#94a3b8; }
.sx-post p{ font-size:12px; color:#334155; margin:10px 0; line-height:1.45; }
.sx-img{ height:84px; background:#f1f5f9; border:1px dashed #cbd5e1; border-radius:9px; display:flex; align-items:center; justify-content:center; color:#cbd5e1; }
.sx-img svg{ width:30px; height:30px; }
.sx-act{ display:flex; gap:16px; margin-top:10px; color:#64748b; font-size:11.5px; font-weight:600; }
.sx-act span{ display:inline-flex; align-items:center; gap:5px; } .sx-act svg{ width:15px; height:15px; }
.sx-act span:first-child{ color:#cf392b; }

@media (max-width:860px){
  .mk-how .how-grid{ grid-template-columns:1fr; }
  .mk-shots .shots-grid{ grid-template-columns:1fr; max-width:420px; margin-left:auto; margin-right:auto; }
}

/* ---------------- Kanıt Tabanı (#lKaynak) + kaynaklar.html (kv-*) ----------------
   Bibliyografya vitrini. Tipografik monogramlar bilinçli olarak TEK ortak stilde:
   üçüncü taraf logosu/kurumsal renk taklidi yok (docs/KAYNAK-VITRINI-PROMPT.md §1). */
.kv-stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin:0 0 30px; }
.kv-stat{ background:var(--panel2); border:2px solid var(--ink); border-radius:12px; padding:16px 18px; box-shadow:4px 4px 0 rgba(40,35,28,.18); }
.kv-stat b{ display:block; font-family:var(--sg); font-weight:700; font-size:26px; letter-spacing:-.01em; color:var(--ink); }
.kv-stat span{ display:block; margin-top:3px; font-size:12.5px; color:var(--muted); line-height:1.35; }
.kv-sub{ font-family:var(--sg); font-weight:700; font-size:17px; color:var(--ink); margin:0 0 12px; }
.kv-orgs{ display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:12px; }
.kv-org{ background:var(--panel2); border:2px solid var(--ink); border-radius:12px; padding:14px; display:flex; flex-direction:column; gap:4px; transition:transform .12s ease, box-shadow .12s ease; }
.kv-org:hover{ transform:translate(-2px,-2px); box-shadow:4px 4px 0 rgba(40,35,28,.25); }
.kv-org b{ font-family:var(--sg); font-weight:700; font-size:23px; letter-spacing:.02em; color:var(--ink); }
.kv-org span{ font-size:11.5px; color:var(--muted); line-height:1.35; min-height:31px; }
.kv-org i{ font-style:normal; align-self:flex-start; font-size:11px; font-weight:600; color:var(--ink); background:var(--cream); border:1.5px solid var(--ink); border-radius:12px; padding:2px 8px; margin-top:2px; }
.kv-consrow{ display:flex; align-items:center; flex-wrap:wrap; gap:8px; margin:16px 0 0; font-size:12.5px; color:var(--muted); }
.kv-consrow b{ font-weight:600; margin-right:2px; }
.kv-cons{ font-size:12px; font-weight:600; color:var(--ink); background:var(--panel2); border:1.5px solid var(--ink); border-radius:14px; padding:3px 10px; }
.kv-duo{ display:grid; grid-template-columns:1.1fr .9fr; gap:20px; align-items:stretch; margin:30px 0 0; }
.kv-chartbox{ background:var(--panel2); border:2px solid var(--ink); border-radius:12px; padding:18px; }
.kv-chartbox h4{ font-family:var(--sg); font-size:14px; font-weight:700; color:var(--ink); margin:0 0 10px; }
.kv-chart-svg{ width:100%; height:auto; display:block; }
.kv-chart-svg rect{ fill:var(--blue); }
.kv-chart-svg text{ font-family:var(--sg); }
.kv-chart-svg .kv-bar-v, .kv-chart-svg .kv-bar-y{ font-size:9px; fill:var(--muted); text-anchor:middle; }
.kv-chartbox p{ font-size:12.5px; color:var(--muted); margin:10px 0 0; line-height:1.5; }
.kv-proof .kv-proof-body{ padding:16px 18px; }
.kv-proof-h{ font-family:var(--sg); font-weight:700; font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); margin:0 0 10px; }
.kv-proof ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; }
.kv-proof li{ display:flex; gap:10px; align-items:flex-start; justify-content:space-between; font-size:12.5px; color:var(--ink); line-height:1.45; border-bottom:1px dashed var(--line); padding-bottom:8px; }
.kv-proof li em{ font-style:normal; font-weight:700; font-size:11px; color:var(--ink); background:var(--mustard); border:1.5px solid var(--ink); border-radius:10px; padding:1px 7px; white-space:nowrap; }
.kv-proof-cap{ font-size:11.5px; color:var(--muted); margin:12px 0 0; }
.kv-cta{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin:26px 0 0; }
.kv-cta span{ font-size:12.5px; color:var(--muted); }
.kv-note{ font-size:11.5px; color:var(--muted); line-height:1.55; margin:22px auto 0; max-width:760px; text-align:center; }

/* kaynaklar.html (tam kaynakça sayfası) */
.kv-page .mk-intro h1{ font-family:var(--sg); font-weight:700; font-size:32px; letter-spacing:-.01em; margin:6px 0 8px; color:var(--ink); }
.kv-page .kv-note{ margin:0 0 18px; }
.kv-toolbar{ background:var(--panel2); border:2px solid var(--ink); border-radius:12px; padding:14px 16px; margin:0 0 18px; display:flex; flex-direction:column; gap:10px; box-shadow:4px 4px 0 rgba(40,35,28,.18); }
#kvSearch{ width:100%; font:inherit; font-size:14px; padding:10px 12px; border:2px solid var(--ink); border-radius:10px; background:var(--panel); color:var(--ink); box-sizing:border-box; }
.kv-chiprow{ display:flex; align-items:center; flex-wrap:wrap; gap:6px; font-size:12px; color:var(--muted); }
.kv-chiprow b{ font-weight:600; margin-right:4px; }
.kv-chip{ font:inherit; font-size:12px; font-weight:600; color:var(--ink); background:var(--panel); border:1.5px solid var(--ink); border-radius:14px; padding:4px 10px; cursor:pointer; }
.kv-chip i{ font-style:normal; color:var(--muted); font-weight:500; }
.kv-chip.on{ background:var(--ink); color:var(--panel2); }
.kv-chip.on i{ color:var(--panel2); }
.kv-toolmeta{ display:flex; align-items:center; justify-content:space-between; gap:10px; font-size:12.5px; color:var(--muted); }
.kv-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.kv-row{ background:var(--panel2); border:2px solid var(--ink); border-radius:12px; padding:12px 16px; }
.kv-row p{ margin:0; font-size:13.5px; color:var(--ink); line-height:1.5; }
.kv-link{ font-size:12px; font-weight:600; color:var(--blue); white-space:nowrap; }
.kv-badges{ display:flex; flex-wrap:wrap; gap:6px; margin-top:8px; }
.kv-badges em{ font-style:normal; font-size:10.5px; font-weight:700; letter-spacing:.02em; border:1.5px solid var(--ink); border-radius:10px; padding:1px 8px; color:var(--ink); background:var(--panel); }
.kv-badges .kv-y{ background:var(--mustard); }
.kv-badges .kv-c{ border-style:dashed; color:var(--muted); }
@media (max-width:860px){
  .kv-stats{ grid-template-columns:repeat(2,1fr); }
  .kv-duo{ grid-template-columns:1fr; }
}
@media (max-width:520px){
  .kv-orgs{ grid-template-columns:repeat(2,1fr); }
  .kv-stat b{ font-size:22px; }
}
