/* TalkAge Landing (tanıtım) — Dispatcher temasıyla uyumlu
   Pure HTML/CSS/JS — deploy: sadece kopyala-yayınla
*/

:root{
  --bg:#0B1220;
  --bg2:#0F1A2E;
  --panel:#0E1830;
  --card:#101D38;
  --stroke:rgba(255,255,255,.08);
  --stroke2:rgba(255,255,255,.12);
  --text:#E8F0FF;
  --muted:rgba(232,240,255,.65);

  --accent:#22D3EE;   /* cyan */
  --accent2:#2DD4BF;  /* teal */
  --good:#22C55E;
  --warn:#F59E0B;
  --bad:#EF4444;

  --shadow: 0 10px 40px rgba(0,0,0,.35);
  --r14:14px;
  --r18:18px;
  --r22:22px;

  --max: 1180px;
}

[data-theme="light"]{
  --bg:#F7FAFF;
  --bg2:#EEF4FF;
  --panel:#FFFFFF;
  --card:#FFFFFF;
  --stroke:rgba(16,24,40,.10);
  --stroke2:rgba(16,24,40,.16);
  --text:#0B1220;
  --muted:rgba(11,18,32,.62);
  --shadow: 0 10px 24px rgba(16,24,40,.10);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1100px 600px at 20% 0%, rgba(34,211,238,.14), transparent 60%),
              radial-gradient(1100px 600px at 90% 20%, rgba(245,158,11,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}

.topbar{
  position:sticky; top:0; z-index:30;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  border-bottom:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(10px);
}

.brand{display:flex; gap:12px; align-items:center;}
.brand.mini{gap:10px}
.logo{
  width:40px; height:40px; border-radius:12px;
  background: radial-gradient(circle at 30% 30%, rgba(34,211,238,.35), rgba(34,211,238,.07) 55%, rgba(0,0,0,.0) 100%);
  border:1px solid var(--stroke);
  display:grid; place-items:center;
  box-shadow: var(--shadow);
}
.logo.sm{width:34px; height:34px; border-radius:12px; box-shadow:none}
.logo img{width:26px; height:26px; opacity:.95}
.logo.sm img{width:22px; height:22px}

.brand-title{font-weight:800; letter-spacing:.2px}
.brand-subtitle{font-size:12px; color:var(--muted); margin-top:2px}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--text);
  border-color:var(--stroke);
  background: rgba(255,255,255,.04);
}
.nav a.pill{
  color:var(--text);
  border-color:rgba(34,211,238,.25);
  background: rgba(34,211,238,.10);
}

.top-actions{display:flex; align-items:center; gap:10px;}

.btn{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
  font-weight:700;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition: transform .08s ease, background .2s ease, border .2s ease;
}
.btn:hover{background: rgba(255,255,255,.10); border-color: var(--stroke2);}
.btn:active{transform: translateY(1px);}
.btn.small{padding:8px 10px; border-radius:12px; font-size:12px; font-weight:800}
.btn.ghost{background: transparent}
.btn.primary{
  border-color: rgba(34,211,238,.25);
  background: linear-gradient(180deg, rgba(34,211,238,.18), rgba(45,212,191,.10));
}
.btn.wide{width:100%; justify-content:center}
.icon{opacity:.95}

.page{
  width:100%;
  margin:0 auto;
}

.hero{
  padding: 40px 18px 10px;
}
.hero-grid{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:start;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:12px;
}
.badge .dot{
  width:8px; height:8px; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(34,211,238,.16);
}

h1{
  font-size:44px;
  line-height:1.1;
  margin:14px 0 10px;
  letter-spacing:-.6px;
}
.grad{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.65;
  max-width: 54ch;
}

.cta{display:flex; gap:10px; align-items:center; margin-top:16px; flex-wrap:wrap}

.trust{
  display:flex;
  gap:10px;
  margin-top:18px;
  flex-wrap:wrap;
}
.trust-item{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:10px 12px;
  min-width: 130px;
}
.kpi{font-weight:900; letter-spacing:.2px}
.kpi-sub{font-size:12px; color:var(--muted); margin-top:2px}

