:root {
  --bg: #080514;
  --bg2: #0e0b1f;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.09);
  --purple: #8b5cf6;
  --purple-d: #6d28d9;
  --magenta: #ec4899;
  --cyan: #22d3ee;
  --green: #34d399;
  --text: #f4f2fb;
  --muted: #9c95b6;
  --radius: 22px;
  --grad: linear-gradient(120deg, #a78bfa 0%, #ec4899 60%, #22d3ee 120%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(124, 58, 237, 0.35), transparent 70%),
    radial-gradient(50% 50% at 100% 10%, rgba(236, 72, 153, 0.22), transparent 70%),
    radial-gradient(60% 60% at 50% 100%, rgba(34, 211, 238, 0.12), transparent 70%),
    var(--bg);
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
}
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.brand img { height: 38px; display: block; }
.brand-name { font-weight: 800; font-size: 18px; color: #fff; letter-spacing: -.01em; }
@media (max-width: 520px) { .brand-name { display: none; } }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, #7c3aed, #ec4899);
  box-shadow: 0 10px 30px -8px rgba(236, 72, 153, .55), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.btn-primary:hover { box-shadow: 0 14px 38px -8px rgba(236, 72, 153, .7); transform: translateY(-2px); }
.btn-outline {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.btn-ghost {
  color: #fff !important;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 20px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }

/* HERO */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--magenta);
  background: rgba(236, 72, 153, .1);
  border: 1px solid rgba(236, 72, 153, .25);
  padding: 7px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}
.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 0 rgba(236, 72, 153, .7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(236,72,153,.6); }
  70% { box-shadow: 0 0 0 10px rgba(236,72,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,72,153,0); }
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 76px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 22px 0 18px;
}
.lede { font-size: 19px; color: var(--muted); max-width: 480px; }
.cta-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }
.trust { display: flex; gap: 22px; margin-top: 26px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }

