
:root{
  color-scheme: light;
  --page:#efeeee;
  --card:#ffffff;
  --ink:#111214;
  --muted:#6b7076;
  --ring:#eeeeee;
  --blue:#3f52d9;
  --shadow-nav: 0 1px 2px rgba(17,18,20,.05), 0 10px 28px rgba(17,18,20,.07);
  --shadow-card: 0 10px 30px rgba(20,20,43,.09), 0 1px 2px rgba(20,20,43,.05);
}
*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
html{scroll-behavior:smooth}
body{
  background:var(--card);
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  color:var(--ink);
  min-height:100vh;
}
/* tüm sayfa tek bir yüzey: hero, bölümler ve footer aynı kartın içinde */
.page{
  width:100%;
  background:var(--card);
  overflow:clip;
  position:relative;
}
a{text-decoration:none;color:inherit}
button{font:inherit;cursor:pointer;border:0;background:none}
:focus-visible{outline:2px solid var(--blue);outline-offset:3px;border-radius:6px}

/* ---------- hero alanı (artık ayrı kart değil, sayfanın üst bölümü) ---------- */
.shell{
  width:100%;
  max-width:1680px;
  margin:0 auto;
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:calc(100vh - 88px);
  min-height:calc(100svh - 88px);
  padding:0 0 34px;
}
/* hero'nun alt kenarını beyaza eriten yumuşak geçiş — dikiş izi kalmasın */
.shell::after{
  content:"";
  position:absolute;left:0;right:0;bottom:0;height:180px;
  background:linear-gradient(180deg,rgba(255,255,255,0),#fff 78%);
  pointer-events:none;z-index:1;
}

/* ---------- rings ---------- */
.rings{
  position:absolute;
  top:46%;left:50%;
  transform:translate(-50%,-50%);
  width:1800px;height:1080px;
  pointer-events:none;
  z-index:0;
}
.rings circle{fill:none;stroke:var(--ring);stroke-width:1}
.rings .arc{stroke:var(--blue);stroke-width:1.2;opacity:.55;stroke-linecap:round}

/* ---------- nav ---------- */
.navbar{
  position:relative;
  z-index:6;
  width:min(1104px,78%);
  margin:0 auto;
  background:#fff;
  border-radius:999px;
  box-shadow:var(--shadow-nav);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:9px 9px 9px 22px;
}
.brand{display:flex;align-items:center;gap:9px;font-family:"Poppins",sans-serif;font-weight:600;font-size:18.5px;letter-spacing:.03em}
.nav-links{display:flex;align-items:center;gap:30px;font-size:14.5px;color:#2b2d31;font-weight:450}
.nav-links a{display:flex;align-items:center;gap:6px;white-space:nowrap}
.nav-links a:hover{color:#000}
.chev{width:11px;height:11px;stroke:#6b7076;stroke-width:1.8;fill:none;stroke-linecap:round;stroke-linejoin:round}

/* 940px (linklerin gizlendiği nokta) ile geniş ekran arasında navbar
   sıkışıyordu: genişliği artırıp bağlantı aralıklarını kademeli daraltıyoruz. */
@media (max-width:1240px){
  .navbar{width:min(1104px,90%);gap:18px;padding-left:18px}
  .nav-links{gap:22px}
}
@media (max-width:1080px){
  .navbar{width:94%;gap:14px;padding-left:16px}
  .nav-links{gap:15px;font-size:13.8px}
}
.tag-new{
  font-size:9.5px;font-weight:700;letter-spacing:.06em;
  color:#3f52d9;background:#eef1ff;border:1px solid #dfe4ff;
  border-radius:5px;padding:2px 5px;line-height:1;
}
.nav-actions{display:flex;align-items:center;gap:8px}

/* Metin butonlar 940-1212px arasında navbar'a sığmıyor, linkleri sıkıştırıyordu.
   İkon butonlar ~120px yer kazandırıyor; etiket erişilebilirlik için
   aria-label'da, fareyle gelince ipucu olarak gösteriliyor. */
/* navbar tam yuvarlak (999px) olduğu için ikon butonları da daire;
   köşeli kare hap biçimin içinde oturmuyordu */
.nav-ic{position:relative;width:38px;height:38px;flex:none;border-radius:50%;
  display:grid;place-items:center;cursor:pointer;
  color:#1c1e21;background:#fff;border:1px solid #e8e8e8;
  transition:background .18s ease,border-color .18s ease,color .18s ease,
             translate .25s cubic-bezier(.16,1,.3,1)}
.nav-ic svg{width:18px;height:18px;display:block}
.nav-ic:hover{background:#fafafa;border-color:#d8dade;translate:0 -1px}
.nav-ic.is-dark{color:#fff;background:#111214;border-color:#111214}
.nav-ic.is-dark:hover{background:#26282c;border-color:#26282c}
.nav-ic:focus-visible{outline:2px solid #3f52d9;outline-offset:2px}

/* ipucu balonu */
.nav-ic::after{content:attr(data-tip);position:absolute;top:calc(100% + 10px);
  left:50%;translate:-50% -4px;
  white-space:nowrap;font-size:11.5px;font-weight:500;color:#fff;background:#17181a;
  border-radius:7px;padding:5px 9px;opacity:0;pointer-events:none;
  transition:opacity .18s ease,translate .18s ease;z-index:8}
.nav-ic:hover::after,.nav-ic:focus-visible::after{opacity:1;translate:-50% 0}
/* sağdaki buton navbar kenarına yakın; balon dışarı taşmasın */
.nav-actions > .nav-ic:last-child::after{left:auto;right:0;translate:0 -4px}
.nav-actions > .nav-ic:last-child:hover::after,
.nav-actions > .nav-ic:last-child:focus-visible::after{translate:0 0}
@media (hover:none){.nav-ic::after{display:none}}
.btn-ghost{
  font-size:14.5px;font-weight:500;color:#1c1e21;
  padding:10px 18px;border-radius:9px;border:1px solid #e8e8e8;background:#fff;
}
.btn-ghost:hover{background:#fafafa}
.btn-dark{
  font-size:14.5px;font-weight:600;color:#fff;background:#111214;
  padding:11px 20px;border-radius:9px;
}
.btn-dark:hover{background:#26282c}

/* ---------- hero ---------- */
.hero{position:relative;z-index:2;text-align:center;
  flex:1 0 auto;display:flex;flex-direction:column;justify-content:center;
  padding:48px 0 26px}
/* Hero duyuru rozeti — burada uydurma Google/Trustpilot puanları duruyordu.
   Yerine gerçek ve doğrulanabilir bir bilgi: yayındaki sürüm. */
.hero-duyuru{display:inline-flex;align-items:center;gap:10px;margin-bottom:26px;
  align-self:center;                    /* .hero flex kolon; yoksa tam genişliğe esniyor */
  max-width:min(100%,560px);
  border:1px solid #e6e8ec;border-radius:999px;padding:6px 14px 6px 7px;background:#fff;
  box-shadow:0 1px 2px rgba(20,20,43,.04);
  transition:border-color .2s ease,box-shadow .28s ease,translate .28s cubic-bezier(.16,1,.3,1)}
.hero-duyuru:hover{border-color:#dfe4ff;translate:0 -2px;
  box-shadow:0 10px 26px rgba(63,82,217,.12)}
.hd-yeni{flex:none;font-size:10px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  color:#fff;background:#3f52d9;border-radius:999px;padding:5px 10px;line-height:1.4}
.hd-tx{font-size:13.5px;font-weight:500;color:#3d4147;letter-spacing:-.005em}
.hd-ok{width:14px;height:14px;flex:none;color:#a8adb3;
  transition:translate .22s cubic-bezier(.16,1,.3,1),color .2s ease}
.hero-duyuru:hover .hd-ok{translate:3px 0;color:#3f52d9}

@media (max-width:560px){
  .hero-duyuru{gap:8px;padding:5px 12px 5px 6px}
  .hd-tx{font-size:12.2px}
  .hd-yeni{font-size:9px;padding:4px 8px}
}

h1{
  font-family:"Poppins",system-ui,sans-serif;
  font-weight:600;
  font-size:clamp(52px,4.3vw,66px);
  line-height:1.1;
  letter-spacing:-.028em;
  color:#111214;
  text-wrap:balance;
}
.sub{
  margin-top:20px;
  font-size:17px;
  line-height:1.55;
  color:#5f6368;
}
.cta{display:flex;justify-content:center;gap:14px;margin-top:34px}
.cta .primary{
  background:#111214;color:#fff;font-size:15px;font-weight:600;
  padding:15px 26px;border-radius:10px;
}
.cta .primary:hover{background:#26282c}
.cta .secondary{
  background:#fff;color:#17181a;font-size:15px;font-weight:500;
  padding:15px 24px;border-radius:10px;border:1px solid #e6e6e6;
  box-shadow:0 1px 2px rgba(17,18,20,.04);
}
.cta .secondary:hover{background:#fafafa}

/* ---------- notification stack ---------- */
.stack{position:relative;width:342px;margin:56px auto 0}
.glow{
  position:absolute;left:50%;top:14px;transform:translateX(-50%);
  width:430px;height:250px;filter:blur(46px);opacity:.85;z-index:0;
  background:
    radial-gradient(46% 60% at 16% 46%, rgba(63,140,255,.55), transparent 70%),
    radial-gradient(44% 62% at 52% 88%, rgba(150,110,255,.5), transparent 70%),
    radial-gradient(40% 55% at 84% 62%, rgba(255,120,190,.4), transparent 70%),
    radial-gradient(50% 50% at 50% 50%, rgba(120,200,255,.35), transparent 72%);
}
.n-card{
  position:relative;
  background:#fff;
  border:1px solid #f1f1f1;
  border-radius:12px;
  box-shadow:var(--shadow-card);
  text-align:left;
  display:flex;align-items:center;gap:11px;
}
.n1{z-index:4;width:342px;padding:13px 15px}
.n2{z-index:3;width:312px;margin:-9px auto 0;padding:11px 15px;box-shadow:0 8px 22px rgba(20,20,43,.07)}
.n3{z-index:2;width:266px;margin:-9px auto 0;padding:10px 15px;box-shadow:0 6px 18px rgba(20,20,43,.06);
  -webkit-mask-image:linear-gradient(#000 34%,rgba(0,0,0,.25) 88%,transparent);
  mask-image:linear-gradient(#000 34%,rgba(0,0,0,.25) 88%,transparent);}
.av{position:relative;flex:none}
.av .ph{width:34px;height:34px;border-radius:50%;display:block}
.site-av{width:34px;height:34px;border-radius:10px;display:grid;place-items:center;flex:none;
  font-family:"Poppins",sans-serif;font-weight:600;font-size:15px;color:#fff;letter-spacing:-.01em}
.badge{position:absolute;right:-2px;bottom:-2px;width:14px;height:14px;border-radius:50%;border:2px solid #fff;display:grid;place-items:center}
.badge.blue{background:#2f7cf6}
.badge.green{background:#2ec46b}
.badge svg{width:7px;height:7px;fill:#fff}
.n-card > div{min-width:0;flex:1 1 auto}
.n-title{font-size:13.5px;color:#17181a;line-height:1.35;overflow-wrap:break-word}
.n-title b{font-weight:600}
.n-title .light{color:#4a4d52;font-weight:400}
.n-meta{font-size:11.5px;color:#9aa0a6;margin-top:3px;overflow-wrap:break-word}
.n-role{font-size:11.5px;color:#8b9096;margin-top:2px;overflow-wrap:break-word}
.dots{margin-left:auto;flex:none;padding-left:6px;color:#b5b8bc;font-size:15px;letter-spacing:1px;line-height:1;align-self:center}

/* ---------- floating logos ---------- */
.orb{
  position:absolute;
  width:58px;height:58px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 4px 14px rgba(17,18,20,.09), 0 1px 3px rgba(17,18,20,.06);
  display:grid;place-items:center;
  z-index:3;
  transform:translate(-50%,-50%);
}
.orb svg{display:block}
.o1 {left:22.4%;top:19.1%}
.o2 {left:12.9%;top:37.1%}
.o3 {left:26.1%;top:47.7%}
.o4 {left:8.75%;top:56.8%}
.o5 {left:26.9%;top:70.6%}
.o6 {left:77.6%;top:19.1%}
.o7 {left:87.1%;top:37.0%}
.o8 {left:74.0%;top:47.7%}
.o9 {left:91.5%;top:56.8%}
.o10{left:80.5%;top:71.4%}

/* ---------- trusted / logos ---------- */
.trusted{
  position:relative;z-index:2;
  text-align:center;margin-top:0;
  font-size:15px;color:#9aa0a6;
}
.logos{
  position:relative;z-index:2;
  display:flex;align-items:center;justify-content:center;
  gap:20px 40px;flex-wrap:wrap;
  width:min(1180px,82%);
  margin:34px auto 0;
  color:#b6b8bb;
}
.logos > span{display:flex;align-items:center;gap:7px;line-height:1;white-space:nowrap}
.lg-t{font-family:"Poppins",sans-serif;font-weight:600;font-size:18.5px;letter-spacing:-.014em}
.logos > span svg{opacity:.9}
.lg-google{font-family:"Poppins",sans-serif;font-weight:500;letter-spacing:-.02em;font-size:25px}
.lg-airbnb{font-family:"Poppins",sans-serif;font-weight:600;font-size:23px;letter-spacing:-.02em}
.lg-coinbase{font-family:"Poppins",sans-serif;font-weight:500;font-size:22px;letter-spacing:-.01em}
.lg-notion{font-weight:600;font-size:22px;letter-spacing:-.02em}
.lg-gumroad{font-family:"Poppins",sans-serif;font-weight:500;font-size:21px;letter-spacing:.02em}
.lg-paypal{font-family:"Poppins",sans-serif;font-weight:700;font-style:italic;font-size:23px;letter-spacing:-.02em}
.lg-upwork{font-family:"Poppins",sans-serif;font-weight:500;font-size:22px;letter-spacing:-.01em}
.lg-shopify{font-weight:700;font-size:22px;letter-spacing:-.02em}
.lg-stripe{font-weight:700;font-size:23px;letter-spacing:-.045em}
.lg-zoom{font-family:"Poppins",sans-serif;font-weight:700;font-size:23px;letter-spacing:-.03em}

/* ---------- responsive ---------- */
@media (max-width:1180px){
  .orb{width:50px;height:50px}
  h1{font-size:52px}
}
@media (max-width:940px){
  .shell{min-height:auto;padding:22px 0 26px}
  .hero{padding:34px 0 18px}
  .shell::after{height:110px}
  .orb{display:none}
  .rings{display:none}
  .navbar{width:92%}
  .nav-links{display:none}
  h1{font-size:40px}
  h1 br,.sub br{display:none}
  .sub{max-width:440px;margin-left:auto;margin-right:auto}
  .hero{padding-top:64px}
  .trusted{margin-top:88px}
  .logos{width:92%;justify-content:center;gap:26px 34px}
  .stack{width:min(342px,90vw)}
  .n1{width:100%}
  .n2{width:92%}
  .n3{width:78%}
}
@media (prefers-reduced-motion:reduce){*{animation:none !important;transition:none !important}}

/* ================= page sections ================= */
.sec{width:min(1080px,88%);margin:0 auto;padding:100px 0}
.sec-head{text-align:center;max-width:600px;margin:0 auto}
.h2{font-family:"Poppins",sans-serif;font-weight:600;font-size:40px;line-height:1.18;letter-spacing:-.026em;color:#111214;text-wrap:balance}
.h3{font-family:"Poppins",sans-serif;font-weight:600;font-size:30px;line-height:1.22;letter-spacing:-.024em;color:#111214}
.lead{margin-top:16px;font-size:14.5px;line-height:1.65;color:#7a7f85}
.body-s{font-size:13.5px;line-height:1.7;color:#7a7f85}

.btn-row{display:flex;gap:12px;margin-top:26px}
.btn-sm-dark{background:#111214;color:#fff;font-size:13.5px;font-weight:600;padding:11px 20px;border-radius:9px}
.btn-sm-dark:hover{background:#26282c}
.btn-sm-ghost{background:#fff;color:#17181a;font-size:13.5px;font-weight:500;padding:11px 20px;border-radius:9px;border:1px solid #e8e8e8}
.btn-sm-ghost:hover{background:#fafafa}

/* avatars */
.face{--f1:#c9d0d8;--f2:#8a949f;--f3:#606a76;
  width:26px;height:26px;border-radius:50%;background:var(--f1);position:relative;overflow:hidden;flex:none}
.face::before{content:"";position:absolute;left:50%;top:16%;width:40%;height:40%;border-radius:50%;background:var(--f2);transform:translateX(-50%)}
.face::after{content:"";position:absolute;left:50%;bottom:-16%;width:78%;height:54%;border-radius:50% 50% 0 0;background:var(--f3);transform:translateX(-50%)}
.f-b{--f1:#dfd6c8;--f2:#a2907a;--f3:#77664f}
.f-c{--f1:#d3d9e4;--f2:#8892a6;--f3:#5c6679}
.f-d{--f1:#e2d2d2;--f2:#a98686;--f3:#7e5c5c}
.f-e{--f1:#cfe0d6;--f2:#7fa38d;--f3:#5a7a67}
.faces{display:flex;align-items:center}
.faces .face{margin-left:-8px;box-shadow:0 0 0 2px #fff}
.faces .face:first-child{margin-left:0}
.faces .more{margin-left:-8px;height:26px;min-width:26px;padding:0 6px;border-radius:999px;background:#eef1f6;color:#5f6875;
  font-size:10.5px;font-weight:600;display:grid;place-items:center;box-shadow:0 0 0 2px #fff}

/* ---- stats grid ---- */
.stats{display:grid;grid-template-columns:1fr 1fr;margin-top:58px;position:relative}
.stat{padding:46px 44px;text-align:center}
.stats > .stat:nth-child(1),.stats > .stat:nth-child(3){border-right:1px solid #eeeeee}
.stats > .stat:nth-child(1),.stats > .stat:nth-child(2){border-bottom:1px solid #eeeeee}
.stats::after{content:"";position:absolute;left:50%;top:50%;width:10px;height:10px;border-radius:50%;
  background:#fff;border:1px solid #e2e2e2;transform:translate(-50%,-50%)}
.ic{width:46px;height:46px;border-radius:50%;background:#fff;border:1px solid #f0f0f0;
  box-shadow:0 3px 10px rgba(17,18,20,.07);display:grid;place-items:center;margin:0 auto 22px}
.stat h3{font-size:16.5px;font-weight:600;letter-spacing:-.01em;color:#111214;margin-bottom:11px}
.stat p{font-size:13.5px;line-height:1.65;color:#7a7f85;max-width:330px;margin:0 auto}

/* ---- generic mock surface ---- */
.mock{position:relative;border-radius:14px;overflow:clip;padding:26px 22px;
  background:linear-gradient(180deg,#fbfcff 0%,#ffffff 60%)}
.blob{position:absolute;inset:auto -10% -30% -10%;height:70%;filter:blur(48px);opacity:.75;pointer-events:none;
  background:
    radial-gradient(45% 70% at 20% 60%, rgba(90,150,255,.42), transparent 70%),
    radial-gradient(45% 70% at 60% 90%, rgba(155,115,255,.36), transparent 70%),
    radial-gradient(40% 60% at 88% 65%, rgba(255,125,190,.3), transparent 70%);}
.mock > *{position:relative;z-index:1}

.mc{background:#fff;border:1px solid #f0f0f0;border-radius:10px;box-shadow:0 6px 18px rgba(20,20,43,.07);padding:11px 12px}
.mc-t{font-size:12.5px;font-weight:600;color:#17181a;line-height:1.35;overflow-wrap:break-word}
.mc-s{font-size:11px;color:#9aa0a6;margin-top:3px;line-height:1.4;overflow-wrap:break-word}
.mc-row{display:flex;align-items:center;gap:9px;min-width:0}
.mc-row > div{min-width:0}
.chips{display:flex;align-items:center;gap:6px;margin-top:9px;flex-wrap:wrap}
.chip{font-size:10px;font-weight:500;padding:3px 8px;border-radius:6px;line-height:1.4;white-space:nowrap}
.c-red{background:#fff0ef;color:#dd5449}
.c-amber{background:#fff6e8;color:#c1870f}
.c-indigo{background:#f0f2ff;color:#5a68e0}
.c-violet{background:#f2efff;color:#6c5bf2}
.c-slate{background:#f3f5f7;color:#6b7480}
.mc-right{margin-left:auto;display:flex;align-items:center;gap:8px}

/* ---- 2-column split with divider ---- */
.split2{display:grid;grid-template-columns:1fr 1fr;margin-top:54px;position:relative}
.split2 > .col{padding:0 42px}
.split2 > .col:first-child{border-right:1px solid #eeeeee}
.split2::after{content:"";position:absolute;left:50%;top:50%;width:10px;height:10px;border-radius:50%;
  background:#fff;border:1px solid #e2e2e2;transform:translate(-50%,-50%)}
.ft{display:flex;align-items:center;gap:11px;margin-top:30px;
  font-family:"Poppins",sans-serif;font-weight:600;font-size:20px;letter-spacing:-.02em;color:#111214}
.ft + p{margin-top:12px;max-width:400px}

/* ---- tabs panel ---- */
.panel{margin-top:50px;display:grid;grid-template-columns:.92fr 1.08fr;gap:44px;align-items:center;
  border:1px solid #f2f2f2;border-radius:20px;padding:40px;background:linear-gradient(120deg,#fbfcff,#fff 60%)}
.pills{display:flex;gap:8px;margin-bottom:26px;flex-wrap:wrap}
.pill{display:flex;align-items:center;gap:6px;font-size:12.5px;color:#6b7076;background:#fff;
  border:1px solid #ededed;border-radius:999px;padding:7px 13px;line-height:1}
.pill.on{color:#17181a;font-weight:500;box-shadow:0 2px 7px rgba(17,18,20,.07)}
.pill svg{display:block}
.notif-panel{border:1px solid #f1f1f1;border-radius:16px;background:linear-gradient(180deg,#fdfdff,#fff);
  padding:22px;display:flex;flex-direction:column;gap:12px;box-shadow:0 14px 40px rgba(20,20,43,.07)}
.bubble{margin:8px 0 0 44px;background:#f5f7fa;border-radius:10px;padding:7px 11px;font-size:11.5px;color:#4a4d52;display:inline-block}
.mono-av{width:30px;height:30px;border-radius:50%;background:#eceff3;color:#5f6875;font-size:10.5px;font-weight:700;
  display:grid;place-items:center;flex:none}

/* ---- three feature cards ---- */
.cards3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:54px}
.fcard{border:1px solid #f1f1f1;border-radius:18px;padding:16px;background:#fff}
.fcard .mock{min-height:200px;border-radius:13px;padding:20px 16px}
.fcard h3{display:flex;align-items:center;gap:9px;margin:20px 4px 9px;font-size:14.5px;font-weight:600;color:#111214}
.fcard p{margin:0 4px 6px;font-size:12.5px;line-height:1.6;color:#7a7f85}

/* .cards3 ızgarasının ikinci türü: görselsiz, düz metin kartı.
   .fcard bir .mock görseli barındırdığı için onun dolgusu buraya uymuyor. */
.cards3 > .card{border:1px solid #f1f1f1;border-radius:18px;padding:26px 26px 28px;
  background:#fff;display:flex;flex-direction:column;
  transition:translate .28s cubic-bezier(.16,1,.3,1),box-shadow .28s ease,border-color .2s ease}
.cards3 > .card:hover{translate:0 -5px;box-shadow:0 18px 42px rgba(20,20,43,.09);
  border-color:#e6e6e6}
.cards3 > .card h3{font-family:"Poppins",sans-serif;font-size:16.5px;font-weight:600;
  letter-spacing:-.018em;color:#111214}
.cards3 > .card h3::before{content:"";display:block;width:26px;height:2px;border-radius:2px;
  background:linear-gradient(90deg,#3f52d9,#7c5cf5);margin-bottom:14px}
.cards3 > .card p{margin-top:10px;font-size:13.4px;line-height:1.72;color:#7a7f85}
.cards3 > .card p b{color:#3d4147;font-weight:600}

/* ---- split with integration list ---- */
.split-a{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.introw{display:flex;gap:16px;padding:24px 0;border-bottom:1px solid #f0f0f0}
.introw:last-child{border-bottom:0}
.introw .ic{margin:0;width:42px;height:42px}
.introw h3{font-size:14.5px;font-weight:600;color:#111214;margin-bottom:6px}
.introw p{font-size:12.5px;line-height:1.65;color:#7a7f85}
.loved{display:flex;align-items:flex-start;flex-direction:column;gap:14px;margin-top:38px}
.loved p{font-size:12.5px;line-height:1.6;color:#a8adb3;max-width:330px}

/* ---- dashboard mock ---- */
.dash{margin-top:52px;border:1px solid #f0f0f0;border-radius:18px;overflow:clip;
  display:grid;grid-template-columns:186px 1fr;background:#fff;box-shadow:0 22px 60px rgba(20,20,43,.10)}
.dash-side{border-right:1px solid #f2f2f2;background:#fcfcfd;padding:16px 14px}
.dash-brand{display:flex;align-items:center;gap:8px;font-family:"Poppins",sans-serif;font-weight:600;font-size:13px;letter-spacing:.03em;
  padding:4px 6px 18px}
.dnav{display:flex;flex-direction:column;gap:2px}
.dnav span{display:flex;align-items:center;gap:9px;font-size:12px;color:#6b7076;padding:8px 9px;border-radius:8px}
.dnav span.on{background:#f2f4f7;color:#17181a;font-weight:500}
.dot-i{width:13px;height:13px;border-radius:4px;background:#dfe3e9;flex:none}
.dash-main{padding:16px 18px 22px}
.dash-top{display:flex;align-items:center;gap:12px;padding-bottom:14px;border-bottom:1px solid #f3f3f3}
.dash-top b{font-size:14px;font-weight:600}
.search{margin-left:auto;display:flex;align-items:center;gap:7px;border:1px solid #eee;border-radius:8px;
  padding:6px 10px;font-size:11.5px;color:#a8adb3;min-width:150px}
.kanban{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:16px}
.kcol{background:#fafbfc;border:1px solid #f2f2f2;border-radius:12px;padding:10px}
.khead{display:flex;align-items:center;gap:7px;font-size:11.5px;font-weight:600;color:#3d4147;margin-bottom:10px}
.kcount{margin-left:auto;color:#a8adb3;font-weight:500}
.kcard{background:#fff;border:1px solid #f0f0f0;border-radius:9px;padding:10px;margin-bottom:9px;box-shadow:0 2px 6px rgba(20,20,43,.05)}
.kcard b{display:block;font-size:11.5px;font-weight:600;color:#17181a;margin-bottom:5px}
.kcard p{font-size:10.5px;line-height:1.5;color:#9aa0a6;margin-bottom:8px}

/* ---- newsletter ---- */
.news{background:#fafbfc;border-top:1px solid #f1f1f1}
.news .sec{padding:88px 0}
.news form{display:flex;gap:10px;justify-content:center;margin-top:28px;flex-wrap:wrap}
.news input{font:inherit;font-size:13.5px;padding:12px 16px;border:1px solid #e6e6e6;border-radius:9px;
  width:min(320px,80vw);background:#fff;color:#17181a}
.news input::placeholder{color:#a8adb3}
.news input:focus{outline:2px solid var(--blue);outline-offset:1px}

/* ---- footer ---- */
footer{border-top:1px solid #f1f1f1;background:#fff}
.foot{width:min(1080px,88%);margin:0 auto;padding:58px 0 26px;display:grid;grid-template-columns:1.4fr repeat(3,1fr);gap:40px}
.foot .brand{margin-bottom:14px}
.foot p{font-size:12.5px;line-height:1.7;color:#9aa0a6;max-width:250px}
.fcol h3{font-size:12px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:#111214;margin-bottom:14px}
.fcol a{display:block;font-size:13px;color:#7a7f85;padding:5px 0}
.fcol a:hover{color:#111214}
.foot-bottom{width:min(1080px,88%);margin:0 auto;padding:20px 0 40px;border-top:1px solid #f3f3f3;
  display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;font-size:12.5px;color:#a8adb3}

/* ---- section responsive ---- */
@media (max-width:1000px){
  .h2{font-size:32px}
  .h3{font-size:25px}
  .sec{padding:72px 0}
  .cards3{grid-template-columns:1fr;gap:18px}
  .panel{grid-template-columns:1fr;gap:30px;padding:26px}
  .split-a{grid-template-columns:1fr;gap:40px}
  .split2{grid-template-columns:1fr;margin-top:36px}
  .split2 > .col{padding:0;margin-bottom:40px}
  .split2 > .col:first-child{border-right:0;border-bottom:1px solid #eee;padding-bottom:40px}
  .split2::after{display:none}
  .stats{grid-template-columns:1fr}
  .stats > .stat{padding:34px 6px}
  .stats > .stat:nth-child(1),.stats > .stat:nth-child(3){border-right:0}
  .stats > .stat:nth-child(3){border-bottom:1px solid #eee}
  .stats::after{display:none}
  .dash{grid-template-columns:1fr}
  .dash-side{display:none}
  .kanban{grid-template-columns:1fr}
  .foot{grid-template-columns:1fr 1fr;gap:30px}
}

/* ==================================================================
   MOTION — açılış sekansı + kaydırmaya bağlı sahne animasyonları
   ================================================================== */

/* ---- keyframes ---- */
@keyframes heroIn{from{opacity:0;transform:translateY(26px)}to{opacity:1;transform:none}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes cardIn{from{opacity:0;transform:translateY(30px) scale(.97)}to{opacity:1;transform:none}}
@keyframes orbPop{from{opacity:0;scale:.35}to{opacity:1;scale:1}}
@keyframes bob{from{translate:0 -5px}to{translate:0 5px}}
@keyframes glowPulse{from{scale:.92;opacity:.65}to{scale:1.08;opacity:1}}

@keyframes ringsOut{to{rotate:9deg;scale:1.16;opacity:.28}}
@keyframes driftL{to{translate:-74px -90px;opacity:.1}}
@keyframes driftLnear{to{translate:-30px -44px;opacity:.2}}
@keyframes driftR{to{translate:74px -90px;opacity:.1}}
@keyframes driftRnear{to{translate:30px -44px;opacity:.2}}

@keyframes riseIn{from{opacity:0;transform:translateY(44px) scale(.985);filter:blur(5px)}
                  to{opacity:1;transform:none;filter:blur(0)}}
@keyframes fromLeft{from{opacity:0;transform:translateX(-46px)}to{opacity:1;transform:none}}
@keyframes fromRight{from{opacity:0;transform:translateX(46px)}to{opacity:1;transform:none}}
@keyframes unfold{from{opacity:0;transform:perspective(1400px) rotateX(10deg) translateY(64px) scale(.95)}
                  to{opacity:1;transform:perspective(1400px) rotateX(0deg) translateY(0) scale(1)}}
@keyframes fillBar{from{width:0}to{width:50%}}

/* ---- 1. açılış sekansı (sayfa yüklenince) ---- */
@media (prefers-reduced-motion:no-preference){
  .navbar{animation:heroIn .75s cubic-bezier(.22,1,.36,1) both}
  .hero .hero-duyuru{animation:heroIn .75s cubic-bezier(.22,1,.36,1) .10s both}
  .hero h1{animation:heroIn .8s cubic-bezier(.22,1,.36,1) .18s both}
  .hero .sub{animation:heroIn .8s cubic-bezier(.22,1,.36,1) .26s both}
  .hero .cta{animation:heroIn .8s cubic-bezier(.22,1,.36,1) .34s both}
  .glow{animation:fadeIn .9s ease-out .40s both, glowPulse 7s ease-in-out 1.3s infinite alternate}
  .n1{animation:cardIn .8s cubic-bezier(.22,1,.36,1) .46s both}
  .n2{animation:cardIn .8s cubic-bezier(.22,1,.36,1) .56s both}
  .n3{animation:cardIn .8s cubic-bezier(.22,1,.36,1) .66s both}
  .trusted{animation:heroIn .8s cubic-bezier(.22,1,.36,1) .80s both}
  .logos > span{animation:heroIn .7s cubic-bezier(.22,1,.36,1) both}
  .logos > span:nth-child(1){animation-delay:.86s}
  .logos > span:nth-child(2){animation-delay:.89s}
  .logos > span:nth-child(3){animation-delay:.92s}
  .logos > span:nth-child(4){animation-delay:.95s}
  .logos > span:nth-child(5){animation-delay:.98s}
  .logos > span:nth-child(6){animation-delay:1.01s}
  .logos > span:nth-child(7){animation-delay:1.04s}
  .logos > span:nth-child(8){animation-delay:1.07s}
  .logos > span:nth-child(9){animation-delay:1.10s}
  .logos > span:nth-child(10){animation-delay:1.13s}

  .orb svg{animation:orbPop .7s cubic-bezier(.34,1.45,.64,1) both, bob 5s ease-in-out infinite alternate}
  .o1  svg{animation-delay:.44s,-0.2s}
  .o2  svg{animation-delay:.50s,-1.1s}
  .o3  svg{animation-delay:.56s,-2.0s}
  .o4  svg{animation-delay:.62s,-2.9s}
  .o5  svg{animation-delay:.68s,-3.8s}
  .o6  svg{animation-delay:.47s,-0.7s}
  .o7  svg{animation-delay:.53s,-1.6s}
  .o8  svg{animation-delay:.59s,-2.5s}
  .o9  svg{animation-delay:.65s,-3.4s}
  .o10 svg{animation-delay:.71s,-4.3s}
}

/* ---- 2. kaydırmaya bağlı sahne (scroll-driven animations) ---- */
@keyframes popIn{from{opacity:0;transform:translateY(20px) scale(.955)}to{opacity:1;transform:none}}
@keyframes heroHandoff{to{translate:0 -48px;opacity:.3}}

@supports (animation-timeline:view()){
 @media (prefers-reduced-motion:no-preference){

  /* hero, alttaki bolume yumusakca devrediyor */
  .hero{animation:heroHandoff auto linear both;animation-timeline:scroll(root);animation-range:22vh 100vh}
  .rings{animation:ringsOut auto linear both;animation-timeline:scroll(root);animation-range:0 96vh}
  .o1,.o4{animation:driftL auto linear both;animation-timeline:scroll(root);animation-range:0 96vh}
  .o2,.o3,.o5{animation:driftLnear auto linear both;animation-timeline:scroll(root);animation-range:0 96vh}
  .o7,.o9{animation:driftR auto linear both;animation-timeline:scroll(root);animation-range:0 96vh}
  .o6,.o8,.o10{animation:driftRnear auto linear both;animation-timeline:scroll(root);animation-range:0 96vh}

  /* sahneye giren her ogenin ortak zamanlamasi */
  .sec-head > *,.stats > .stat,.split2 > .col,.panel > div,
  .cards3 > .fcard,.cards3 > .card,.split-a > div:first-child,.introw,.dash,
  .foot > div,.mock > * + *,.kcard,.notif-panel > .mc{
    animation-timeline:view();
    animation-duration:auto;
    animation-fill-mode:both;
    animation-timing-function:cubic-bezier(.16,1,.3,1);
  }

  /* Araliklar vh cinsinden: eleman ekranin altindan X kadar yukari
     ciktiginda baslar, Y kadar ciktiginda biter. Eleman boyundan bagimsiz. */

  /* baslik bloklari satir satir acilir */
  .sec-head .h2{animation-name:riseIn;animation-range:cover 16vh cover 40vh}
  .sec-head .lead{animation-name:riseIn;animation-range:cover 21vh cover 45vh}
  .sec-head .btn-row,.sec-head form{animation-name:riseIn;animation-range:cover 26vh cover 50vh}

  /* istatistik izgarasi */
  .stats > .stat{animation-name:riseIn}
  .stats > .stat:nth-child(1),.stats > .stat:nth-child(3){animation-range:cover 16vh cover 40vh}
  .stats > .stat:nth-child(2),.stats > .stat:nth-child(4){animation-range:cover 21vh cover 45vh}

  /* once panel gelir, sonra icindeki kartlar dolar */
  .split2 > .col:first-child,.panel > div:first-child,.split-a > div:first-child{
    animation-name:fromLeft;animation-range:cover 12vh cover 36vh}
  .split2 > .col:last-child,.notif-panel{
    animation-name:fromRight;animation-range:cover 12vh cover 36vh}

  /* mockup icindeki mini kartlar sirayla yerlesir */
  .mock > * + *{animation-name:popIn}
  .mock > *:nth-child(2){animation-range:cover 22vh cover 46vh}
  .mock > *:nth-child(3){animation-range:cover 27vh cover 51vh}
  .mock > *:nth-child(4){animation-range:cover 32vh cover 56vh}
  .mock > *:nth-child(5){animation-range:cover 37vh cover 61vh}
  .notif-panel > .mc{animation-name:popIn}
  .notif-panel > .mc:nth-child(1){animation-range:cover 20vh cover 44vh}
  .notif-panel > .mc:nth-child(2){animation-range:cover 25vh cover 49vh}
  .notif-panel > .mc:nth-child(3){animation-range:cover 30vh cover 54vh}

  /* entegrasyon listesi */
  .introw{animation-name:fromRight}
  .introw:nth-child(1){animation-range:cover 18vh cover 42vh}
  .introw:nth-child(2){animation-range:cover 23vh cover 47vh}
  .introw:nth-child(3){animation-range:cover 28vh cover 52vh}

  /* uc kart + yukleme cubugu */
  .cards3 > .fcard,.cards3 > .card{animation-name:riseIn}
  .cards3 > :nth-child(1){animation-range:cover 16vh cover 40vh}
  .cards3 > :nth-child(2){animation-range:cover 21vh cover 45vh}
  .cards3 > :nth-child(3){animation-range:cover 26vh cover 50vh}
  .prog{animation:fillBar auto cubic-bezier(.16,1,.3,1) both;
        animation-timeline:view();animation-range:cover 38vh cover 66vh}

  /* panel acilisi + kanban kartlari */
  .dash{animation-name:unfold;animation-range:cover 12vh cover 42vh}
  .kcard{animation-name:popIn}
  .kcol .kcard:nth-child(2){animation-range:cover 28vh cover 54vh}
  .kcol .kcard:nth-child(3){animation-range:cover 33vh cover 59vh}

  /* footer: sayfa sonunda kaydirma payi az oldugu icin entry fazi kullaniliyor,
     boylece animasyon yarim kalmadan tamamlanir */
  /* footer sayfa sonunda: aralik her zaman tamamlanabilmeli,
     yoksa animasyon yarida kalir ve blur uzerinde takili kalir */
  .foot > div{animation-name:riseIn;animation-range:entry 20% entry 90%}
  .foot > div:nth-child(2){animation-range:entry 30% entry 92%}
  .foot > div:nth-child(3){animation-range:entry 38% entry 94%}
  .foot > div:nth-child(4){animation-range:entry 46% entry 96%}
  .foot > div:nth-child(5){animation-range:entry 54% entry 98%}
  .foot > div:nth-child(n+6){animation-range:entry 60% entry 100%}
 }
}

/* ---- 2b. imlec mikro etkilesimleri ---- */
.fcard,.stat,.kcard,.introw,.orb,.pill,.logos > span,.mc{
  transition:translate .3s cubic-bezier(.16,1,.3,1),scale .3s cubic-bezier(.16,1,.3,1),
             box-shadow .3s ease,color .25s ease}
.fcard:hover{translate:0 -6px;box-shadow:0 18px 42px rgba(20,20,43,.10)}
.stat:hover{translate:0 -4px}
.kcard:hover{translate:0 -3px}
.introw:hover{translate:7px 0}
.orb:hover{scale:1.12}
.pill:hover{translate:0 -2px;box-shadow:0 4px 12px rgba(17,18,20,.08)}

.notif-panel .mc:hover,.mock .mc:hover{translate:0 -2px;box-shadow:0 12px 28px rgba(20,20,43,.10)}
.btn-dark,.btn-ghost,.cta .primary,.cta .secondary,.btn-sm-dark,.btn-sm-ghost{
  transition:background .2s ease,scale .18s cubic-bezier(.16,1,.3,1),box-shadow .2s ease}
.btn-dark:active,.btn-ghost:active,.cta .primary:active,.cta .secondary:active,
.btn-sm-dark:active,.btn-sm-ghost:active{scale:.97}
.nav-links a{transition:color .18s ease}

/* ---- 3. scroll-driven desteği olmayan tarayıcılar için JS yedeği ---- */
.no-sda .reveal-target{opacity:0;transform:translateY(38px);
  transition:opacity .75s cubic-bezier(.22,1,.36,1),transform .75s cubic-bezier(.22,1,.36,1)}
.no-sda .reveal-target.in{opacity:1;transform:none}


/* ==================================================================
   İÇ SAYFA BİLEŞENLERİ
   ================================================================== */

/* ---------- iç sayfa üst bandı ---------- */
.site-head{position:relative;z-index:6;padding:26px 0 0}
.site-head--hero{padding:30px 0 0}
.nav-links a.on{color:#000;font-weight:500}

.subhero{position:relative;overflow:clip;text-align:center;padding:96px 0 74px;
  background:linear-gradient(180deg,#ffffff 0%,#f6f9fd 26%,#ffffff 88%)}
.subhero .rings{top:34%;opacity:.7}
.subhero-in{position:relative;z-index:2;width:min(780px,88%);margin:0 auto}
.eyebrow{display:inline-flex;align-items:center;gap:7px;font-size:11px;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:#3f52d9;background:#eef1ff;border:1px solid #dfe4ff;
  border-radius:999px;padding:6px 13px;margin-bottom:20px}
.subhero h1{font-family:"Poppins",sans-serif;font-weight:600;font-size:clamp(34px,3.5vw,50px);
  line-height:1.14;letter-spacing:-.028em;color:#111214;text-wrap:balance}
.subhero .lead{margin:16px auto 0;font-size:15.5px;max-width:560px}
.subhero .btn-row{justify-content:center}

/* ---------- fiyat kartları ---------- */
.plans{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:54px;align-items:start}
.plans.four{grid-template-columns:repeat(4,1fr);gap:16px}
.plan{position:relative;border:1px solid #eeeeee;border-radius:18px;padding:26px 24px;background:#fff}
.plan.hot{border-color:#111214;box-shadow:0 20px 50px rgba(17,18,20,.10)}
.plan .tag{position:absolute;top:-11px;left:24px;background:#111214;color:#fff;font-size:10px;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;padding:5px 11px;border-radius:999px}
.plan h3{font-family:"Poppins",sans-serif;font-size:17px;font-weight:600;letter-spacing:-.015em;margin-bottom:7px}
.plan .desc{font-size:12.5px;color:#7a7f85;line-height:1.6}
.price{display:flex;align-items:flex-end;gap:6px;margin:20px 0 2px}
.price b{font-family:"Poppins",sans-serif;font-size:34px;font-weight:600;letter-spacing:-.035em;line-height:1;
  font-variant-numeric:tabular-nums}
.price span{font-size:12.5px;color:#9aa0a6;padding-bottom:5px}
.price-note{font-size:11.5px;color:#a8adb3}
.price-sub{margin-top:14px;display:flex;align-items:baseline;gap:8px;flex-wrap:wrap;
  padding:11px 13px;border:1px dashed #e2e5e8;border-radius:10px;background:#fafbfc}
.price-sub b{font-size:14px;font-weight:600;color:#111214;font-variant-numeric:tabular-nums}
.price-sub span{font-size:11.5px;color:#7a7f85;line-height:1.4}
.pricing-note{width:min(720px,92%);margin:34px auto 0;text-align:center;
  font-size:13.5px;line-height:1.75;color:#7a7f85}
.pricing-note b{color:#111214;font-weight:600}
.plan ul{list-style:none;margin-top:22px;display:flex;flex-direction:column;gap:11px}
.plan li{display:flex;gap:9px;font-size:12.8px;color:#4a4d52;line-height:1.5}
.plan li svg{flex:none;margin-top:2px}
.plan .btn-sm-dark,.plan .btn-sm-ghost{display:block;width:100%;margin-top:24px;text-align:center}

/* ---------- karşılaştırma tablosu ---------- */
.table-wrap{overflow-x:auto;margin-top:46px;border:1px solid #f0f0f0;border-radius:16px;background:#fff}
.table-wrap table{border-collapse:collapse;width:100%;min-width:680px;font-size:13.2px}
.table-wrap th,.table-wrap td{padding:14px 18px;text-align:left;border-bottom:1px solid #f4f4f4}
.table-wrap thead th{font-size:12px;font-weight:600;color:#111214;background:#fafbfc;white-space:nowrap}
.table-wrap tbody th{font-weight:500;color:#3d4147}
.table-wrap tbody tr:last-child td,.table-wrap tbody tr:last-child th{border-bottom:0}
.table-wrap td{color:#5f6368;font-variant-numeric:tabular-nums}
.table-wrap td b{color:#111214;font-weight:600}
.yes{color:#17a866;font-weight:600}
.no{color:#c8ccd0}

/* ---------- özellik ızgarası ---------- */
.feat{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:54px}
.feat article{border:1px solid #f1f1f1;border-radius:16px;padding:24px;background:#fff}
.feat .ic{margin:0 0 16px}
.feat h3{font-size:15px;font-weight:600;letter-spacing:-.01em;margin-bottom:9px;color:#111214}
.feat p{font-size:12.8px;line-height:1.65;color:#7a7f85}

/* ---------- SSS: kart tasarımı + kayarak açılma ---------- */
.faq{max-width:780px;margin:46px auto 0;display:flex;flex-direction:column;gap:10px}
.faq details{border:1px solid #eeeeee;border-radius:15px;background:#fff;overflow:hidden;
  transition:border-color .3s ease,box-shadow .35s ease,background .35s ease}
.faq details:hover{border-color:#e1e4e8}
.faq details.is-open{border-color:#dfe4ff;box-shadow:0 12px 34px rgba(20,20,43,.07);
  background:linear-gradient(180deg,#fbfcff 0%,#ffffff 62%)}
.faq summary{list-style:none;cursor:pointer;position:relative;
  padding:18px 22px;font-size:15px;font-weight:500;color:#17181a;
  transition:color .2s ease}
.faq summary::-webkit-details-marker{display:none}
.faq summary:hover{color:#000}
.faq summary:focus-visible{outline:2px solid var(--blue);outline-offset:-3px;border-radius:15px}
.faq .ans{padding:0 26px 20px 22px;font-size:13.8px;line-height:1.78;color:#7a7f85}
.faq .ans a{color:#3f52d9}
.faq .ans a:hover{text-decoration:underline}
/* animasyon sırasında taşmayı gizle */
.faq details.is-animating{overflow:hidden}
@media (prefers-reduced-motion:reduce){
  .faq details{transition:none}
}

/* ---------- blog ---------- */
.fbar{display:flex;flex-wrap:wrap;gap:9px;justify-content:center;margin-top:44px}
.fchip{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:500;color:#5f6368;
  background:#fff;border:1px solid #e8e8e8;border-radius:999px;padding:9px 15px;line-height:1;
  transition:background .2s ease,border-color .2s ease,color .2s ease,translate .25s cubic-bezier(.16,1,.3,1)}
.fchip:hover{border-color:#d5d8db;color:#111214;translate:0 -2px}
.fchip i{font-style:normal;font-size:11px;font-weight:600;color:#9aa0a6;background:#f4f5f7;
  border-radius:999px;padding:2px 7px;transition:background .2s ease,color .2s ease}
.fchip.is-on{background:#111214;border-color:#111214;color:#fff}
.fchip.is-on i{background:rgba(255,255,255,.18);color:#fff}
.post.is-hidden{display:none}
.posts{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:54px}
.post{display:flex;flex-direction:column;border:1px solid #f1f1f1;border-radius:16px;overflow:clip;background:#fff}
.thumb{height:166px;position:relative;display:grid;place-items:center}
.thumb span{position:relative;z-index:2;font-family:"Poppins",sans-serif;font-weight:600;font-size:13px;
  color:#fff;background:rgba(17,18,20,.34);backdrop-filter:blur(6px);padding:6px 13px;border-radius:999px}
.post-body{padding:18px 18px 22px;display:flex;flex-direction:column;gap:9px;flex:1}
.post h3{font-size:15.5px;font-weight:600;line-height:1.42;letter-spacing:-.012em;color:#111214}
.post p{font-size:12.5px;line-height:1.6;color:#7a7f85}
.post .meta{margin-top:auto;padding-top:6px;font-size:11.5px;color:#a8adb3}

/* ---------- iletişim ---------- */
.contact{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;margin-top:52px;align-items:start}
.form-card{border:1px solid #f1f1f1;border-radius:18px;padding:28px;background:#fff}
.field{display:flex;flex-direction:column;gap:7px;margin-bottom:16px}
.field label{font-size:12.5px;font-weight:500;color:#3d4147}
.field input,.field select,.field textarea{font:inherit;font-size:13.5px;padding:11px 13px;width:100%;
  border:1px solid #e6e6e6;border-radius:9px;background:#fff;color:#17181a}
.field textarea{min-height:118px;resize:vertical}
.field input::placeholder,.field textarea::placeholder{color:#b3b6ba}
.field input:focus,.field select:focus,.field textarea:focus{outline:2px solid var(--blue);outline-offset:1px}
.row2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.info{display:flex;flex-direction:column;gap:14px}
.info-card{display:flex;gap:15px;border:1px solid #f1f1f1;border-radius:14px;padding:18px;background:#fff}
.info-card .ic{margin:0;width:42px;height:42px}
.info-card h3{font-size:13.5px;font-weight:600;margin-bottom:5px;color:#111214}
.info-card p{font-size:12.5px;line-height:1.65;color:#7a7f85}
.info-card a{color:#3f52d9}
.info-card a:hover{text-decoration:underline}

/* ---------- koyu CTA bandı ---------- */
.cta-band{position:relative;overflow:clip;width:min(1080px,88%);margin:0 auto 104px;
  background:#0e0f11;color:#fff;border-radius:22px;padding:58px 40px;text-align:center}
.cta-band > *{position:relative;z-index:4}
.cta-glow{position:absolute;inset:auto -12% -70% -12%;height:150%;filter:blur(62px);opacity:.5;z-index:2;
  background:radial-gradient(38% 60% at 28% 52%,rgba(70,120,255,.75),transparent 70%),
             radial-gradient(38% 60% at 68% 58%,rgba(155,95,255,.6),transparent 70%)}
.cta-band h2{font-family:"Poppins",sans-serif;font-size:clamp(26px,2.7vw,36px);font-weight:600;
  letter-spacing:-.026em;line-height:1.18;text-wrap:balance}
.cta-band p{margin:14px auto 0;max-width:480px;font-size:14.5px;line-height:1.65;color:#a9adb3}
.cta-band .btn-row{justify-content:center;margin-top:28px}
.cta-band .btn-sm-dark{background:#fff;color:#111214}
.cta-band .btn-sm-dark:hover{background:#e9e9e9}
.cta-band .btn-sm-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.26)}
.cta-band .btn-sm-ghost:hover{background:rgba(255,255,255,.08)}

/* ---------- iç sayfa hareketleri ---------- */
@media (prefers-reduced-motion:no-preference){
  .subhero .eyebrow{animation:heroIn .7s cubic-bezier(.22,1,.36,1) .06s both}
  .subhero h1{animation:heroIn .75s cubic-bezier(.22,1,.36,1) .14s both}
  .subhero .lead{animation:heroIn .75s cubic-bezier(.22,1,.36,1) .22s both}
  .subhero .btn-row{animation:heroIn .75s cubic-bezier(.22,1,.36,1) .30s both}
}
@supports (animation-timeline:view()){
 @media (prefers-reduced-motion:no-preference){
  .plans > .plan,.feat > article,.posts > .post,.faq details,.table-wrap,.cta-band,.contact > *{
    animation-timeline:view();animation-duration:auto;animation-fill-mode:both;
    animation-timing-function:cubic-bezier(.16,1,.3,1);animation-name:riseIn}
  .plans > .plan:nth-child(1),.feat > article:nth-child(1),.posts > .post:nth-child(1){animation-range:cover 16vh cover 40vh}
  .plans > .plan:nth-child(2),.feat > article:nth-child(2),.posts > .post:nth-child(2){animation-range:cover 21vh cover 45vh}
  .plans > .plan:nth-child(3),.feat > article:nth-child(3),.posts > .post:nth-child(3){animation-range:cover 26vh cover 50vh}
  .plans > .plan:nth-child(4),.feat > article:nth-child(4),.posts > .post:nth-child(4){animation-range:cover 16vh cover 40vh}
  .feat > article:nth-child(5),.posts > .post:nth-child(5){animation-range:cover 21vh cover 45vh}
  .feat > article:nth-child(6),.posts > .post:nth-child(6){animation-range:cover 26vh cover 50vh}
  .table-wrap,.cta-band{animation-range:cover 14vh cover 40vh}
  .contact > *:first-child{animation-name:fromLeft;animation-range:cover 12vh cover 36vh}
  .contact > *:last-child{animation-name:fromRight;animation-range:cover 12vh cover 36vh}
  .faq details:nth-child(1){animation-range:cover 14vh cover 36vh}
  .faq details:nth-child(2){animation-range:cover 17vh cover 39vh}
  .faq details:nth-child(3){animation-range:cover 20vh cover 42vh}
  .faq details:nth-child(4){animation-range:cover 23vh cover 45vh}
  .faq details:nth-child(5){animation-range:cover 26vh cover 48vh}
 }
}
.plan,.feat article,.post,.info-card{transition:translate .3s cubic-bezier(.16,1,.3,1),box-shadow .3s ease}
.plan:hover,.feat article:hover,.post:hover{translate:0 -5px;box-shadow:0 18px 40px rgba(20,20,43,.09)}

/* ---------- iç sayfa responsive ---------- */
@media (max-width:1000px){
  .plans,.plans.four,.feat,.posts{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr;gap:34px}
  .subhero{padding:64px 0 52px}
  .cta-band{padding:42px 24px;margin-bottom:72px}
  .row2{grid-template-columns:1fr}
}


/* ---------- yazı sayfası ---------- */
.article-head{padding:56px 0 0;text-align:center}
.article-in{width:min(760px,88%);margin:0 auto}
.back{display:inline-flex;align-items:center;gap:7px;font-size:13px;color:#7a7f85;margin-bottom:22px}
.back:hover{color:#111214}
.cat-chip{display:inline-block;font-size:11px;font-weight:600;letter-spacing:.09em;text-transform:uppercase;
  color:#3f52d9;background:#eef1ff;border:1px solid #dfe4ff;border-radius:999px;padding:6px 13px;margin-bottom:18px}
.article-head h1{font-family:"Poppins",sans-serif;font-weight:600;font-size:clamp(30px,3.2vw,44px);
  line-height:1.16;letter-spacing:-.028em;color:#111214;text-wrap:balance}
.article-meta{margin-top:18px;font-size:13px;color:#9aa0a6;display:flex;gap:9px;justify-content:center;flex-wrap:wrap}
.article-meta i{font-style:normal;color:#d5d8db}
.cover{width:min(980px,92%);height:clamp(190px,30vw,360px);margin:40px auto 0;border-radius:20px}
.prose{width:min(680px,88%);margin:0 auto;padding:50px 0 16px}
.prose > * + *{margin-top:20px}
.prose p{font-size:16px;line-height:1.78;color:#3d4147}
.prose h2{font-family:"Poppins",sans-serif;font-size:23px;font-weight:600;letter-spacing:-.022em;
  color:#111214;margin-top:46px}
.prose h3{font-size:17px;font-weight:600;color:#111214;margin-top:32px;letter-spacing:-.01em}
.prose ul,.prose ol{padding-left:22px;display:flex;flex-direction:column;gap:11px}
.prose li{font-size:15.5px;line-height:1.72;color:#3d4147}
.prose li::marker{color:#a8adb3}
.prose li b{color:#111214}
.prose code{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:13px;
  background:#f4f5f7;border:1px solid #ebedf0;border-radius:5px;padding:2px 6px;color:#3d4147}
.prose .callout{border:1px solid #e4eaff;background:#f6f8ff;border-radius:14px;padding:20px 22px;
  font-size:14.5px;line-height:1.72;color:#3d4147;margin-top:34px}
.prose .callout b{color:#111214}
.article-foot{width:min(680px,88%);margin:36px auto 0;padding-top:26px;border-top:1px solid #f0f0f0;
  display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.article-foot .face{width:42px;height:42px}
.article-foot h3{font-size:13.5px;font-weight:600;color:#111214}
.article-foot p{font-size:12.5px;color:#9aa0a6;margin-top:3px}
.article-foot .btn-sm-ghost{margin-left:auto}
.related{width:min(1080px,88%);margin:0 auto;padding:90px 0 0}
.related h2{font-family:"Poppins",sans-serif;font-size:24px;font-weight:600;letter-spacing:-.022em;
  color:#111214;margin-bottom:8px}
.related .posts{margin-top:26px}
a.post{color:inherit}
@supports (animation-timeline:view()){
 @media (prefers-reduced-motion:no-preference){
  .cover{animation:riseIn auto cubic-bezier(.16,1,.3,1) both;animation-timeline:view();animation-range:cover 10vh cover 34vh}
 }
}
@media (max-width:1000px){
  .article-head{padding:34px 0 0}
  .prose{padding:36px 0 12px}
  .related{padding-top:62px}
}


/* ---------- alçak ekranlarda hero'yu sıkıştır ---------- */
@media (min-width:941px) and (max-height:880px){
  h1{font-size:clamp(38px,3.4vw,50px)}
  .hero{padding:24px 0 14px}
  .hero .hero-duyuru{margin-bottom:18px}
  .sub{margin-top:14px;font-size:15.5px}
  .cta{margin-top:24px}
  .cta .primary,.cta .secondary{padding:12px 22px}
  .stack{margin-top:32px}
  .trusted{font-size:14px}
  .logos{margin-top:22px}
  .logos > span{font-size:19px}
}
@media (min-width:941px) and (max-height:740px){
  .shell{min-height:0;padding-bottom:44px}
  .hero{padding:34px 0 18px}
}


/* ---------- içindekiler ---------- */
.article-body{width:min(1080px,88%);margin:0 auto;display:grid;grid-template-columns:1fr;
  justify-content:center;padding-top:44px}
.article-body .prose{width:100%;max-width:680px;margin:0 auto;padding:0 0 16px}
.toc{border:1px solid #eeeeee;border-radius:14px;padding:20px 22px;background:#fafbfc;
  max-width:680px;margin:0 auto 34px;width:100%}
.toc-t{font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:#9aa0a6;margin-bottom:14px}
.toc ol{list-style:none;counter-reset:toc;display:flex;flex-direction:column;gap:9px}
.toc li{counter-increment:toc;display:flex;gap:10px;align-items:baseline}
.toc li::before{content:counter(toc,decimal-leading-zero);font-size:11px;font-weight:600;color:#c2c6ca;
  font-variant-numeric:tabular-nums;flex:none}
.toc a{font-size:13.5px;line-height:1.5;color:#4a4d52;border-bottom:1px solid transparent}
.toc a:hover{color:#111214;border-bottom-color:#d8dade}
.toc a.on{color:#3f52d9;font-weight:500}
.prose h2{scroll-margin-top:96px}

@media (min-width:1200px){
  .article-body{grid-template-columns:240px minmax(0,680px);gap:72px;align-items:start}
  .toc{position:sticky;top:96px;margin:0;background:transparent;border:0;border-left:1px solid #eeeeee;
    border-radius:0;padding:2px 0 2px 22px;max-height:calc(100vh - 80px);overflow-y:auto}
  .article-body .prose{margin:0}
}

/* ---------- paylaşım + yazı gezinmesi ---------- */
.share{width:min(680px,88%);margin:22px auto 0;display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.share-t{font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:#9aa0a6;margin-right:2px}
.share a{font-size:12.5px;font-weight:500;color:#4a4d52;border:1px solid #e8e8e8;border-radius:8px;
  padding:7px 13px;transition:background .2s ease,translate .2s ease}
.share a:hover{background:#fafafa;translate:0 -2px;color:#111214}
.postnav{width:min(680px,88%);margin:44px auto 0;display:grid;grid-template-columns:1fr 1fr;gap:16px}
.pn{border:1px solid #f0f0f0;border-radius:14px;padding:18px;display:flex;flex-direction:column;gap:7px;
  transition:translate .25s cubic-bezier(.16,1,.3,1),box-shadow .25s ease}
.pn:hover{translate:0 -4px;box-shadow:0 14px 32px rgba(20,20,43,.08)}
.pn span{font-size:11.5px;color:#9aa0a6}
.pn b{font-size:14px;font-weight:600;line-height:1.42;color:#111214}
.pn.next{text-align:right}
@media (max-width:700px){.postnav{grid-template-columns:1fr}.pn.next{text-align:left}}


/* ==================================================================
   EK SAYFA BİLEŞENLERİ
   ================================================================== */

.foot-legal{display:flex;gap:18px;flex-wrap:wrap}
.foot-legal a:hover{color:#111214;text-decoration:underline}

/* ---------- sürüm notları ---------- */
.rel-list{display:flex;flex-direction:column}
.rel{padding:36px 0;border-bottom:1px solid #f0f0f0;scroll-margin-top:96px}
.rel:first-child{padding-top:0}
.rel:last-child{border-bottom:0}
.rel-head{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:10px}
.rel-ver{font-family:"Poppins",sans-serif;font-size:23px;font-weight:600;letter-spacing:-.024em;color:#111214}
.rel-date{font-size:12.5px;color:#9aa0a6}
.rel-tag{font-size:9.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  padding:4px 9px;border-radius:999px;line-height:1}
.t-new{background:#e9f8f0;color:#0f8b55}
.t-imp{background:#eef1ff;color:#3f52d9}
.t-fix{background:#fff5ea;color:#c2790c}
.t-sec{background:#fdeceb;color:#cf3a2f}
.t-big{background:#111214;color:#fff}
.rel-sum{font-size:14px;line-height:1.72;color:#5f6368}
.rel-group{margin-top:20px}
.rel-group h3{font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:#9aa0a6;margin-bottom:10px}
.rel-group ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.rel-group li{display:flex;gap:11px;font-size:13.8px;line-height:1.65;color:#3d4147}
.rel-group li::before{content:"";width:5px;height:5px;border-radius:50%;background:#d5d8db;
  margin-top:8px;flex:none}
.rel-more{display:inline-block;margin-top:16px;font-size:13px;color:#3f52d9}
.rel-more:hover{text-decoration:underline}

/* ---------- referanslar ---------- */
.refgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:48px}
.refgrid div{border:1px solid #f1f1f1;border-radius:12px;padding:20px 16px;text-align:center;
  font-family:"Poppins",sans-serif;font-weight:600;font-size:13.5px;color:#8a8d91;
  transition:color .25s ease,translate .25s ease}
.refgrid div:hover{color:#111214;translate:0 -3px}
.refgrid small{display:block;font-family:"Inter",sans-serif;font-weight:400;font-size:11px;
  color:#b3b6ba;margin-top:5px}
.quotes{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:52px}
.quote{border:1px solid #f1f1f1;border-radius:16px;padding:26px;display:flex;flex-direction:column;gap:18px;
  transition:translate .28s cubic-bezier(.16,1,.3,1),box-shadow .28s ease}
.quote:hover{translate:0 -5px;box-shadow:0 18px 40px rgba(20,20,43,.08)}
.quote .mark{font-family:"Poppins",sans-serif;font-size:32px;line-height:.7;color:#dfe3f5}
.quote p{font-size:14px;line-height:1.75;color:#3d4147}
.quote .who{display:flex;align-items:center;gap:12px;margin-top:auto}
.quote .who b{display:block;font-size:13px;font-weight:600;color:#111214}
.quote .who span{font-size:11.5px;color:#9aa0a6}

/* ---------- adım kartları ---------- */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:52px;counter-reset:st}
.steps.three{grid-template-columns:repeat(3,1fr)}
.step{counter-increment:st;border:1px solid #f1f1f1;border-radius:16px;padding:24px;background:#fff;
  transition:translate .28s cubic-bezier(.16,1,.3,1),box-shadow .28s ease}
.step:hover{translate:0 -5px;box-shadow:0 16px 36px rgba(20,20,43,.08)}
.step::before{content:counter(st,decimal-leading-zero);font-family:"Poppins",sans-serif;font-size:11px;
  font-weight:700;letter-spacing:.08em;color:#3f52d9;background:#eef1ff;border:1px solid #dfe4ff;
  border-radius:999px;padding:5px 11px;display:inline-block;margin-bottom:16px}
.step h3{font-size:15px;font-weight:600;letter-spacing:-.01em;color:#111214;margin-bottom:9px}
.step p{font-size:12.8px;line-height:1.68;color:#7a7f85}

/* ---------- yardım merkezi ---------- */
.hc-search{display:flex;align-items:center;gap:11px;width:min(520px,90%);margin:28px auto 0;
  border:1px solid #e6e6e6;border-radius:12px;padding:13px 16px;background:#fff;
  color:#a8adb3;font-size:14px;box-shadow:0 2px 8px rgba(17,18,20,.04)}
.hc-list{max-width:760px;margin:44px auto 0;border-top:1px solid #f0f0f0}
.hc-list a{display:flex;align-items:center;gap:14px;padding:16px 6px;border-bottom:1px solid #f0f0f0;
  font-size:14.5px;color:#3d4147;transition:padding-left .25s ease,color .25s ease}
.hc-list a:hover{padding-left:12px;color:#111214}
.hc-list .tag{margin-left:auto;font-size:10.5px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  color:#9aa0a6;background:#f4f5f7;border-radius:999px;padding:4px 10px;flex:none}

/* ---------- uyarı bandı ---------- */
.notice{width:min(680px,88%);margin:0 auto 30px;border:1px solid #ffe4bd;background:#fffaf1;
  border-radius:14px;padding:16px 20px;font-size:13px;line-height:1.72;color:#8a6520}
.notice b{color:#5f4310}

/* ---------- 404 ---------- */
.nf{min-height:56vh;display:grid;place-items:center;text-align:center;padding:90px 20px 110px}
.nf-code{font-family:"Poppins",sans-serif;font-size:clamp(80px,13vw,150px);font-weight:600;
  letter-spacing:-.055em;line-height:1;background:linear-gradient(135deg,#3f52d9,#a855f7 60%,#f0447c);
  -webkit-background-clip:text;background-clip:text;color:transparent}
.nf h1{font-family:"Poppins",sans-serif;font-size:clamp(24px,2.6vw,34px);font-weight:600;
  letter-spacing:-.024em;margin-top:14px;color:#111214}
.nf p{margin-top:14px;font-size:15px;line-height:1.7;color:#7a7f85;max-width:440px}
.nf .btn-row{justify-content:center;margin-top:28px}

/* ---------- ek responsive ---------- */
@media (max-width:1000px){
  .refgrid{grid-template-columns:repeat(2,1fr)}
  .quotes,.steps,.steps.three{grid-template-columns:1fr}
}

/* ---------- yeni bileşenlerin sahne animasyonu ---------- */
@supports (animation-timeline:view()){
 @media (prefers-reduced-motion:no-preference){
  .steps > .step,.quotes > .quote,.refgrid > div,.rel{
    animation-timeline:view();animation-duration:auto;animation-fill-mode:both;
    animation-timing-function:cubic-bezier(.16,1,.3,1);animation-name:riseIn}
  .steps > .step:nth-child(1),.quotes > .quote:nth-child(1){animation-range:cover 16vh cover 40vh}
  .steps > .step:nth-child(2),.quotes > .quote:nth-child(2){animation-range:cover 20vh cover 44vh}
  .steps > .step:nth-child(3),.quotes > .quote:nth-child(3){animation-range:cover 24vh cover 48vh}
  .steps > .step:nth-child(4){animation-range:cover 28vh cover 52vh}
  .refgrid > div,.rel{animation-range:cover 14vh cover 38vh}

  /* ağ durumu sayfası: bloklar sahneye girsin
     (.svc, .ddos, .table-wrap ve .inc listeye hiç eklenmemişti) */
  .ddos > *,.svc-row,.table-wrap,.inc > article{
    animation-timeline:view();animation-duration:auto;animation-fill-mode:both;
    animation-timing-function:cubic-bezier(.16,1,.3,1);animation-name:riseIn}
  .ddos > *:nth-child(1){animation-range:cover 14vh cover 38vh}
  .ddos > *:nth-child(2){animation-range:cover 18vh cover 42vh}
  .table-wrap{animation-range:cover 14vh cover 38vh}
  /* satırlar kısa olduğu için aralık dar tutuldu, aksi hâlde
     liste boyunca bulanık kalıyorlar */
  .svc-row,.inc > article{animation-range:cover 8vh cover 26vh}
 }
}


/* ---------- navbar mega menüsü ---------- */
.has-menu{position:static;display:flex}
.mega{position:absolute;top:calc(100% + 15px);left:50%;width:min(760px,94vw);
  transform:translateX(-50%) translateY(-8px);
  background:#fff;border:1px solid #f0f0f0;border-radius:20px;overflow:clip;
  box-shadow:0 1px 2px rgba(17,18,20,.05), 0 26px 60px rgba(17,18,20,.16);
  opacity:0;visibility:hidden;
  transition:opacity .24s ease,transform .3s cubic-bezier(.16,1,.3,1),visibility .24s;z-index:40}
/* buton ile panel arasındaki boşlukta fare kaybolmasın */
.mega::before{content:"";position:absolute;top:-30px;left:-24px;right:-24px;height:30px}
.has-menu:hover .mega,.has-menu:focus-within .mega,.has-menu.menu-open .mega{
  opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}

.mega-in{display:grid;grid-template-columns:298px 1fr}
.mega-tabs{padding:12px;border-right:1px solid #f2f2f2;background:#fcfcfd;display:flex;flex-direction:column;gap:2px}
.mt{display:flex;align-items:center;gap:12px;padding:11px 12px;border-radius:12px;
  transition:background .18s ease}
.mt:hover{background:#f2f4f7}
.mt.is-on{background:#fff;box-shadow:0 1px 2px rgba(17,18,20,.05),0 6px 16px rgba(17,18,20,.07)}
.mt-ic{width:38px;height:38px;border-radius:11px;display:grid;place-items:center;flex:none}
.mt-ic svg{width:20px;height:20px;display:block}
.mt-tx{min-width:0}
.mt-tx b{display:block;font-size:13.5px;font-weight:600;color:#111214;letter-spacing:-.01em}
.mt-tx i{display:block;font-style:normal;font-size:11.5px;color:#8b9096;margin-top:2px}

/* Paneller display:none ile değişince her sekmenin içerik boyu farklı olduğu
   için "Ayrıntılar" butonu 21px zıplıyordu. Artık hepsi aynı ızgara
   hücresinde üst üste duruyor: hücre en uzun panelin boyunu alıyor,
   alt şerit margin-top:auto ile tabana sabitleniyor. Böylece sekme
   değişse de menü boyu ve buton konumu kımıldamıyor. */
.mega-panes{position:relative;padding:24px 26px;display:grid}
.mp{grid-area:1 / 1;display:flex;flex-direction:column;
  visibility:hidden;opacity:0;pointer-events:none}
.mp.is-on{visibility:visible;opacity:1;pointer-events:auto;
  animation:mpIn .3s cubic-bezier(.16,1,.3,1) both}
@keyframes mpIn{from{opacity:0;transform:translateX(8px)}to{opacity:1;transform:none}}
.mp h4{font-family:"Poppins",sans-serif;font-size:16.5px;font-weight:600;letter-spacing:-.015em;color:#111214}
.mp p{margin-top:9px;font-size:12.8px;line-height:1.65;color:#7a7f85}
.mp ul{list-style:none;display:flex;flex-wrap:wrap;gap:7px;margin-top:16px}
.mp li{font-size:11px;font-weight:500;color:#5f6875;background:#f4f5f7;border:1px solid #eceef1;
  border-radius:8px;padding:5px 10px}
.mp-foot{display:flex;align-items:center;gap:14px;margin-top:auto;padding-top:16px;
  border-top:1px solid #f3f3f3}
/* Not: buraya "margin-top:20px" gibi bir kural eklemeyin — özgüllüğü
   yüksek olduğu için yukarıdaki margin-top:auto'yu ezer ve buton yeniden
   zıplamaya başlar. Alt şeridin başlığa yapışmaması zaten padding-top ile
   sağlanıyor. */
.mp-price.txt b{font-family:"Inter",sans-serif;font-size:14.5px;letter-spacing:0}
.mp-price b{font-family:"Poppins",sans-serif;font-size:19px;font-weight:600;color:#111214;letter-spacing:-.02em}
.mp-price i{font-style:normal;font-size:11.5px;color:#9aa0a6;margin-left:5px}
.mp-go{margin-left:auto;font-size:12.5px;font-weight:600;color:#fff;background:#111214;
  border-radius:9px;padding:9px 15px;transition:background .2s ease}
.mp-go:hover{background:#26282c}

/* blog menüsü: 4x2 kategori ızgarası */
.mega-grid{width:min(640px,94vw)}
.mgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:6px;padding:14px}
.mgrid a{display:flex;flex-direction:column;align-items:center;gap:7px;text-align:center;
  padding:14px 8px 12px;border-radius:13px;transition:background .18s ease,translate .25s cubic-bezier(.16,1,.3,1)}
.mgrid a:hover{background:#f4f5f7;translate:0 -2px}
.mg-ic{width:38px;height:38px;border-radius:11px;display:grid;place-items:center}
.mg-ic svg{width:19px;height:19px;display:block}
.mgrid b{font-size:12.5px;font-weight:600;color:#111214;letter-spacing:-.01em;line-height:1.25}
.mgrid i{font-style:normal;font-size:10.5px;color:#9aa0a6}

.mega-bar{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  border-top:1px solid #f2f2f2;background:#fafbfc}
.mega-bar a{display:flex;align-items:center;justify-content:center;gap:7px;
  padding:15px 16px;border-right:1px solid #f2f2f2;min-width:0;
  font-size:12.8px;font-weight:500;color:#4a4d52;text-align:center;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  transition:background .18s ease,color .18s ease}
.mega-bar a:last-child{border-right:0}
.mega-bar a:hover{background:#f2f4f7;color:#111214}

@media (prefers-reduced-motion:reduce){.mega,.mp.is-on{transition:none;animation:none}}

/* ---------- footer 5 kolon ---------- */
.foot{grid-template-columns:1.5fr repeat(4,1fr);gap:32px}
@media (max-width:1000px){.foot{grid-template-columns:1fr 1fr;gap:30px}}

/* ---------- hosting ürün ailesi kartları ---------- */
.famgrid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:52px}
.fam{display:flex;gap:18px;border:1px solid #f1f1f1;border-radius:18px;padding:26px;background:#fff;
  transition:translate .28s cubic-bezier(.16,1,.3,1),box-shadow .28s ease}
.fam:hover{translate:0 -5px;box-shadow:0 18px 42px rgba(20,20,43,.09)}
.fam .ic{margin:0;flex:none}
.fam h3{font-size:16px;font-weight:600;letter-spacing:-.012em;color:#111214;margin-bottom:8px}
.fam p{font-size:13px;line-height:1.68;color:#7a7f85}
.fam ul{list-style:none;display:flex;flex-wrap:wrap;gap:6px;margin-top:13px}
.fam li{font-size:10.5px;font-weight:500;color:#5f6875;background:#f4f5f7;border-radius:6px;padding:4px 9px}
.fam .go{display:inline-block;margin-top:14px;font-size:12.5px;font-weight:500;color:#3f52d9}
.fam:hover .go{text-decoration:underline}
@media (max-width:1000px){.famgrid{grid-template-columns:1fr}}
@supports (animation-timeline:view()){
 @media (prefers-reduced-motion:no-preference){
  .famgrid > .fam{animation-timeline:view();animation-duration:auto;animation-fill-mode:both;
    animation-timing-function:cubic-bezier(.16,1,.3,1);animation-name:riseIn}
  .famgrid > .fam:nth-child(1),.famgrid > .fam:nth-child(2){animation-range:cover 16vh cover 40vh}
  .famgrid > .fam:nth-child(3),.famgrid > .fam:nth-child(4){animation-range:cover 21vh cover 45vh}
 }
}


/* ==================================================================
   GÖRSEL KATMAN — ürün vitrinleri, kapak illüstrasyonları, ikon tonları
   ================================================================== */

/* ---------- ikon dairelerine renk tonu (HTML değişmeden) ---------- */
.ic:has(svg[stroke="#3f6bf5"]){background:#f1f5ff;border-color:#e2eaff}
.ic:has(svg[stroke="#17a866"]){background:#eefaf3;border-color:#d8f0e4}
.ic:has(svg[stroke="#7c5cf5"]){background:#f4f1ff;border-color:#e6e0ff}
.ic:has(svg[stroke="#f0447c"]){background:#fff1f5;border-color:#ffdde7}
.ic:has(svg[stroke="#f26a3d"]){background:#fff4ee;border-color:#ffe3d4}
.ic:has(svg[stroke="#e8232a"]){background:#fff1f0;border-color:#ffdedc}
.ic:has(svg[stroke="#6c5bf2"]){background:#f4f1ff;border-color:#e6e0ff}

/* ---------- ürün vitrini ---------- */
.showcase{position:relative;z-index:3;width:min(880px,90%);margin:-30px auto 0;padding-bottom:10px}
.sc-glow{position:absolute;left:50%;top:18%;transform:translateX(-50%);width:78%;height:70%;
  filter:blur(60px);opacity:.7;z-index:0;pointer-events:none;
  background:radial-gradient(45% 60% at 22% 45%,rgba(63,140,255,.55),transparent 70%),
             radial-gradient(45% 62% at 55% 85%,rgba(150,110,255,.5),transparent 70%),
             radial-gradient(40% 55% at 82% 55%,rgba(255,120,190,.42),transparent 70%)}
.sc-card{position:relative;z-index:1;background:#fff;border:1px solid #f0f0f0;border-radius:20px;
  padding:20px;box-shadow:0 1px 2px rgba(20,20,43,.05), 0 26px 66px rgba(20,20,43,.13)}
.sc-top{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:16px}
.sc-live{display:inline-flex;align-items:center;gap:7px;font-size:10.5px;font-weight:700;letter-spacing:.09em;
  color:#e8232a;background:#fff1f0;border:1px solid #ffdedc;border-radius:999px;padding:5px 11px}
.sc-live i{width:7px;height:7px;border-radius:50%;background:#e8232a;animation:pulseDot 1.6s ease-in-out infinite}
@keyframes pulseDot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.35;transform:scale(.7)}}
.sc-meta{font-size:11.5px;color:#9aa0a6}
.sc-chip{font-size:10.5px;font-weight:600;color:#5f6875;background:#f4f5f7;border-radius:999px;padding:5px 10px}
.sc-count{margin-left:auto;font-size:11.5px;font-weight:600;color:#17181a;font-variant-numeric:tabular-nums}
.sc-rows{display:flex;flex-direction:column;gap:9px;margin-top:16px}
.sc-row{display:flex;align-items:center;gap:9px;font-size:12.5px;color:#5f6368;
  border:1px solid #f2f2f2;border-radius:10px;padding:10px 12px;background:#fcfcfd}
.sc-row b{color:#17181a;font-weight:600}
.sc-row .dot{width:7px;height:7px;border-radius:50%;flex:none}
.dot.g{background:#22a865}.dot.b{background:#2f7cf6}.dot.o{background:#f26a3d}.dot.p{background:#7c5cf5}
.sc-right{margin-left:auto;font-size:11px;color:#9aa0a6;font-variant-numeric:tabular-nums}

/* radyo */
.sc-player{display:flex;align-items:center;gap:16px}
.sc-art{width:76px;height:76px;border-radius:14px;flex:none;position:relative;overflow:clip;
  background:linear-gradient(140deg,#3f52d9,#a855f7 55%,#f0447c)}
.sc-art::after{content:"";position:absolute;inset:26px;border-radius:50%;border:5px solid rgba(255,255,255,.55)}
.sc-info{min-width:0;flex:1}
.sc-info b{display:block;font-size:14.5px;font-weight:600;color:#111214;letter-spacing:-.012em}
.sc-info span{display:block;font-size:11.5px;color:#9aa0a6;margin-top:3px}
.eq{display:flex;align-items:flex-end;gap:3px;height:24px;margin-top:11px}
.eq i{width:3px;border-radius:2px;background:linear-gradient(180deg,#3f52d9,#a855f7);height:38%;
  animation:eqb 1s ease-in-out infinite alternate}
@keyframes eqb{from{height:16%}to{height:100%}}
.eq i:nth-child(3n){animation-duration:.72s}
.eq i:nth-child(3n+1){animation-duration:1.24s}
.eq i:nth-child(2){animation-delay:-.2s}.eq i:nth-child(3){animation-delay:-.5s}
.eq i:nth-child(4){animation-delay:-.8s}.eq i:nth-child(5){animation-delay:-.35s}
.eq i:nth-child(6){animation-delay:-.95s}.eq i:nth-child(7){animation-delay:-.15s}
.eq i:nth-child(8){animation-delay:-.62s}.eq i:nth-child(9){animation-delay:-1.1s}
.eq i:nth-child(10){animation-delay:-.42s}.eq i:nth-child(11){animation-delay:-.88s}
.eq i:nth-child(12){animation-delay:-.28s}.eq i:nth-child(13){animation-delay:-.7s}
.eq i:nth-child(14){animation-delay:-1s}
.sc-play{width:44px;height:44px;border-radius:50%;flex:none;background:#111214;display:grid;place-items:center}
.sc-play::before{content:"";width:0;height:0;margin-left:3px;
  border-left:12px solid #fff;border-top:8px solid transparent;border-bottom:8px solid transparent}

/* web tv */
.sc-video{position:relative;border-radius:14px;overflow:clip;aspect-ratio:16/7;
  background:linear-gradient(140deg,#1b2352,#4b2d8f 50%,#8f2f6b);display:grid;place-items:center}
.sc-video .sc-play{background:rgba(255,255,255,.92);box-shadow:0 8px 24px rgba(0,0,0,.28)}
.sc-video .sc-play::before{border-left-color:#111214}
.sc-scan{position:absolute;inset:0;opacity:.22;
  background:repeating-linear-gradient(180deg,rgba(255,255,255,.9) 0 1px,transparent 1px 7px)}
.sc-bar{margin-top:12px;height:5px;border-radius:3px;background:#eef0f3;overflow:clip;display:flex}
.sc-bar i{display:block;height:5px}
.sc-bar .played{width:38%;background:#e8232a}
.sc-bar .buff{width:22%;background:#d8dbe0}

/* oyun */
.sc-stats{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.sc-stat{border:1px solid #f2f2f2;border-radius:12px;padding:13px;background:#fcfcfd}
.sc-stat span{display:block;font-size:11px;color:#9aa0a6}
.sc-stat b{display:block;font-size:17px;font-weight:600;color:#111214;margin-top:4px;
  font-variant-numeric:tabular-nums;letter-spacing:-.02em}
.sc-meter{height:5px;border-radius:3px;background:#eef0f3;margin-top:10px;overflow:clip}
.sc-meter i{display:block;height:5px;border-radius:3px;background:linear-gradient(90deg,#3f52d9,#7c5cf5)}
.sc-games{display:flex;gap:7px;flex-wrap:wrap;margin-top:16px}
.sc-games span{font-size:11px;font-weight:500;color:#5f6875;background:#f4f5f7;border:1px solid #eceef1;
  border-radius:8px;padding:6px 11px}

/* web hosting tarayıcı */
.sc-browser{border:1px solid #eef0f2;border-radius:14px;overflow:clip}
.sc-chrome{display:flex;align-items:center;gap:8px;padding:11px 13px;background:#f7f8fa;border-bottom:1px solid #eef0f2}
.sc-chrome .b{width:9px;height:9px;border-radius:50%;background:#dfe2e6;flex:none}
.sc-url{flex:1;height:24px;border-radius:7px;background:#fff;border:1px solid #eceef1;
  display:flex;align-items:center;padding:0 11px;font-size:11px;color:#9aa0a6}
.sc-page{padding:18px;display:flex;flex-direction:column;gap:11px;background:#fff}
.sc-sk{height:11px;border-radius:5px;background:linear-gradient(90deg,#f1f2f4,#f7f8f9)}
.sc-sk.w70{width:70%}.sc-sk.w45{width:45%}.sc-sk.w88{width:88%}
.sc-hero{height:74px;border-radius:11px;background:linear-gradient(120deg,#eaf0ff,#f6ecff 60%,#ffeef5)}
.sc-badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.sc-badge{display:flex;align-items:center;gap:8px;border:1px solid #f0f0f0;border-radius:11px;
  padding:9px 13px;background:#fff;font-size:12px;color:#5f6368;box-shadow:0 4px 14px rgba(20,20,43,.05)}
.sc-badge b{font-size:13.5px;font-weight:600;color:#111214;font-variant-numeric:tabular-nums}

/* haber yazılımı editör */
.sc-editor{display:grid;grid-template-columns:132px 1fr;gap:14px}
.sc-side{border:1px solid #f2f2f2;border-radius:12px;padding:12px;background:#fcfcfd;
  display:flex;flex-direction:column;gap:7px}
.sc-side span{display:flex;align-items:center;gap:8px;font-size:11.5px;color:#7a7f85;padding:6px 7px;border-radius:7px}
.sc-side span.on{background:#f1f3f6;color:#17181a;font-weight:500}
.sc-side i{width:12px;height:12px;border-radius:4px;background:#dfe3e9;flex:none}
.sc-headlines{display:flex;flex-direction:column;gap:9px}
.sc-hl{display:flex;align-items:center;gap:11px;border:1px solid #f1f1f1;border-radius:11px;
  padding:11px 13px;background:#fff}
.sc-hl.first{border-color:#dfe4ff;box-shadow:0 6px 18px rgba(63,82,217,.12)}
.sc-grip{display:flex;flex-direction:column;gap:2.5px;flex:none}
.sc-grip i{width:11px;height:2px;border-radius:2px;background:#d5d8db}
.sc-hl b{font-size:12.5px;font-weight:600;color:#17181a;line-height:1.35}
.sc-hl .n{font-size:10.5px;font-weight:700;color:#8b9096;font-variant-numeric:tabular-nums;flex:none}

@media (max-width:700px){
  .showcase{width:94%;margin-top:-14px}
  .sc-card{padding:15px;border-radius:16px}
  .sc-editor{grid-template-columns:1fr}
  .sc-side{flex-direction:row;overflow-x:auto}
  .sc-stats{grid-template-columns:1fr}
  .sc-player{gap:12px}
  .sc-art{width:58px;height:58px}
  .sc-art::after{inset:18px;border-width:4px}
}
@media (prefers-reduced-motion:reduce){
  .eq i{animation:none;height:60%}
  .sc-live i{animation:none}
}
@supports (animation-timeline:view()){
 @media (prefers-reduced-motion:no-preference){
  .sc-card{animation:riseIn auto cubic-bezier(.16,1,.3,1) both;
    animation-timeline:view();animation-range:cover 4vh cover 26vh}
 }
}

/* ---------- kapak illüstrasyonları ---------- */
.thumb,.cover{position:relative;overflow:clip}
.thumb-art{position:absolute;inset:0;width:100%;height:100%;opacity:.24;color:#fff;pointer-events:none}
.cover .thumb-art{opacity:.2}

/* ---------- referans monogramları ---------- */
.refgrid div{display:flex;flex-direction:column;align-items:center;gap:9px}
.mono{width:40px;height:40px;border-radius:12px;display:grid;place-items:center;
  font-family:"Poppins",sans-serif;font-weight:600;font-size:15px;color:#fff;letter-spacing:-.01em}

/* ---------- 404 çizimi ---------- */
.nf-art{width:min(320px,72vw);height:auto;margin:0 auto 6px;display:block}


/* ==================================================================
   AĞ DURUMU / CANLI DDoS İZLEME
   ================================================================== */
.st-band{width:min(1080px,88%);margin:0 auto;border-radius:18px;padding:22px 24px;
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;border:1px solid #ffdedc;background:#fff6f5}
.st-band.ok{border-color:#d8f0e4;background:#f2fbf6}
.st-band .pulse{width:12px;height:12px;border-radius:50%;flex:none;background:#e8232a;position:relative}
.st-band.ok .pulse{background:#17a866}
.st-band .pulse::after{content:"";position:absolute;inset:-6px;border-radius:50%;
  border:2px solid currentColor;color:#e8232a;opacity:.5;animation:ring 1.8s ease-out infinite}
.st-band.ok .pulse::after{color:#17a866}
@keyframes ring{0%{transform:scale(.6);opacity:.7}100%{transform:scale(1.5);opacity:0}}
.st-band h2{font-family:"Poppins",sans-serif;font-size:19px;font-weight:600;letter-spacing:-.02em;color:#111214}
.st-band p{font-size:13px;color:#7a7f85;margin-top:3px}
.st-updated{margin-left:auto;font-size:12px;color:#9aa0a6;font-variant-numeric:tabular-nums}

/* align-items:start yoktu -> kartlar dogal yuksekliginde kaliyor ve
   saldiri karti grafigi 225px asiyordu. Artik ikisi de satir
   yuksekligini dolduruyor; icerik flex ile dagitiliyor. */
.ddos{display:grid;grid-template-columns:1fr 1.35fr;gap:22px;margin-top:44px}
.ddos-card{border:1px solid #f1f1f1;border-radius:18px;padding:24px;background:#fff;
  display:flex;flex-direction:column}
.ddos-card .metrics{margin-top:auto;padding-top:18px}
.ddos-card.alarm{border-color:#ffdedc;background:linear-gradient(180deg,#fff8f7,#fff)}
.dd-tag{display:inline-flex;align-items:center;gap:7px;font-size:10.5px;font-weight:700;letter-spacing:.09em;
  text-transform:uppercase;border-radius:999px;padding:5px 11px;color:#e8232a;background:#fff1f0;border:1px solid #ffdedc}
.dd-tag.ok{color:#17a866;background:#eefaf3;border-color:#d8f0e4}
.dd-tag i{width:7px;height:7px;border-radius:50%;background:currentColor;animation:pulseDot 1.4s ease-in-out infinite}
.ddos-card h3{font-family:"Poppins",sans-serif;font-size:20px;font-weight:600;letter-spacing:-.022em;
  color:#111214;margin:16px 0 6px}
.dd-sub{font-size:13px;line-height:1.65;color:#7a7f85}
.dd-list{margin-top:20px;display:flex;flex-direction:column}
.dd-list div{display:flex;gap:12px;padding:11px 0;border-bottom:1px solid #f3f3f3;font-size:13px;color:#5f6368}
.dd-list div:last-child{border-bottom:0}
.dd-list b{margin-left:auto;color:#111214;font-weight:600;font-variant-numeric:tabular-nums;text-align:right}
/* Dar kartta 4 sütun sığmıyor, "86,3 Gbps" alt satıra sarıyordu.
   auto-fit ile yer kalmayınca kendiliğinden 2x2 oluyor. */
.metrics{display:grid;grid-template-columns:repeat(auto-fit,minmax(132px,1fr));
  gap:12px;margin-top:18px}
.metric{border:1px solid #f2f2f2;border-radius:12px;padding:14px;background:#fcfcfd}
.metric span{display:block;font-size:10.5px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:#9aa0a6}
.metric b{display:block;font-size:20px;font-weight:600;color:#111214;margin-top:6px;
  white-space:nowrap;
  letter-spacing:-.028em;font-variant-numeric:tabular-nums}
.metric.bad b{color:#e8232a}
.metric.good b{color:#17a866}
.chart-wrap{border:1px solid #f1f1f1;border-radius:18px;padding:20px;background:#fff;
  display:flex;flex-direction:column}
.chart-head{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-bottom:14px}
.chart-head h3{font-size:14px;font-weight:600;color:#111214}
.legend{display:flex;gap:14px;margin-left:auto;font-size:11.5px;color:#7a7f85}
.legend span{display:flex;align-items:center;gap:6px}
.legend i{width:9px;height:9px;border-radius:3px;flex:none}
.legend .c1{background:#2f7cf6}.legend .c2{background:#e8232a}
.chart{width:100%;height:auto;display:block;overflow:visible;
  flex:1 1 auto;min-height:170px}
/* SVG preserveAspectRatio="none" ile dikeyde geriliyor; non-scaling-stroke
   olmazsa yatay çizgiler orantısız kalınlaşır. */
.chart path,.chart line{vector-effect:non-scaling-stroke}
.chart .grid{stroke:#f0f1f3;stroke-width:1}
.chart .lbl{fill:#a8adb3;font-size:10px;font-family:Inter,sans-serif}

/* servis durumu */
.svc{margin-top:26px;border:1px solid #f1f1f1;border-radius:18px;overflow:clip;background:#fff}
.svc-row{display:grid;grid-template-columns:1.1fr 2fr auto;gap:20px;align-items:center;
  padding:16px 22px;border-bottom:1px solid #f4f4f4}
.svc-row:last-child{border-bottom:0}
.svc-name{display:flex;align-items:center;gap:10px;font-size:13.8px;font-weight:500;color:#17181a}
.sdot{width:8px;height:8px;border-radius:50%;flex:none}
.sdot.operational{background:#17a866}.sdot.mitigating{background:#f0a010}
.sdot.degraded{background:#f26a3d}.sdot.down{background:#e8232a}
.upbar{display:flex;gap:2px;height:26px}
.upbar i{flex:1;border-radius:2px;background:#22a865;min-width:2px}
.upbar i.w{background:#f0a010}.upbar i.d{background:#e8232a}
.svc-up{font-size:12.5px;font-weight:600;color:#5f6368;font-variant-numeric:tabular-nums;white-space:nowrap}
.svc-legend{display:flex;justify-content:space-between;font-size:11px;color:#a8adb3;padding:12px 22px;background:#fafbfc}

/* olay geçmişi */
.inc{margin-top:26px;display:flex;flex-direction:column}
.inc article{border-left:2px solid #eeeeee;padding:0 0 26px 22px;position:relative}
.inc article:last-child{padding-bottom:0}
.inc article::before{content:"";position:absolute;left:-6px;top:4px;width:10px;height:10px;border-radius:50%;
  background:#fff;border:2px solid #d5d8db}
.inc article.mitigating::before{border-color:#e8232a}
.inc article.resolved::before{border-color:#17a866}
.inc article.maintenance::before{border-color:#2f7cf6}
.inc time{font-size:11.5px;color:#9aa0a6;font-variant-numeric:tabular-nums}
.inc h3{font-size:15px;font-weight:600;color:#111214;margin:6px 0 8px;letter-spacing:-.012em}
.inc p{font-size:13.2px;line-height:1.7;color:#7a7f85;max-width:640px}
.inc .badge2{display:inline-block;font-size:10px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  border-radius:999px;padding:4px 9px;margin-left:9px;vertical-align:2px}
.badge2.mitigating{background:#fff1f0;color:#cf3a2f}
.badge2.resolved{background:#eefaf3;color:#0f8b55}
.badge2.maintenance{background:#eef4ff;color:#2f6ee0}

/* canlı koruma şeridi (ürün sayfalarında) */
.livestrip{width:min(880px,90%);margin:26px auto 0;display:flex;align-items:center;gap:14px;flex-wrap:wrap;
  border:1px solid #f0f0f0;border-radius:14px;padding:14px 18px;background:#fff;
  box-shadow:0 6px 20px rgba(20,20,43,.05);font-size:13px;color:#5f6368}
.livestrip .pulse{width:9px;height:9px;border-radius:50%;background:#17a866;flex:none;
  animation:pulseDot 1.6s ease-in-out infinite}
.livestrip b{color:#111214;font-weight:600;font-variant-numeric:tabular-nums}
.livestrip a{margin-left:auto;font-size:12.5px;font-weight:500;color:#3f52d9;white-space:nowrap}
.livestrip a:hover{text-decoration:underline}

@media (max-width:1000px){
  .ddos{grid-template-columns:1fr}
  .metrics{grid-template-columns:1fr 1fr}
  .svc-row{grid-template-columns:1fr;gap:10px}
  .st-updated{margin-left:0;width:100%}
}
@media (prefers-reduced-motion:reduce){
  .st-band .pulse::after,.dd-tag i,.livestrip .pulse{animation:none}
}


/* ==================================================================
   İKONOGRAFİ — tablolar, SSS, listeler, rozetler
   ================================================================== */

/* ---------- tablolarda Var / Yok ---------- */
.table-wrap .yes,.table-wrap .no{display:inline-flex;align-items:center;gap:8px;font-weight:500}
.table-wrap .yes::before,.table-wrap .no::before{content:"";width:17px;height:17px;flex:none;
  background-repeat:no-repeat;background-position:center;background-size:contain}
.table-wrap .yes::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='10' r='9' fill='%2317a866'/><path d='M5.7 10.2l2.7 2.7 5.9-6.1' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/></svg>")}
.table-wrap .no::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='10' r='9' fill='%23dfe2e6'/><path d='M7 7l6 6M13 7l-6 6' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round'/></svg>")}

/* ---------- yardım merkezi liste ikonları ---------- */
.hc-list a{position:relative;padding-left:34px;padding-right:34px}
.hc-list a::before{content:"";position:absolute;left:4px;top:50%;margin-top:-9px;width:18px;height:18px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8adb3' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M13.4 3.4H7a2 2 0 0 0-2 2v13.2a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V9z'/><path d='M13.4 3.4V9H19'/><path d='M8.6 13h6.8M8.6 16.4h4.4'/></svg>") center/contain no-repeat}
.hc-list a::after{content:"";position:absolute;right:6px;top:50%;margin-top:-7px;width:14px;height:14px;
  opacity:.45;transition:transform .25s ease,opacity .25s ease;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 5l7 7-7 7'/></svg>") center/contain no-repeat}
.hc-list a:hover::after{transform:translateX(4px);opacity:1}

/* ---------- adım kartlarında ikon + numara ---------- */
.step{position:relative}
.step::before{position:absolute;top:22px;right:22px;margin:0}
.step .ic{margin:0 0 16px}

/* ---------- sürüm notu grup ikonları ---------- */
.rel-group h3{display:flex;align-items:center;gap:8px}
.rel-group h3::before{content:"";width:15px;height:15px;flex:none;background-repeat:no-repeat;
  background-position:center;background-size:contain}
.rel-group h3.g-new::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='10' r='9' fill='%230f8b55'/><path d='M10 6v8M6 10h8' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round'/></svg>")}
.rel-group h3.g-imp::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='10' r='9' fill='%233f52d9'/><path d='M10 14V6.6M6.6 10L10 6.6 13.4 10' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/></svg>")}
.rel-group h3.g-fix::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='10' r='9' fill='%23c2790c'/><path d='M6.4 10.2l2.4 2.4 4.8-5' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/></svg>")}
.rel-group h3.g-sec::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path d='M10 2.2l6.2 2.4v4.6c0 3.8-2.6 6.7-6.2 8.6-3.6-1.9-6.2-4.8-6.2-8.6V4.6z' fill='%23cf3a2f'/><path d='M7.4 10l1.9 1.9 3.6-3.8' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/></svg>")}

/* ---------- footer güven rozetleri ---------- */
.foot-badges{display:flex;flex-direction:column;gap:9px;margin-top:18px}
.foot-badges span{display:flex;align-items:center;gap:9px;font-size:12px;color:#7a7f85}
.foot-badges svg{flex:none}

/* ---------- iletişim: dekoratif harita ---------- */
.map-card{border:1px solid #f1f1f1;border-radius:14px;overflow:clip;background:#fafbfc;position:relative}
.map-card svg{display:block;width:100%;height:auto}
.map-card .pin{position:absolute;left:50%;top:46%;transform:translate(-50%,-100%)}
.map-card .pin::after{content:"";position:absolute;left:50%;top:100%;width:34px;height:11px;
  transform:translate(-50%,-3px);border-radius:50%;background:rgba(63,82,217,.16);filter:blur(3px)}
.map-cap{position:absolute;left:14px;bottom:12px;font-size:11.5px;color:#7a7f85;background:rgba(255,255,255,.92);
  border:1px solid #eceef1;border-radius:8px;padding:6px 11px;backdrop-filter:blur(4px)}

/* ---------- CTA bandında nokta deseni ---------- */
.cta-band::before{content:"";position:absolute;inset:0;z-index:3;opacity:.5;pointer-events:none;
  background-image:radial-gradient(rgba(255,255,255,.16) 1px,transparent 1px);
  background-size:22px 22px;
  -webkit-mask-image:radial-gradient(70% 70% at 50% 40%,#000,transparent 78%);
  mask-image:radial-gradient(70% 70% at 50% 40%,#000,transparent 78%)}

/* ---------- teknoloji şeridi ikonları ---------- */
.logos > span svg{flex:none;opacity:.85}
.logos > span:hover svg{opacity:1}


/* ==================================================================
   FOTOĞRAF YUVALARI
   Dosya yoksa tarayıcı o katmanı atlar ve altındaki gradyan görünür.
   Görseli assets/img/... altına doğru adla koymanız yeterli.
   ================================================================== */
.photoband{position:relative;width:min(1080px,88%);margin:0 auto;border-radius:20px;overflow:clip;
  aspect-ratio:16/6.4;background-image:var(--photo,none),
    linear-gradient(125deg,#1b2352 0%,#4b2d8f 48%,#8f2f6b 100%);
  background-size:cover;background-position:center;background-repeat:no-repeat;
  box-shadow:0 20px 54px rgba(20,20,43,.16)}
.photoband::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,12,26,0) 38%,rgba(10,12,26,.72) 100%)}
.photoband figcaption{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:26px 30px;color:#fff}
.photoband b{display:block;font-family:"Poppins",sans-serif;font-size:19px;font-weight:600;letter-spacing:-.02em}
.photoband span{display:block;font-size:13px;line-height:1.6;color:rgba(255,255,255,.78);margin-top:6px;max-width:520px}
@media (max-width:700px){
  .photoband{aspect-ratio:4/3.2}
  .photoband figcaption{padding:18px 20px}
  .photoband b{font-size:16px}
}

/* kapaklarda fotoğraf katmanı */
.thumb,.cover{background-size:cover;background-position:center}

/* fotoğraflı avatar (yoksa gradyan) */
.ph-av{width:42px;height:42px;border-radius:50%;flex:none;background-size:cover;background-position:center;
  background-image:var(--photo,none),linear-gradient(140deg,#c9d0d8,#8a949f)}

/* hakkımızda ikili görsel */
.photogrid{display:grid;grid-template-columns:1.4fr 1fr;gap:20px;margin-top:52px}
.photogrid figure{position:relative;border-radius:18px;overflow:clip;aspect-ratio:4/3;
  background-image:var(--photo,none),linear-gradient(135deg,#eef2ff,#f7ecff 55%,#ffeef5);
  background-size:cover;background-position:center;box-shadow:0 14px 40px rgba(20,20,43,.10)}
.photogrid figcaption{position:absolute;left:14px;bottom:14px;font-size:11.5px;color:#5f6368;
  background:rgba(255,255,255,.92);border:1px solid #eceef1;border-radius:8px;padding:6px 11px}
@media (max-width:800px){.photogrid{grid-template-columns:1fr}}


/* ---------- foto bandında opsiyonel video katmanı ---------- */
.photoband video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;
  opacity:0;transition:opacity .6s ease}
.photoband video.ready{opacity:1}
@media (prefers-reduced-motion:reduce){.photoband video{display:none}}


/* ==================================================================
   LİSANS SORGULAMA
   ================================================================== */
.lc{width:min(680px,90%);margin:0 auto}
.lc-form{border:1px solid #f1f1f1;border-radius:18px;padding:26px;background:#fff;
  box-shadow:0 14px 40px rgba(20,20,43,.07)}
.lc-form .row2{gap:16px}
.lc-key input{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;letter-spacing:.06em;
  text-transform:uppercase}
.lc-form button{width:100%;margin-top:6px}
.lc-hint{margin-top:14px;font-size:12px;color:#9aa0a6;line-height:1.6;text-align:center}
.lc-hint code{font-family:ui-monospace,Menlo,Consolas,monospace;font-size:11.5px;background:#f4f5f7;
  border:1px solid #eceef1;border-radius:5px;padding:2px 6px;cursor:pointer}
.lc-hint code:hover{background:#eceef1;color:#111214}

.lc-result{margin-top:22px;border:1px solid #f1f1f1;border-radius:18px;overflow:clip;background:#fff}
.lc-head{display:flex;align-items:center;gap:14px;padding:22px 24px;border-bottom:1px solid #f3f3f3}
.lc-badge{width:44px;height:44px;border-radius:50%;flex:none;display:grid;place-items:center}
.lc-head h3{font-family:"Poppins",sans-serif;font-size:18px;font-weight:600;letter-spacing:-.02em;color:#111214}
.lc-head p{font-size:12.8px;color:#7a7f85;margin-top:3px;line-height:1.55}
.lc-body{padding:6px 24px 20px}
.lc-body div{display:flex;gap:14px;align-items:baseline;padding:12px 0;border-bottom:1px solid #f5f5f5;font-size:13.2px;color:#7a7f85}
.lc-body div:last-child{border-bottom:0}
.lc-body b{margin-left:auto;color:#111214;font-weight:600;text-align:right;font-variant-numeric:tabular-nums}
.lc-body .mono{font-family:ui-monospace,Menlo,Consolas,monospace;font-size:12.5px;letter-spacing:.04em}
.lc-foot{padding:16px 24px;background:#fafbfc;border-top:1px solid #f3f3f3;font-size:12.5px;color:#7a7f85}
.lc-foot a{color:#3f52d9}.lc-foot a:hover{text-decoration:underline}

.lc-result[data-state="active"] .lc-badge{background:#eefaf3;color:#0f8b55}
.lc-result[data-state="expiring"] .lc-badge{background:#fff6ea;color:#c2790c}
.lc-result[data-state="expired"] .lc-badge,
.lc-result[data-state="notfound"] .lc-badge{background:#fdeceb;color:#cf3a2f}
.lc-result[data-state="mismatch"] .lc-badge{background:#fff6ea;color:#c2790c}
.lc-result[data-state="suspended"] .lc-badge{background:#f3f5f7;color:#5f6368}
.lc-result[data-state="notfound"] .lc-body{display:none}


/* ==================================================================
   KAYDIRMA KOREOGRAFİSİ
   Her şey scrollbar konumuna bağlı: geri kaydırınca hareket de geri sarar.
   ================================================================== */

/* ---------- üstte ilerleme çubuğu ---------- */
.sprog{position:fixed;top:0;left:0;right:0;height:3px;z-index:120;pointer-events:none}
.sprog i{display:block;height:3px;width:100%;transform-origin:0 50%;transform:scaleX(0);
  background:linear-gradient(90deg,#3f52d9 0%,#7c5cf5 42%,#f0447c 78%,#f26a3d 100%)}
@keyframes sprogFill{from{transform:scaleX(0)}to{transform:scaleX(1)}}

/* ---------- yapışkan başlık ---------- */
.site-head,.site-head--hero{position:sticky;top:0;z-index:60}
/* Sert kenarli beyaz kutu yerine asagi dogru eriyen bir katman:
   maske sayesinde bulaniklik da birlikte sonumleniyor, cizgi olusmuyor. */
.site-head::before{content:"";position:absolute;inset:0 0 -26px 0;z-index:-1;opacity:0;
  background:linear-gradient(180deg,rgba(255,255,255,.94) 0%,rgba(255,255,255,.86) 55%,rgba(255,255,255,0) 100%);
  backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);
  -webkit-mask-image:linear-gradient(180deg,#000 0%,#000 58%,transparent 100%);
  mask-image:linear-gradient(180deg,#000 0%,#000 58%,transparent 100%)}
@keyframes headGlass{from{opacity:0}to{opacity:1}}
@keyframes headShrink{from{padding-top:30px;padding-bottom:0}to{padding-top:11px;padding-bottom:11px}}

/* ---------- parallax keyframe'leri ---------- */
@keyframes bandPan{from{background-position:center 26%}to{background-position:center 74%}}
@keyframes bandVid{from{translate:0 -5%;scale:1.16}to{translate:0 5%;scale:1.16}}
@keyframes kenBurns{from{background-size:120%}to{background-size:103%}}
@keyframes glowDrift{from{translate:0 -14%;scale:.86}to{translate:0 14%;scale:1.14}}
@keyframes blobDrift{from{translate:-6% 12%}to{translate:6% -12%}}
@keyframes ctaGlowDrift{from{translate:-5% 10%;rotate:-4deg}to{translate:5% -10%;rotate:4deg}}
@keyframes logoDrift{from{translate:-14px 0}to{translate:14px 0}}
@keyframes railDrift{from{translate:0 24px}to{translate:0 -24px}}
@keyframes tiltIn{from{transform:perspective(1400px) rotateX(6deg) translateY(26px)}
                  to{transform:perspective(1400px) rotateX(0) translateY(-14px)}}
@keyframes footRise{from{translate:0 40px;opacity:.35}to{translate:0 0;opacity:1}}

@supports (animation-timeline:view()){
 @media (prefers-reduced-motion:no-preference){

  /* ilerleme çubuğu + başlık, sayfanın tamamına bağlı */
  .sprog i{animation:sprogFill auto linear both;animation-timeline:scroll(root)}
  .site-head::before{animation:headGlass auto linear both;animation-timeline:scroll(root);
    animation-range:24px 140px}
  .site-head{animation:headShrink auto linear both;animation-timeline:scroll(root);
    animation-range:24px 160px}

  /* foto bantları: görsel sayfadan yavaş kayar */
  .photoband{animation:bandPan auto linear both;animation-timeline:view();
    animation-range:cover 0% cover 100%}
  .photoband video{animation:bandVid auto linear both;animation-timeline:view();
    animation-range:cover 0% cover 100%}

  /* kapaklar: kaydırdıkça yavaşça yakınlaşır */
  .thumb{animation:kenBurns auto linear both;animation-timeline:view();
    animation-range:cover 0% cover 100%}
  .cover{animation:riseIn auto cubic-bezier(.16,1,.3,1) both,
                   kenBurns auto linear both;
    animation-timeline:view(),view();
    animation-range:cover 10vh cover 34vh, cover 0% cover 100%}

  /* ışımalar sayfayla birlikte sürüklenir */
  .sc-glow{animation:glowDrift auto linear both;animation-timeline:view();
    animation-range:cover 0% cover 100%}
  .mock .blob{animation:blobDrift auto linear both;animation-timeline:view();
    animation-range:cover 0% cover 100%}
  .cta-glow{animation:ctaGlowDrift auto linear both;animation-timeline:view();
    animation-range:cover 0% cover 100%}

  /* teknoloji şeridi yatayda süzülür */
  .logos{animation:logoDrift auto linear both;animation-timeline:view();
    animation-range:entry 0% exit 100%}

  /* panel mockup'ı geçerken eğimden düzleşip yükselir */
  .dash{animation:tiltIn auto linear both;animation-timeline:view();
    animation-range:cover 4vh cover 62vh}

  /* footer sayfayla birlikte yükselir */
  .foot{animation:footRise auto linear both;animation-timeline:view();
    animation-range:entry 0% entry 100%}
 }
}

@media (prefers-reduced-motion:reduce){
  .sprog{display:none}
  .site-head::before{opacity:1}
}

/* scroll-driven desteklemeyen tarayıcılarda ilerleme çubuğu JS ile sürülür */
.no-sda .sprog i{transition:transform .1s linear}

.site-head.stuck::before{opacity:1;transition:opacity .25s ease}


/* ---------- marka logoları: gri dur, üzerine gelince renklen ---------- */
.logos > span{color:#b3b6ba;transition:color .3s ease,scale .3s cubic-bezier(.16,1,.3,1)}
.logos > span:hover{color:var(--brand,#111214);scale:1.06}
.lg-mark{flex:none;display:block}
.lg-mark path{fill:currentColor}
.lg-only{gap:0}
.lg-word{height:21px;width:auto}
@media (prefers-reduced-motion:reduce){.logos > span{transition:color .3s ease}}


/* ---------- CTA bandı arka plan videosu ---------- */
.cta-band > .cta-bg{position:absolute;inset:0;z-index:0;width:100%;height:100%;
  object-fit:cover;opacity:0;transition:opacity 1s ease}
.cta-band > .cta-bg.ready{opacity:.55}
.cta-band::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(180deg,rgba(12,13,16,.74) 0%,rgba(12,13,16,.88) 100%)}
@media (prefers-reduced-motion:reduce){.cta-band > .cta-bg{display:none}}


/* ------------------------------------------------------------------
   Blog yazısı: breadcrumb, kapak, bölümler, etiketler, yazar kutusu
   (tools/build-blog.py tarafından üretilen yapı)
------------------------------------------------------------------ */
.crumbs{padding:26px 0 0}
.crumbs-in{width:min(1080px,88%);margin:0 auto}
.crumbs ol{list-style:none;display:flex;flex-wrap:wrap;align-items:center;gap:8px;
  font-size:12.5px;color:#9aa0a6}
.crumbs li+li::before{content:"/";margin-right:8px;color:#d5d8db}
.crumbs a{color:#7a7f85;border-bottom:1px solid transparent}
.crumbs a:hover{color:#111214;border-bottom-color:#d8dade}
.crumbs [aria-current]{color:#4a4d52;display:inline-block;max-width:44ch;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:bottom}

.article-head{padding:34px 0 0}
.am-author{display:inline-flex;align-items:center;gap:8px}
.am-author .face{width:22px;height:22px}
.am-author a{color:#4a4d52;border-bottom:1px solid transparent}
.am-author a:hover{color:#111214;border-bottom-color:#d8dade}

.cover-fig{width:min(980px,92%);margin:40px auto 0}
.cover-img{display:block;width:100%;height:clamp(190px,30vw,360px);
  object-fit:cover;border-radius:20px;background:#eef1f6}

.prose .lede{font-size:17.5px;line-height:1.72;color:#2b2f34}
.prose section{scroll-margin-top:96px}
.prose section+section{margin-top:36px}
.prose section > * + *{margin-top:20px}
.prose section > h2{margin-top:0}

.prose section.faq-sec{margin-top:56px;padding-top:34px;border-top:1px solid #f2f2f2}
.faq-sec .faq{max-width:none;margin-top:22px}

.tagbox{width:min(680px,88%);margin:40px auto 0;display:flex;align-items:center;
  gap:12px;flex-wrap:wrap}
.tag-t{font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:#9aa0a6}
.tagbox ul{list-style:none;display:flex;flex-wrap:wrap;gap:7px}
.tagbox a{display:inline-block;font-size:12.5px;color:#5f6875;background:#f4f5f7;
  border-radius:999px;padding:6px 12px;transition:background .18s ease,color .18s ease}
.tagbox a:hover{background:#eaeefb;color:#3f52d9}

.authorbox{align-items:flex-start}
.authorbox .face{flex:none;margin-top:2px}
.authorbox .ab-role{color:#7a7f85;font-weight:500}
.authorbox p{font-size:12.8px;line-height:1.7;color:#9aa0a6;margin-top:5px;max-width:52ch}
.authorbox h3 a{color:inherit;border-bottom:1px solid transparent}
.authorbox h3 a:hover{border-bottom-color:#d8dade}

/* Paylaş butonları: marka logosu gri, üzerine gelince markanın rengi */
.share{gap:8px}
.share a.sh{display:inline-flex;align-items:center;gap:7px;padding:8px 13px;
  color:#5f6875;transition:color .2s ease,border-color .2s ease,background .2s ease,
  translate .25s cubic-bezier(.16,1,.3,1)}
.sh-mark{width:14px;height:14px;flex:none;display:block;color:#a8adb3;transition:color .2s ease}
.share a.sh:hover{color:var(--brand);border-color:color-mix(in srgb,var(--brand) 34%, #e8e8e8);
  background:color-mix(in srgb,var(--brand) 5%, #ffffff)}
.share a.sh:hover .sh-mark{color:var(--brand)}
.share a.sh:focus-visible{outline:2px solid var(--brand);outline-offset:2px}

@media (max-width:520px){
  .share a.sh span{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%)}
  .share a.sh{padding:9px 11px}
}


/* ==================================================================
   ALAN ADI SORGULAMA
   ================================================================== */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip-path:inset(50%);white-space:nowrap;border:0}

.dq{width:min(760px,90%);margin:0 auto}
.dq-label{display:block;font-size:11px;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:#9aa0a6;margin-bottom:11px;text-align:center}

.dq-bar{display:flex;align-items:center;gap:8px;padding:7px 7px 7px 16px;background:#fff;
  border:1px solid #e6e8ec;border-radius:16px;
  box-shadow:0 1px 2px rgba(20,20,43,.04), 0 14px 38px rgba(20,20,43,.07);
  transition:border-color .22s ease,box-shadow .3s ease}
.dq-bar:focus-within{border-color:#c6cff7;box-shadow:0 1px 2px rgba(20,20,43,.04),
  0 18px 46px rgba(63,82,217,.14)}
.dq-ic{flex:none;display:grid;place-items:center;color:#a8adb3}
.dq-ic svg{width:19px;height:19px;display:block}
.dq-bar input{flex:1;min-width:0;border:0;outline:0;background:transparent;
  font:inherit;font-size:16px;color:#111214;padding:13px 2px}
.dq-bar input::placeholder{color:#b3b6ba}
.dq-bar button{flex:none;position:relative;min-width:118px;justify-content:center}
.dq-bar button:disabled{opacity:.5;cursor:default}

.dq-spin{display:none;width:14px;height:14px;border-radius:50%;
  border:2px solid rgba(255,255,255,.35);border-top-color:#fff;animation:dqSpin .7s linear infinite}
@keyframes dqSpin{to{rotate:360deg}}
.dq-form.is-busy .dq-btn-tx{display:none}
.dq-form.is-busy .dq-spin{display:block}

.dq-chips{margin-top:14px;display:flex;flex-wrap:wrap;gap:7px;align-items:center;justify-content:center}
.dq-chips-t{font-size:12px;color:#9aa0a6;margin-right:2px}
.dq-chip{font:inherit;font-size:12.5px;font-weight:500;color:#4a4d52;background:#f4f5f7;
  border:1px solid transparent;border-radius:999px;padding:6px 13px;cursor:pointer;
  transition:background .18s ease,color .18s ease,border-color .18s ease}
.dq-chip:hover{background:#eaeefb;color:#3f52d9;border-color:#dfe4ff}

.dq-status{margin-top:13px;text-align:center;font-size:13px;color:#7a7f85}
.dq-status.is-warn{color:#c2410c}
.dq-status.is-info{color:#3f52d9}

/* ---------- sonuçlar ---------- */
.dq-result{margin-top:26px}
.dq-head{text-align:center;margin-bottom:14px}
.dq-sum{font-size:13.5px;color:#7a7f85}
.dq-sum b{color:#111214;font-weight:600}







.dq-buy{font-size:13px;font-weight:500;color:#fff;background:#111214;border-radius:9px;
  padding:8px 14px;white-space:nowrap;transition:background .2s ease,translate .25s cubic-bezier(.16,1,.3,1)}
.dq-buy:hover{background:#000;translate:0 -2px}

.dq-sep{padding:11px 18px 9px;border-top:1px solid #f3f3f3;background:#fafbfc}
.dq-sep span{font-size:10.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:#9aa0a6}

.dq-tip{margin-top:16px;font-size:13.2px;line-height:1.72;color:#7a7f85;
  border:1px solid #e4eaff;background:#f6f8ff;border-radius:14px;padding:16px 18px}
.dq-tip b{color:#111214}
.dq-tip a{color:#3f52d9;border-bottom:1px solid #c6cff7}
.dq-error{font-size:13.5px;color:#c2410c;text-align:center;
  border:1px solid #fadcc8;background:#fff8f3;border-radius:14px;padding:18px}
.dq-error a{color:#c2410c;border-bottom:1px solid #f0b58c}


/* ---------- uzantı fiyat tablosu ---------- */
.tl-wrap{width:min(900px,90%);margin:44px auto 0;overflow-x:auto;
  border:1px solid #eeeeee;border-radius:16px;background:#fff}
.tl{width:100%;border-collapse:collapse;font-size:13.8px;min-width:640px}
.tl thead th{text-align:left;font-size:10.5px;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:#9aa0a6;padding:15px 18px;border-bottom:1px solid #f0f0f0;
  background:#fafbfc;white-space:nowrap}
.tl tbody th,.tl td{padding:14px 18px;border-top:1px solid #f4f4f4;
  color:#3d4147;font-weight:400;vertical-align:middle;font-variant-numeric:tabular-nums}
.tl tbody tr:first-child th,.tl tbody tr:first-child td{border-top:0}
.tl tbody th{text-align:left;white-space:nowrap}
.tl tbody th code{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:13.5px;font-weight:600;color:#111214;background:transparent;padding:0}
.tl tr.is-featured{background:#fbfcff}
.tl tr.is-featured th code{color:#3f52d9}
.tl-doc{display:inline-block;margin-left:8px;font-size:10px;font-weight:600;letter-spacing:.04em;
  text-transform:uppercase;color:#8a6d3b;background:#fdf6e7;border-radius:999px;padding:3px 8px}
.tl-note{color:#7a7f85;font-size:13px;min-width:230px}
.tl-foot{width:min(900px,90%);margin:16px auto 0;font-size:12.8px;line-height:1.72;color:#9aa0a6;
  text-align:center}
.tl-foot a{color:#4a4d52;border-bottom:1px solid #d8dade}
.tl-foot a:hover{color:#111214}
.tl-foot code{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:12px;
  background:#f4f5f7;border-radius:5px;padding:2px 6px;color:#4a4d52}

@supports (animation-timeline:view()){
 @media (prefers-reduced-motion:no-preference){
  .dq-form,.tl-wrap{animation:riseIn auto linear both;animation-timeline:view();
    animation-range:cover 12vh cover 38vh}
 }
}

/* ---------- gruplu sonuç listesi ---------- */
.dq-group{margin-top:22px}
.dq-group.is-main-group{margin-top:0}
.dq-gt{display:flex;align-items:baseline;gap:10px;padding:0 4px 9px;flex-wrap:wrap}
.dq-gt b{font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:#4a4d52}
.dq-gt i{font-style:normal;font-size:12px;color:#a8adb3}
.dq-group.is-main-group .dq-gt b{color:#3f52d9}
.dq-group.is-main-group .dq-list{border-color:#dfe4ff;box-shadow:0 10px 30px rgba(63,82,217,.08)}

.dq-cheap{margin-top:4px;font-size:12.2px;color:#0f7a4c}
.dq-cheap b{font-weight:600}



/* seçim kutusu — kutuyu gizleyip etiketi düğme gibi gösteriyoruz */

/* ---------- isim önerileri ---------- */
.dq-sug{margin-top:20px;padding-top:16px;border-top:1px solid #f2f2f2}
.dq-sug-t{font-size:10.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:#a8adb3;margin-bottom:9px}
.dq-sug-row{display:flex;flex-wrap:wrap;gap:6px}
.dq-sug-b{font:inherit;display:inline-flex;align-items:baseline;gap:7px;
  border:1px solid #ececec;border-radius:999px;background:#fff;padding:7px 13px;cursor:pointer;
  white-space:nowrap;transition:border-color .18s ease,background .18s ease,color .18s ease}
.dq-sug-b:hover{border-color:#dfe4ff;background:#fafbff}
.dq-sug-b b{font-size:12.5px;font-weight:500;color:#111214}
.dq-sug-b i{font-style:normal;font-size:11px;color:#a8adb3}

/* ---------- seçim sepeti ---------- */
.dq-cart{position:sticky;bottom:16px;z-index:20;margin-top:22px}
.dq-cart-in{display:flex;align-items:center;gap:18px;flex-wrap:wrap;
  border:1px solid #dfe4ff;border-radius:16px;padding:14px 16px;
  background:rgba(255,255,255,.93);backdrop-filter:blur(12px);
  box-shadow:0 -2px 10px rgba(20,20,43,.04), 0 18px 44px rgba(20,20,43,.14)}
.dq-cart-list{display:flex;flex-wrap:wrap;gap:6px;flex:1;min-width:0}
.dq-chip-sel{display:inline-flex;align-items:center;gap:6px;font-size:12.5px;color:#3f52d9;
  background:#eef1ff;border-radius:999px;padding:5px 6px 5px 12px}
.dq-chip-sel button{font:inherit;font-size:15px;line-height:1;color:#8b93c9;background:transparent;
  border:0;cursor:pointer;padding:0 4px;border-radius:50%;transition:color .18s ease}
.dq-chip-sel button:hover{color:#3f52d9}
.dq-cart-sum{display:flex;align-items:center;gap:14px;flex:none;margin-left:auto}
.dq-cart-n{font-size:12px;color:#9aa0a6;white-space:nowrap}
.dq-cart-tot{display:flex;flex-direction:column;align-items:flex-end;line-height:1.25;white-space:nowrap}
.dq-cart-tot b{font-size:16px;font-weight:600;color:#111214;font-variant-numeric:tabular-nums}
.dq-cart-tot i{font-style:normal;font-size:11px;color:#9aa0a6}

@media (max-width:620px){
  .dq-cart-in{gap:12px}
  .dq-cart-sum{margin-left:0;width:100%;justify-content:space-between}
}

/* ---------- fiyat tablosu sekmeleri ---------- */
.tl-tabs{display:flex;flex-wrap:wrap;gap:7px;justify-content:center;
  width:min(900px,90%);margin:38px auto 0}
.tl-tabs button{font:inherit;font-size:12.8px;font-weight:500;color:#4a4d52;background:#f4f5f7;
  border:1px solid transparent;border-radius:999px;padding:8px 15px;cursor:pointer;
  display:inline-flex;align-items:center;gap:7px;
  transition:background .18s ease,color .18s ease,border-color .18s ease}
.tl-tabs button i{font-style:normal;font-size:10.5px;color:#a8adb3;
  background:#fff;border-radius:999px;padding:1px 7px;font-variant-numeric:tabular-nums}
.tl-tabs button:hover{background:#eaeefb;color:#3f52d9}
.tl-tabs button.on{background:#111214;color:#fff;border-color:#111214}
.tl-tabs button.on i{color:#111214;background:#fff}
.tl-wrap{margin-top:20px}
.tl tbody tr[hidden]{display:none}

/* ==================================================================
   ALAN ADI SONUÇ SATIRI
   Sade tutuldu: uzantı açıklaması, yenileme fiyatı ve "Uygun" rozeti
   satırdan çıkarıldı — üçü de aşağıdaki fiyat tablosunda duruyor ve
   34 satırda tekrarlanınca liste gereksiz uzuyordu.
   ================================================================== */
.dq-list{list-style:none;border:1px solid #eeeeee;border-radius:14px;
  overflow:hidden;background:#fff}

.dq-row{
  display:grid;
  grid-template-columns:8px minmax(0,1fr) auto 84px;
  grid-template-areas:"dot name price pick";
  align-items:center;
  column-gap:14px;
  height:48px;
  padding:0 16px;
  border-top:1px solid #f4f4f4;
  transition:background .15s ease}
.dq-row:first-child{border-top:0}
.dq-row:hover{background:#fafbfd}
.dq-row.is-picked,.dq-row.is-picked:hover{background:#f4f7ff}
.dq-row.is-main{background:#fbfcff;height:60px;padding:0 16px}
.dq-row.is-main:hover{background:#f8faff}

/* durum: yalnızca renkli nokta (metni ekran okuyucuya bırakıldı) */
.dq-dot{grid-area:dot;width:7px;height:7px;border-radius:50%;background:#d5d8db}
.dq-row.is-free .dq-dot{background:#17a866}
.dq-row.is-taken .dq-dot{background:#d5d8db}
/* registry yanıt vermedi: ne boşta ne alınmış denebilir */
.dq-row.is-unknown .dq-dot{background:#e8a33d}
.dq-row.is-unknown .dq-taken-note{color:#8a6d3b}
.dq-row.is-picked .dq-dot{background:#3f52d9}

/* alan adı */
.dq-nm{grid-area:name;display:flex;align-items:baseline;gap:7px;min-width:0;
  font-size:14.5px;color:#111214;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.dq-nm b{flex:0 1 auto;min-width:0;font-weight:600;overflow:hidden;text-overflow:ellipsis}
.dq-tld{flex:none;color:#7a7f85;font-weight:500}
.dq-row.is-main .dq-nm{font-size:17.5px;letter-spacing:-.015em}
.dq-badge{flex:none;font-size:9.5px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  color:#96793f;background:#fbf5e8;border-radius:4px;padding:2px 6px;line-height:1.5}

/* fiyat */
.dq-price{grid-area:price;justify-self:end;white-space:nowrap;
  font-size:13.5px;font-weight:600;color:#111214;font-variant-numeric:tabular-nums}
.dq-price i{font-style:normal;font-weight:400;font-size:11.5px;color:#a8adb3;margin-left:2px}
.dq-taken-note{grid-area:price;justify-self:end;white-space:nowrap;
  font-size:12px;color:#a8adb3}

/* eylem */
.dq-pick{grid-area:pick;justify-self:stretch;position:relative;display:block;cursor:pointer}
.dq-pick input{position:absolute;inset:0;opacity:0;width:100%;height:100%;margin:0;cursor:pointer}
.dq-pick span{display:block;text-align:center;font-size:12.5px;font-weight:500;color:#4a4d52;
  background:#fff;border:1px solid #e2e5e9;border-radius:8px;padding:6px 0;
  transition:background .18s ease,color .18s ease,border-color .18s ease}
.dq-pick:hover span{border-color:#c6cff7;color:#3f52d9}
.dq-pick input:checked ~ span{background:#111214;border-color:#111214;color:#fff}
.dq-pick input:focus-visible ~ span{outline:2px solid #3f52d9;outline-offset:2px}
.dq-alt{grid-area:pick;justify-self:stretch;text-align:center;font-size:12.5px;color:#4a4d52;
  border:1px solid #e2e5e9;border-radius:8px;padding:6px 0;
  transition:border-color .2s ease,color .2s ease}
.dq-alt:hover{border-color:#c9ced4;color:#111214}

/* grup başlığı — yalnızca etiket */
.dq-group{margin-top:18px}
.dq-group.is-main-group{margin-top:0}
.dq-gt{padding:0 4px 7px}
.dq-gt b{font-size:10.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:#a8adb3}
.dq-group.is-main-group .dq-list{border-color:#dfe4ff;
  box-shadow:0 8px 24px rgba(63,82,217,.07)}
.dq-sep{display:none}

/* katlanmış uzantılar */
.dq-more{margin-top:18px}
.dq-more-b{display:block;width:100%;margin-top:14px;font:inherit;font-size:12.8px;font-weight:500;
  color:#4a4d52;background:#fff;border:1px solid #e8e8e8;border-radius:11px;padding:11px 0;
  cursor:pointer;transition:background .18s ease,border-color .18s ease,color .18s ease}
.dq-more-b:hover{background:#fafbfd;border-color:#d8dade;color:#111214}

/* ---------- 560px altı: fiyat ve düğme alt satıra ---------- */
@media (max-width:560px){
  /* öneriler tek satırda yatay kaydırılır — alt alta yığılıp
     ekranın yarısını kaplamasın */
  .dq-sug-row{flex-wrap:nowrap;overflow-x:auto;padding-bottom:4px;
    scrollbar-width:none;-ms-overflow-style:none}
  .dq-sug-row::-webkit-scrollbar{display:none}
  .dq-sug-b{flex:none}

  .dq-row{grid-template-columns:8px minmax(0,1fr) 84px;
    grid-template-areas:"dot  name  name"
                        "dot  price pick";
    row-gap:7px;height:74px;padding:0 14px;align-items:center}
  .dq-row.is-main{height:82px}
  .dq-price,.dq-taken-note{justify-self:start}
  .dq-nm{font-size:14px}
  .dq-row.is-main .dq-nm{font-size:16px}
}


/* ==================================================================
   ARADIĞINIZ AD — belirgin sonuç kartı
   Diğer uzantılar kompakt listede; aranan ad kendi kartında durur.
   ================================================================== */
.dq-hero{position:relative;border:1px solid #dfe4ff;border-radius:18px;background:#fff;
  padding:24px 26px 26px;
  box-shadow:0 1px 2px rgba(20,20,43,.04), 0 14px 40px rgba(63,82,217,.08)}
.dq-hero.is-taken{border-color:#ededed;box-shadow:0 1px 2px rgba(20,20,43,.04)}
.dq-hero.is-picked{border-color:#3f52d9;background:#fbfcff}

.dq-hero-tag{display:inline-block;font-size:10px;font-weight:700;letter-spacing:.09em;
  text-transform:uppercase;border-radius:5px;padding:4px 9px;margin-bottom:14px}
.dq-hero.is-free .dq-hero-tag{color:#0f7a4c;background:#dff5ea}
.dq-hero.is-taken .dq-hero-tag{color:#7a7f85;background:#f2f3f5}

.dq-hero-nm{display:flex;align-items:baseline;flex-wrap:wrap;gap:0 10px;
  font-family:"Poppins",sans-serif;font-size:clamp(22px,3.2vw,32px);font-weight:600;
  letter-spacing:-.025em;line-height:1.2;color:#111214;overflow-wrap:anywhere}
.dq-hero-nm .dq-hero-tld{color:#3f52d9;font-weight:600}
.dq-hero.is-taken .dq-hero-nm{color:#7a7f85}
.dq-hero.is-taken .dq-hero-nm .dq-hero-tld{color:#a8adb3}
.dq-hero-nm .dq-badge{align-self:center}

.dq-hero-buy{margin-top:22px;padding-top:20px;border-top:1px solid #f2f2f2;
  display:flex;align-items:flex-end;gap:22px;flex-wrap:wrap}
.dq-hero-price{display:flex;align-items:baseline;gap:4px;white-space:nowrap;
  font-variant-numeric:tabular-nums}
.dq-hero-price b{font-family:"Poppins",sans-serif;font-size:27px;font-weight:600;
  letter-spacing:-.02em;color:#111214}
.dq-hero-price i{font-style:normal;font-size:14px;font-weight:500;color:#9aa0a6}
.dq-hero-note{font-size:12.2px;color:#9aa0a6;margin-bottom:5px}
.dq-hero-note b{color:#4a4d52;font-weight:500}

.dq-hero-b{position:relative;margin-left:auto;display:block;cursor:pointer;min-width:190px}
.dq-hero-b input{position:absolute;inset:0;opacity:0;width:100%;height:100%;margin:0;cursor:pointer}
.dq-hero-b > span{display:block;text-align:center;font-size:14px;font-weight:500;color:#fff;
  background:#111214;border:1px solid #111214;border-radius:11px;padding:13px 22px;
  transition:background .2s ease,translate .25s cubic-bezier(.16,1,.3,1),box-shadow .25s ease}
.dq-hero-b:hover > span{background:#000;translate:0 -2px;box-shadow:0 12px 26px rgba(20,20,43,.18)}
.dq-hero-b input:checked ~ span{background:#3f52d9;border-color:#3f52d9}
.dq-hero-b input:focus-visible ~ span{outline:2px solid #3f52d9;outline-offset:3px}
.dq-hero-alt{margin-left:auto;display:block;min-width:190px;text-align:center;font-size:14px;
  font-weight:500;color:#4a4d52;border:1px solid #e2e5e9;border-radius:11px;padding:13px 22px;
  transition:border-color .2s ease,color .2s ease}
.dq-hero-alt:hover{border-color:#c9ced4;color:#111214}

@media (max-width:560px){
  .dq-hero{padding:20px 18px 22px}
  .dq-hero-buy{gap:14px}
  .dq-hero-b,.dq-hero-alt{margin-left:0;width:100%;min-width:0}
}

/* ==================================================================
   LİSANS SORGULAMA — örnek sorgu kartları
   ================================================================== */
.lc-examples{margin-top:26px;padding-top:22px;border-top:1px solid #f2f2f2}
.lc-ex-t{font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:#9aa0a6;margin-bottom:14px}
.lc-ex-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(228px,1fr));gap:9px}

.lc-ex{font:inherit;display:flex;flex-direction:column;align-items:flex-start;gap:3px;
  text-align:left;border:1px solid #eeeeee;border-radius:12px;background:#fff;
  padding:12px 14px;cursor:pointer;
  transition:border-color .18s ease,background .18s ease,translate .25s cubic-bezier(.16,1,.3,1)}
.lc-ex:hover{border-color:#dfe4ff;background:#fbfcff;translate:0 -2px}
.lc-ex:focus-visible{outline:2px solid #3f52d9;outline-offset:2px}
.lc-ex code{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:11px;color:#7a7f85;background:transparent;padding:0;letter-spacing:.02em}
.lc-ex b{font-size:13.2px;font-weight:600;color:#111214;margin-top:3px}
.lc-ex i{font-style:normal;font-size:11.5px;line-height:1.45;color:#9aa0a6}

.lc-ex.is-neg{background:#fcfcfd}
.lc-ex.is-neg b{color:#7a7f85}
.lc-ex.is-neg:hover{border-color:#e6e6e6;background:#fafafa}

.lc-ex-n{margin-top:14px;font-size:12.5px;line-height:1.7;color:#9aa0a6}
.lc-ex-d{font:inherit;font-size:12.5px;color:#3f52d9;background:#eef1ff;border:0;
  border-radius:6px;padding:3px 8px;cursor:pointer;
  transition:background .18s ease,color .18s ease}
.lc-ex-d:hover{background:#dfe4ff}
.lc-ex-d:focus-visible{outline:2px solid #3f52d9;outline-offset:2px}

@supports (animation-timeline:view()){
 @media (prefers-reduced-motion:no-preference){
  .lc-examples{animation:riseIn auto linear both;animation-timeline:view();
    animation-range:cover 10vh cover 32vh}
 }
}

/* ==================================================================
   PROJELERİMİZ — girişim kartları
   Her kartta aynı bölümler: üst şerit, künye, gövde, alt şerit.
   Alt şerit margin-top:auto ile tabana yapışır; böylece içerik uzunluğu
   farklı olsa da kartların alt hizası tutar.
   ================================================================== */
.prjgrid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,330px),1fr));
  gap:20px;margin-top:38px;align-items:stretch}

.prj{display:flex;flex-direction:column;border:1px solid #eeeeee;border-radius:20px;
  background:#fff;padding:24px 26px 22px;position:relative;overflow:clip;
  transition:translate .28s cubic-bezier(.16,1,.3,1),box-shadow .28s ease,border-color .2s ease}
.prj::before{content:"";position:absolute;inset:0 0 auto 0;height:3px;
  background:linear-gradient(90deg,var(--c1,#3f52d9),var(--c2,#7c5cf5));opacity:0;
  transition:opacity .25s ease}
.prj:hover{translate:0 -5px;box-shadow:0 20px 48px rgba(20,20,43,.10);border-color:#e6e6e6}
.prj:hover::before{opacity:1}
.prj.is-hidden{display:none}

/* --- üst şerit: ikon solda, durum rozeti sağda --- */
.prj-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.prj-mark{width:52px;height:52px;border-radius:15px;display:grid;place-items:center;flex:none;
  background:linear-gradient(135deg,var(--c1) 0%,var(--c2) 100%);
  box-shadow:0 8px 20px color-mix(in srgb,var(--c1) 26%, transparent)}
.prj-mark svg{width:25px;height:25px;display:block}
.prj-durum{flex:none;font-size:9.5px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:#0f7a4c;background:#e9f8f1;border-radius:999px;padding:5px 11px;line-height:1.5;
  margin-top:4px}
.prj-durum.is-soon{color:#8a6d3b;background:#fdf6e7}

/* --- künye --- */
.prj-kat{margin-top:20px;font-size:10px;font-weight:600;letter-spacing:.11em;
  text-transform:uppercase;color:#b3b6ba}
.prj h3{font-family:"Poppins",sans-serif;font-size:23px;font-weight:600;
  letter-spacing:-.026em;color:#111214;margin-top:6px}

/* --- gövde --- */
.prj-ozet{font-size:14.5px;line-height:1.62;color:#3d4147;margin-top:11px}
.prj-hiz{list-style:none;display:flex;flex-wrap:wrap;gap:6px;margin-top:16px}
.prj-hiz li{font-size:11.5px;font-weight:500;color:#3f52d9;background:#eef1ff;
  border-radius:999px;padding:5px 12px}
.prj-detay{font-size:12.8px;line-height:1.72;color:#9aa0a6;margin-top:16px;
  padding-top:16px;border-top:1px solid #f4f4f4}

/* veri girilmemiş kartlar boş görünmesin diye tasarlanmış yer tutucu */
.prj-hazir{margin-top:14px;border:1px dashed #e6e6e6;border-radius:14px;
  padding:16px 18px;background:#fbfbfc}
.prj-hazir-t{display:inline-flex;align-items:center;gap:7px;font-size:10px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;color:#a8adb3}
.prj-hazir-t::before{content:"";width:6px;height:6px;border-radius:50%;background:#c9ced4;
  animation:pulseDot 1.8s ease-in-out infinite}
.prj-hazir p{margin-top:9px;font-size:12.8px;line-height:1.7;color:#a8adb3}

/* --- alt şerit --- */
.prj-foot{margin-top:auto;padding-top:20px;display:flex;align-items:center;
  justify-content:space-between;gap:12px}
.prj-git{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:12.5px;font-weight:500;color:#3f52d9;
  transition:translate .22s cubic-bezier(.16,1,.3,1)}
a.prj-git:hover{translate:3px 0}
.prj-git-yok{color:#c2c6ca;font-weight:400}
.prj-yil{font-size:11px;font-weight:600;color:#9aa0a6;background:#f6f7f8;
  border-radius:6px;padding:4px 9px;font-variant-numeric:tabular-nums;flex:none}

/* yakında olanlar bir tık geride dursun */
.prj.is-soon{border-style:dashed;border-color:#e4e4e4;background:#fdfdfe}
.prj.is-soon:hover{border-style:solid;border-color:#e6e6e6}
.prj.is-soon .prj-mark{opacity:.86}

.prj-bos{text-align:center;font-size:13.5px;color:#9aa0a6;margin-top:34px}

@media (max-width:520px){
  .prj{padding:22px 20px 20px}
  .prj h3{font-size:21px}
  .prj-foot{flex-wrap:wrap;gap:8px}
}

@media (prefers-reduced-motion:reduce){
  .prj-hazir-t::before{animation:none}
}

@supports (animation-timeline:view()){
 @media (prefers-reduced-motion:no-preference){
  .prj{animation:riseIn auto linear both;animation-timeline:view();
    animation-range:cover 10vh cover 32vh}
 }
}

/* ==================================================================
   HABER YAZILIMI — TEMALAR
   Önizlemeler şematik çizimdir (gerçek ekran görüntüsü değil): blok
   oranlarıyla temaların yerleşim farkını gösterir.
   ================================================================== */
.temagrid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,250px),1fr));
  gap:18px;margin-top:44px}

.tema{display:flex;flex-direction:column;border:1px solid #f0f0f0;border-radius:18px;
  background:#fff;padding:16px 16px 20px;
  transition:translate .28s cubic-bezier(.16,1,.3,1),box-shadow .28s ease,border-color .2s ease}
.tema:hover{translate:0 -5px;box-shadow:0 18px 44px rgba(20,20,43,.09);
  border-color:color-mix(in srgb,var(--t) 30%, #eeeeee)}
.tema h3{font-family:"Poppins",sans-serif;font-size:16.5px;font-weight:600;
  letter-spacing:-.018em;color:#111214;margin-top:16px;display:flex;align-items:center;gap:8px}
.tema h3::before{content:"";width:8px;height:8px;border-radius:3px;background:var(--t);flex:none}
.tema > p{font-size:12.8px;line-height:1.68;color:#7a7f85;margin-top:8px}

.tema-oz{list-style:none;display:flex;flex-direction:column;gap:6px;margin-top:14px;
  padding-top:14px;border-top:1px solid #f4f4f4}
.tema-oz li{position:relative;padding-left:17px;font-size:12.2px;line-height:1.5;color:#5f6368}
.tema-oz li::before{content:"";position:absolute;left:0;top:6px;width:9px;height:5px;
  border-left:1.6px solid var(--t);border-bottom:1.6px solid var(--t);rotate:-45deg}

.tema-demo{margin-top:auto;padding-top:16px;font-size:12.5px;font-weight:500;color:var(--t);
  transition:translate .22s cubic-bezier(.16,1,.3,1)}
.tema-demo:hover{translate:3px 0}

/* ---------- şematik önizleme ---------- */
/* aspect-ratio içerik tarafından aşılıp kutular farklı boylara gidiyordu;
   sabit yükseklik + küçültülebilir bloklarla dördü de aynı ölçüde. */
.tema-on{height:168px;border-radius:12px;background:#fafbfc;border:1px solid #f2f2f2;
  padding:10px;display:flex;flex-direction:column;gap:5px;overflow:clip}
.tema-on > *{min-height:0;flex-shrink:1}
.tema-on span{flex:1;min-height:0}
.tema-on i,.tema-on b{display:block;background:#e4e7ea;border-radius:2px}
.tema-on span{display:flex;gap:5px}
.tema-on .tw-h{height:6px;flex:none;background:var(--t);opacity:.75;border-radius:2px} /* logo şeridi */
.tema-on .tw-b{flex:1;background:color-mix(in srgb,var(--t) 22%, #e4e7ea)}     /* manşet */
.tema-on .tw-b1{min-height:44%}
.tema-on .tw-b2{min-height:38%}
.tema-on .tw-s{flex:1;height:14px}                                            /* sürmanşet */
.tema-on .tw-r{flex:1;height:7px;flex-shrink:0}                               /* satır */
.tema-on .tw-g{flex:1;min-height:0}                                       /* ızgara kutusu */
.tema-on .tw-t{height:5px;flex:none}
.tema-on .tw-t2{width:64%}
.tema-on .tw-l{align-items:stretch;gap:6px;flex:1;min-height:0}               /* liste satırı */
.tema-on .tw-tn{width:26%;flex:none;align-self:stretch}
.tema-on .tw-l b{flex:1;background:transparent;display:flex;flex-direction:column;
  justify-content:center;gap:4px}
.tema-on .tw-l b i{height:4px}
.tema-on .tw-l b i:last-child{width:58%}

/* ---------- kendi tasarımınız bandı ---------- */
.tema-not{display:flex;align-items:center;gap:26px;flex-wrap:wrap;margin-top:22px;
  border:1px solid #eef1ff;border-radius:18px;padding:24px 26px;
  background:linear-gradient(180deg,#fbfcff 0%,#ffffff 100%)}
.tema-not h3{font-family:"Poppins",sans-serif;font-size:16.5px;font-weight:600;
  letter-spacing:-.018em;color:#111214}
.tema-not p{font-size:13px;line-height:1.7;color:#7a7f85;margin-top:7px;max-width:62ch}
.tema-not .btn-sm-dark{margin-left:auto;flex:none}

@media (max-width:620px){
  .tema-not{padding:22px 20px}
  .tema-not .btn-sm-dark{margin-left:0;width:100%;text-align:center}
}

@supports (animation-timeline:view()){
 @media (prefers-reduced-motion:no-preference){
  .tema,.tema-not{animation:riseIn auto linear both;animation-timeline:view();
    animation-range:cover 10vh cover 32vh}
 }
}

/* ---------- ag durumu: gercek olcum eklentileri ---------- */
.upbar i.bos{background:#f0f1f3}          /* o gun olcum yok */
.sdot.down{background:#e8232a}
.sdot.unknown{background:#c9ced4}
.svc-ms{font-style:normal;font-size:11.5px;color:#a8adb3;margin-left:6px;
  font-variant-numeric:tabular-nums}
.dd-tag.ok i{background:#17a866}
.ddos-card[data-olay-kart]:not(.alarm){border-color:#e9f1ec;
  background:linear-gradient(180deg,#fbfefc,#fff)}