.mock{
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mock-top{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-bottom:1px solid var(--stroke);
}
.mock-dots{display:flex; gap:6px}
.mock-dots span{
  width:10px; height:10px; border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid var(--stroke);
}
.mock-title{font-weight:800; font-size:13px; color:var(--muted); flex:1}
.mock-pill{
  font-weight:900; font-size:11px;
  border:1px solid rgba(34,211,238,.25);
  background: rgba(34,211,238,.10);
  padding:6px 10px;
  border-radius:999px;
  display:flex; gap:8px; align-items:center;
}
.live-dot{width:8px; height:8px; border-radius:999px; background: var(--good); box-shadow:0 0 0 4px rgba(34,197,94,.14)}

.mock-body{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:12px;
  padding:12px;
}
.mock-col{display:flex; flex-direction:column; gap:12px}

.card{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding:14px;
}
.card.small{padding:12px}
.card-h{font-weight:900; margin-bottom:10px}
.card-p{color:var(--muted); line-height:1.6; font-size:13px}
.ico{font-size:20px; margin-bottom:6px}
.list{display:flex; flex-direction:column; gap:8px}
.row{
  display:flex; align-items:center; justify-content:space-between;
  font-size:13px;
  color:var(--muted);
}
.tag{
  font-weight:900;
  color:var(--text);
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.12);
  padding:3px 8px;
  border-radius:999px;
  margin-right:8px;
}
.state{
  font-weight:900; font-size:12px;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.12);
}
.state.ok{color:rgba(34,197,94,.95); border-color:rgba(34,197,94,.25)}
.state.warn{color:rgba(245,158,11,.95); border-color:rgba(245,158,11,.25)}

.timeline{display:flex; flex-direction:column; gap:8px}
.t{display:grid; grid-template-columns: 46px 12px 1fr; gap:10px; align-items:center; color:var(--muted); font-size:12.5px}
.t-time{font-variant-numeric: tabular-nums}
.t-dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(255,255,255,.12);
  border:1px solid var(--stroke);
  position:relative;
}
.t-dot::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:999px;
  border:1px solid rgba(34,211,238,.12);
}
.mock-map{
  border:1px solid var(--stroke);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16,29,56,.40), rgba(16,29,56,.18));
  position:relative;
  overflow:hidden;
  min-height: 300px;
}
.map-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity:.35;
}
.map-hud{
  position:absolute; left:14px; top:14px;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
}
.hud-title{font-weight:900}
.hud-sub{color:var(--muted); font-size:12px; margin-top:2px}
.warn{color:rgba(245,158,11,.95)}
.pin{
  width:12px; height:12px; border-radius:999px;
  background: var(--accent);
  position:absolute;
  box-shadow: 0 0 0 6px rgba(34,211,238,.12);
}
.p1{left:36%; top:52%}
.p2{left:62%; top:36%; background: var(--accent2); box-shadow: 0 0 0 6px rgba(45,212,191,.12)}
.p3{left:70%; top:68%; background: rgba(245,158,11,.95); box-shadow: 0 0 0 6px rgba(245,158,11,.12)}
.ping{
  position:absolute; right:22px; bottom:18px;
  width:120px; height:120px;
  border-radius:999px;
  border:1px solid rgba(34,211,238,.16);
  background: radial-gradient(circle at 50% 50%, rgba(34,211,238,.10), transparent 60%);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse{
  0%{transform: scale(.92); opacity:.65}
  50%{transform: scale(1.02); opacity:1}
  100%{transform: scale(.92); opacity:.65}
}

.mock-bottom{
  border-top:1px solid var(--stroke);
  padding:12px 14px;
  display:flex;
  align-items:center;
  gap:12px;
}
.ptt{
  border:0;
  background: transparent;
  padding:0;
  cursor:pointer;
  position:relative;
}
.ptt-ring{
  position:absolute;
  inset:-8px;
  border-radius: 999px;
  border:1px solid rgba(34,211,238,.18);
  background: radial-gradient(circle at 30% 30%, rgba(34,211,238,.12), transparent 65%);
  filter: blur(.2px);
}
.ptt-core{
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  padding:10px 14px;
  border:1px solid rgba(34,211,238,.22);
  background: linear-gradient(180deg, rgba(34,211,238,.18), rgba(45,212,191,.10));
}
.ptt-text{font-weight:950; letter-spacing:.4px; font-size:12px}
.ptt-icon{font-size:16px}

.mini{flex:1}
.mini-k{font-size:11px; color:var(--muted); font-weight:800; margin-bottom:6px}
.bar{
  height:10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.14);
  overflow:hidden;
}
.bar span{
  display:block;
  height:100%;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.note{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
  padding:10px 12px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.14);
  background: rgba(0,0,0,.10);
}