/* PHONE */
.hero-phone { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 280px;
  border-radius: 44px;
  padding: 10px;
  background: linear-gradient(160deg, #2a2440, #120f24);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 90px -30px rgba(124,58,237,.6), 0 0 0 1px rgba(0,0,0,.4);
  z-index: 2;
}
.phone img { width: 100%; border-radius: 36px; display: block; }
.phone-notch {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #000; border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-glow {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(236,72,153,.35), transparent 65%);
  filter: blur(30px);
  z-index: 1;
}

/* FEATURES */
.features { max-width: 1180px; margin: 0 auto; padding: 40px 24px 60px; }
.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 44px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s, border-color .2s, background .2s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(167,139,250,.4); background: rgba(255,255,255,.06); }
.card-ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 24px;
  border-radius: 15px;
  margin-bottom: 18px;
}
.ic-purple { background: rgba(124,58,237,.18); }
.ic-magenta { background: rgba(236,72,153,.18); }
.ic-cyan { background: rgba(34,211,238,.15); }
.ic-green { background: rgba(52,211,153,.15); }
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* INSTALL */
.install { max-width: 1180px; margin: 0 auto; padding: 50px 24px 70px; }
.install-card {
  background: linear-gradient(160deg, rgba(124,58,237,.14), rgba(236,72,153,.08));
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
}
.install-sub { color: var(--muted); margin-bottom: 34px; font-size: 17px; }
.apk-box { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); }
.apk-btn { background: linear-gradient(120deg, #34d399, #22d3ee) !important; color: #07221c !important; }
.apk-btn:hover { box-shadow: 0 14px 38px -8px rgba(52, 211, 153, .6) !important; }
.apk-size { font-size: 12px; font-weight: 700; background: rgba(0,0,0,.22); padding: 3px 9px; border-radius: 100px; }
.apk-note { color: var(--muted); font-size: 13px; margin: 12px auto 0; max-width: 540px; line-height: 1.6; }
.apk-note b { color: var(--text); }
.apk-ios { opacity: .85; }
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: left;
}
.step {
  background: rgba(0,0,0,.25);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
}
.step-os { display: block; font-weight: 700; margin-bottom: 12px; color: var(--cyan); font-size: 15px; }
.step ol { padding-left: 20px; color: var(--muted); }
.step li { margin: 6px 0; }
.step b { color: var(--text); }

/* SHARE */
.share { max-width: 1180px; margin: 0 auto; padding: 10px 24px 60px; }
.share-card {
  background: linear-gradient(160deg, rgba(34,211,238,.1), rgba(124,58,237,.1));
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 46px 30px;
  text-align: center;
}

/* FOOTER */
.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 24px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { max-width: 320px; }
.footer-brand img { height: 32px; margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.copy { width: 100%; color: var(--muted); font-size: 13px; opacity: .7; }

/* iOS HINT */
.ios-hint {
  position: fixed;
  left: 50%; bottom: 24px; transform: translateX(-50%) translateY(140%);
  background: #18142b;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.7);
  transition: transform .35s ease;
  z-index: 50;
  max-width: 92vw;
}
.ios-hint.show { transform: translateX(-50%) translateY(0); }
.ios-hint p { font-size: 14px; }
.ios-hint button {
  background: var(--grad); color: #fff; border: none; cursor: pointer;
  padding: 9px 16px; border-radius: 100px; font-weight: 700; font-family: inherit;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 20px; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .lede { margin: 0 auto; }
  .cta-row, .trust { justify-content: center; }
  .hero-phone { margin-top: 30px; }
  .grid { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.btn-ghost) { display: none; }
}
@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .btn { font-size: 15px; padding: 13px 22px; }
  .footer { flex-direction: column; align-items: flex-start; }
}

/* ── Tanıtım sayfası genişletmeleri ───────────────────────────────────────── */
.section-sub { color: var(--muted); text-align: center; max-width: 640px; margin: -28px auto 42px; font-size: 17px; line-height: 1.6; }
.phone.small { width: 224px; }

/* feature rows */
.rows { max-width: 1080px; margin: 0 auto; padding: 20px 24px; }
.row { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; padding: 46px 0; border-top: 1px solid var(--border); }
.row.reverse .row-text { order: 2; }
.row.reverse .row-img { order: 1; }
.kicker { font-size: 12px; font-weight: 800; letter-spacing: .16em; color: var(--cyan); }
.row-text h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -.02em; margin: 10px 0 14px; }
.row-text > p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.row-img { display: flex; justify-content: center; }
.ticks { list-style: none; padding: 0; margin: 16px 0 0; }
.ticks li { color: var(--text); font-size: 15px; padding: 6px 0 6px 28px; position: relative; }
.ticks li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chips span { background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 7px 13px; font-size: 13px; font-weight: 600; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.mini { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.mini b { display: block; margin-bottom: 4px; font-size: 14px; }
.mini span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.row.roles { grid-template-columns: 1fr; }
.role-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.role { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 24px; text-align: center; }
.role-ic { width: 54px; height: 54px; margin: 0 auto 12px; display: grid; place-items: center; font-size: 26px; border-radius: 15px; }
.role h4 { font-size: 18px; margin: 0 0 6px; }
.role p { color: var(--muted); font-size: 14px; }

/* gallery */
.gallery { max-width: 1100px; margin: 0 auto; padding: 44px 24px; text-align: center; }
.shots { display: flex; gap: 18px; overflow-x: auto; padding: 14px 4px 22px; justify-content: flex-start; scroll-snap-type: x mandatory; }
.shots .phone { flex: 0 0 auto; scroll-snap-align: center; }

/* download PWA vs APK */
.download { max-width: 1080px; margin: 0 auto; padding: 50px 24px; }
.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dl-card { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 30px; }
.dl-card.dl-apk { background: linear-gradient(160deg, rgba(52,211,153,.1), rgba(34,211,238,.06)); }
.dl-badge { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .08em; padding: 6px 12px; border-radius: 100px; margin-bottom: 14px; }
.badge-pwa { background: rgba(124,58,237,.22); color: #c4b5fd; }
.badge-apk { background: rgba(52,211,153,.2); color: #6ee7b7; }
.dl-card h3 { font-size: 22px; margin: 0 0 8px; }
.dl-card > p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.dl-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 14px; }
.os-steps { display: flex; flex-direction: column; gap: 6px; color: var(--muted); font-size: 13px; }
.os-steps b { color: var(--text); }

/* footer revamp */
.footer { display: block !important; }
.footer-top { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; }
.footer-cols { display: flex; gap: 50px; flex-wrap: wrap; }
.fcol { display: flex; flex-direction: column; gap: 9px; }
.fcol h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin: 0 0 4px; }
.fcol a { color: var(--muted); text-decoration: none; font-size: 14px; }
.fcol a:hover { color: var(--text); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--border); }
.footer-bottom .copy { width: auto; }
.footer-bottom .dev { color: var(--muted); font-size: 13px; }

/* cookie banner */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; max-width: 780px; margin: 0 auto; background: #15112a; border: 1px solid var(--border); border-radius: 18px; padding: 16px 18px; display: none; align-items: center; gap: 16px; box-shadow: 0 20px 50px -10px rgba(0,0,0,.7); z-index: 60; flex-wrap: wrap; }
.cookie.show { display: flex; }
.cookie p { font-size: 14px; color: var(--muted); flex: 1; min-width: 220px; margin: 0; }
.cookie p a { color: var(--cyan); }
.cookie-actions { display: flex; gap: 8px; }
.cookie .btn { padding: 10px 18px; font-size: 14px; }

@media (max-width: 860px) {
  .row, .row.reverse { grid-template-columns: 1fr; gap: 24px; }
  .row.reverse .row-text, .row.reverse .row-img { order: 0; }
  .dl-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .role-cards { grid-template-columns: 1fr; }
  .shots { justify-content: flex-start; }
}

/* ── Yasal sayfalar ──────────────────────────────────────────────────────── */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 24px 24px 80px; }
.legal-content h1 { font-size: clamp(28px, 5vw, 40px); font-weight: 800; margin: 8px 0 6px; letter-spacing: -.02em; }
.legal-content .updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.legal-content h2 { font-size: 21px; font-weight: 700; margin: 32px 0 10px; }
.legal-content h3 { font-size: 17px; font-weight: 700; margin: 20px 0 8px; }
.legal-content p, .legal-content li { color: #d8d4e8; font-size: 15px; line-height: 1.8; }
.legal-content ul { padding-left: 22px; margin: 8px 0; }
.legal-content li { margin: 5px 0; }
.legal-content a { color: var(--cyan); }
.legal-content strong { color: #fff; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 18px; }
.legal-back:hover { color: var(--text); }
.legal-box { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; margin: 18px 0; }

/* dekoratif satır görseli (ekran görseli yerine) */
.row-visual {
  width: 230px; height: 290px; border-radius: 34px;
  display: grid; place-items: center; font-size: 108px;
  background: linear-gradient(160deg, rgba(124,58,237,.28), rgba(34,211,238,.12));
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -30px rgba(124,58,237,.55);
}

/* dekoratif görseli telefon formuna getir */
.row-visual {
  width: 224px; height: 410px; border-radius: 42px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  font-size: inherit;
  background: linear-gradient(160deg, rgba(124,58,237,.32), rgba(34,211,238,.1));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 90px -30px rgba(124,58,237,.6), 0 0 0 1px rgba(0,0,0,.3) inset;
  padding: 24px;
}
.rv-emoji { font-size: 92px; line-height: 1; }
.rv-cap { color: #fff; font-weight: 700; font-size: 15px; text-align: center; opacity: .92; }
@media (max-width: 860px) { .row-visual { height: 320px; } }

/* ── App screen mockups (pure CSS, no screenshots) ───────────────────────── */
.shot { display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 0 0 auto; scroll-snap-align: center; }
.shot-cap { font-size: 13px; color: var(--muted); font-weight: 600; }

.mock {
  position: relative; width: 100%; aspect-ratio: 1000 / 2060;
  border-radius: 36px; overflow: hidden;
  background: linear-gradient(180deg, #0c0a1a, #09071a);
  padding: 34px 12px 11px; display: flex; flex-direction: column; gap: 8px;
  font-size: 10.5px; color: #e8e5f5; text-align: left;
}
.phone.small .mock { font-size: 8.6px; padding: 28px 9px 9px; border-radius: 30px; gap: 6px; }

.m-top { display: flex; align-items: center; justify-content: space-between; }
.m-top.dark { gap: 8px; justify-content: flex-start; }
.m-h { font-weight: 800; font-size: 14px; }
.m-h.sm { font-size: 11px; }
.m-back { font-size: 14px; }
.m-tools { font-size: 11px; color: var(--muted); letter-spacing: 2px; }
.m-tools b { color: #c4b5fd; font-size: 12px; }
.m-cta { text-align: center; font-weight: 800; font-size: 11px; padding: 11px; border-radius: 100px;
  background: var(--grad); color: #190f2e; }
.m-cta.danger { background: rgba(236,72,153,.12); color: #ff7a98; border: 1px solid rgba(236,72,153,.45); }
.m-nav { display: flex; justify-content: space-around; border-top: 1px solid var(--border);
  padding-top: 8px; margin-top: 4px; font-size: 9px; color: var(--muted); }
.m-nav .on { color: #c4b5fd; font-weight: 700; }

/* radar */
.mock-radar .radar { position: relative; flex: 1; min-height: 150px; display: grid; place-items: center; }
.ring { position: absolute; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; }
.r1 { width: 150px; height: 150px; } .r2 { width: 104px; height: 104px; } .r3 { width: 60px; height: 60px; }
.sweep { position: absolute; width: 152px; height: 152px; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(168,85,247,.55), rgba(168,85,247,.05) 70deg, transparent 110deg);
  animation: radarspin 2.8s linear infinite; }
@keyframes radarspin { to { transform: rotate(360deg); } }
.core { position: absolute; width: 52px; height: 52px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #f9a8d4, #a855f7);
  box-shadow: 0 0 28px rgba(236,72,153,.6); }
.note { position: absolute; font-size: 12px; color: rgba(255,255,255,.5); }
.note.a { top: 12%; left: 28%; } .note.b { top: 26%; right: 16%; color: rgba(236,72,153,.7); }
.note.c { bottom: 24%; left: 18%; color: rgba(236,72,153,.7); } .note.d { bottom: 16%; right: 24%; }
.m-scan { text-align: center; font-weight: 800; font-size: 13px; }
.m-mut { text-align: center; color: var(--muted); font-size: 9.5px; margin-top: -4px; }

/* feed */
.mock-feed .m-chips { display: flex; gap: 5px; overflow: hidden; }
.m-chips .c { font-size: 9px; padding: 5px 9px; border-radius: 100px; white-space: nowrap;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted); }
.m-chips .c.on { background: rgba(124,58,237,.32); color: #fff; border-color: transparent; }
.feed { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; flex: 1; }
.fitem { display: flex; align-items: center; gap: 8px; }
.fitem > div { display: flex; flex-direction: column; }
.fitem b { font-size: 10.5px; } .fitem span { font-size: 8px; color: var(--muted); }
.av { width: 26px; height: 26px; border-radius: 50%; flex: 0 0 auto;
  background: radial-gradient(circle at 30% 30%, #22d3ee, #6d28d9); }
.av.big { width: 34px; height: 34px; box-shadow: 0 0 0 2px rgba(236,72,153,.7); }
.fitem.hot { background: rgba(124,58,237,.16); border: 1px solid rgba(236,72,153,.5);
  border-radius: 14px; padding: 6px 8px; }

/* map */
.mock-map .map { position: relative; flex: 1; min-height: 160px; border-radius: 14px; overflow: hidden;
  background-color: #d9dee3;
  background-image:
    repeating-linear-gradient(52deg, rgba(255,255,255,.7) 0 2px, transparent 2px 24px),
    repeating-linear-gradient(-18deg, rgba(165,175,186,.55) 0 2px, transparent 2px 30px),
    repeating-linear-gradient(110deg, rgba(190,198,206,.5) 0 2px, transparent 2px 38px); }
.mock-map .pin { position: absolute; top: 40%; left: 45%; font-size: 22px;
  filter: drop-shadow(0 4px 4px rgba(0,0,0,.4)); }
.sheet { background: #0e0b1f; border: 1px solid var(--border); border-radius: 16px; padding: 10px;
  display: flex; flex-direction: column; gap: 5px; margin-top: -20px; position: relative; z-index: 2; }
.sheet b { font-size: 12px; } .sheet .sub { font-size: 8.5px; color: var(--muted); }
.seg { display: flex; gap: 6px; }
.seg span { flex: 1; text-align: center; font-size: 9px; padding: 6px; border-radius: 9px;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted); }
.seg .on { background: rgba(34,211,238,.25); color: #a5f3fc; border-color: transparent; }

/* live panel */
.m-tabs { display: flex; gap: 4px; justify-content: space-between; font-size: 8.6px; color: var(--muted);
  border-bottom: 1px solid var(--border); padding-bottom: 7px; }
.m-tabs .on { color: #c4b5fd; font-weight: 700; border-bottom: 2px solid #a855f7; padding-bottom: 5px; }
.live-card { background: linear-gradient(120deg, #7c3aed, #ec4899); border-radius: 16px; padding: 12px;
  display: flex; flex-direction: column; gap: 3px; color: #fff; }
.live-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 8.5px; font-weight: 700;
  background: rgba(255,255,255,.18); padding: 3px 8px; border-radius: 100px; width: fit-content; }
.live-badge .d { width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.timer { font-size: 30px; font-weight: 800; line-height: 1.05; }
.lc-sub { font-size: 9px; opacity: .92; }

/* stat cards (shared by live + analytics) */
.stat2 { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.st { background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 9px 10px; display: flex; flex-direction: column; gap: 2px; }
.st b { font-size: 17px; font-weight: 800; } .st span { font-size: 8.5px; color: var(--muted); }
.st.cyan { border-color: rgba(34,211,238,.4); } .st.mag { border-color: rgba(236,72,153,.4); }
.st.amber { border-color: rgba(245,200,80,.4); }
.pur { color: #c4b5fd; } .cy { color: #22d3ee; } .mg { color: #ec4899; } .am { color: #f5c542; }

/* analytics */
.m-sec { font-size: 10px; font-weight: 700; color: #d8d4e8; margin-top: 2px; }
.best { display: grid; grid-template-columns: auto 1fr auto 1fr; gap: 6px; align-items: center; }
.bp { font-size: 11px; font-weight: 800; background: rgba(124,58,237,.32); color: #fff;
  padding: 5px 9px; border-radius: 8px; text-align: center; }
.bp.cy { background: rgba(34,211,238,.25); color: #a5f3fc; }
.bl { font-size: 9px; color: var(--muted); }
.heat { height: 64px; border-radius: 10px; border: 1px solid var(--border);
  background-color: rgba(124,58,237,.06);
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 8.3%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 14.2%); }

@media (max-width: 860px) { .phone.small .mock { font-size: 9px; } }