.section{
  padding: 28px 18px;
}
.section-head{
  max-width: var(--max);
  margin: 0 auto 16px;
}
.section-head h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.3px;
}
.section-head p{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.6;
  max-width: 70ch;
}

.grid-4, .grid-2, .grid-5{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  gap:12px;
}
.grid-4{grid-template-columns: repeat(4, 1fr)}
.grid-2{grid-template-columns: repeat(2, 1fr)}
.grid-5{grid-template-columns: repeat(5, 1fr)}

.strip{
  max-width: var(--max);
  margin: 14px auto 0;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.strip-item{
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:12px;
  background: rgba(0,0,0,.10);
}
.strip-k{font-weight:900}
.strip-v{margin-top:4px; color:var(--muted); font-size:13px; line-height:1.5}

.bullets{
  margin:0; padding-left: 18px; color:var(--muted); line-height:1.8;
}
.bullets li{margin: 2px 0}

.mini-card{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 12px 12px;
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:900;
}
.mini-card span{font-size:18px}

.quote .q{font-weight:900; font-size:16px; line-height:1.55}
.quote .q-sub{margin-top:8px; color:var(--muted); font-size:13px}

.pricing{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.price-card{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  border-radius: 22px;
  padding: 16px;
}
.price-card ul{margin: 10px 0 14px; padding-left: 18px; color:var(--muted); line-height:1.8}
.pc-top{display:flex; justify-content:space-between; align-items:baseline; gap:10px}
.pc-title{font-weight:950; font-size:16px}
.pc-tag{font-size:12px; color:var(--muted)}
.pc-price{font-weight:950; margin-top:10px; font-size:22px}
.price-card.featured{
  border-color: rgba(34,211,238,.25);
  background: linear-gradient(180deg, rgba(34,211,238,.10), rgba(255,255,255,.03));
}

.fine{
  max-width: var(--max);
  margin: 12px auto 0;
  color:var(--muted);
  font-size:12px;
}

.contact{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
}
.form .form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field label{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
  font-weight:800;
}
.field input, .field textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.12);
  color: var(--text);
  padding: 12px 12px;
  outline:none;
  font-size:13px;
}
.field textarea{resize: vertical; min-height: 110px}
.field input:focus, .field textarea:focus{
  border-color: rgba(34,211,238,.25);
  box-shadow: 0 0 0 4px rgba(34,211,238,.10);
}

.form-actions{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top:12px;
  flex-wrap:wrap;
}
.muted{color:var(--muted)}
.small{font-size:12px}
code{
  border:1px solid var(--stroke);
  padding:2px 6px;
  border-radius:8px;
  background: rgba(0,0,0,.10);
}

.side .kv{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap:8px 10px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.kv-k{font-weight:900; color:var(--text)}
.divider{
  height:1px;
  background: var(--stroke);
  margin: 14px 0;
}
.contact-lines{display:flex; flex-direction:column; gap:10px; color:var(--muted)}
.c-ico{display:inline-flex; width:20px}

.footer{
  max-width: var(--max);
  margin: 10px auto 30px;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid var(--stroke);
  color:var(--muted);
}
.foot-right{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.foot-right a{color:var(--muted)}
.foot-right a:hover{color:var(--text)}
.hide-sm{display:inline}

@media (max-width: 1060px){
  .hero-grid{grid-template-columns: 1fr; }
  .mock-body{grid-template-columns: 1fr; }
  .mock-map{min-height: 260px}
  .nav{display:none}
}
@media (max-width: 720px){
  h1{font-size:34px}
  .pricing{grid-template-columns: 1fr}
  .grid-4{grid-template-columns: 1fr 1fr}
  .grid-2{grid-template-columns: 1fr}
  .grid-5{grid-template-columns: 1fr 1fr}
  .strip{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .form .form-row{grid-template-columns: 1fr}
  .hide-sm{display:none}
}
