/* Korvyth public homepage — self-hosted Outfit + bundled landing CSS */
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Korvyth Bot — public landing */
:root {
  --lp-bg: #060a12;
  --lp-bg2: #0c1220;
  --lp-bg3: #111827;
  --lp-text: #eef4ff;
  --lp-muted: #8b9cb8;
  --lp-accent: #00e5a0;
  --lp-accent2: #5b8fff;
  --lp-border: rgba(255, 255, 255, 0.08);
  --lp-gradient: linear-gradient(135deg, #00e5a0 0%, #5b8fff 100%);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
  font-size: 16px;
}

a { color: var(--lp-accent2); text-decoration: none; }
a:hover { color: var(--lp-accent); }

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  background: rgba(6, 10, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-border);
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--lp-text);
}

.lp-logo span {
  background: var(--lp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-nav-links a {
  color: var(--lp-muted);
  font-size: 14px;
  font-weight: 500;
}

.lp-nav-links a:hover { color: var(--lp-text); }

.lp-nav-actions {
  display: flex;
  gap: 10px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}

.lp-btn-ghost {
  background: transparent;
  border: 1px solid var(--lp-border);
  color: var(--lp-text);
}

.lp-btn-primary {
  background: var(--lp-gradient);
  color: #060a12;
}

.lp-btn-primary:hover { opacity: 0.92; color: #060a12; }

.lp-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--lp-border);
  background: var(--lp-bg2);
  padding: 8px 0;
  min-height: 42px;
}

.lp-ticker-inner {
  display: flex;
  gap: 28px;
  animation: lp-scroll 40s linear infinite;
  white-space: nowrap;
  font-size: 16px;
}

@keyframes lp-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lp-tick-up { color: #00e5a0; }
.lp-tick-dn { color: #ff4d6d; }

.lp-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  text-align: center;
}

.lp-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 229, 160, 0.1);
  border: 1px solid rgba(0, 229, 160, 0.25);
  color: var(--lp-accent);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.lp-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.lp-hero h1 em {
  font-style: normal;
  background: var(--lp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--lp-muted);
  font-size: 17px;
}

.lp-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.lp-stat {
  padding: 20px;
  background: var(--lp-bg2);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
}

.lp-stat strong {
  display: block;
  font-size: 24px;
  color: var(--lp-accent);
  margin-bottom: 4px;
}

.lp-stat span { font-size: 13px; color: var(--lp-muted); }

.lp-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px;
}

.lp-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.lp-section .lp-sub {
  text-align: center;
  color: var(--lp-muted);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.lp-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.lp-card {
  background: var(--lp-bg2);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 24px;
}

.lp-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--lp-accent);
}

.lp-card p, .lp-card li {
  font-size: 14px;
  color: var(--lp-muted);
}

.lp-card ul { padding-left: 18px; }

.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  counter-reset: step;
}

.lp-step {
  position: relative;
  padding: 24px;
  background: var(--lp-bg2);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
}

.lp-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: rgba(0, 229, 160, 0.35);
  margin-bottom: 8px;
}

.lp-trust {
  background: var(--lp-bg2);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.lp-trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lp-trust-icon {
  font-size: 28px;
  line-height: 1;
}

.lp-trustpilot {
  text-align: center;
}

.lp-tp-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 16px 8px;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.lp-tp-widget {
  min-height: 52px;
}

.lp-tp-powered {
  margin: 10px 0 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-muted, #7d8da6);
}

.lp-tp-cta {
  margin-top: 18px;
}

.lp-tp-review-btn {
  display: inline-flex;
  font-size: 14px;
  border-color: rgba(0, 229, 160, 0.35) !important;
  color: var(--lp-accent, #00e5a0) !important;
}

.lp-tp-fallback-card {
  padding: 8px 0 4px;
}

.lp-tp-fallback-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--lp-accent, #00e5a0);
}

.lp-tp-fallback-text {
  margin: 0 0 14px;
  color: var(--lp-muted, #8b9cb8);
}

.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.lp-price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--lp-bg2);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.lp-price-card .lp-price-cta {
  margin-top: auto;
  padding-top: 14px;
}

.lp-price-card .lp-price-cta .lp-btn {
  width: 100%;
}

.lp-price-card .kv-usd-equiv {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-muted, #8b9cb8);
  margin-top: 4px;
}

.lp-price-card.featured {
  border-color: rgba(0, 229, 160, 0.4);
  box-shadow: 0 0 40px rgba(0, 229, 160, 0.08);
}

.lp-price {
  font-size: 32px;
  font-weight: 800;
  margin: 12px 0;
}

.lp-faq details {
  background: var(--lp-bg2);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 16px 20px;
}

.lp-faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.lp-faq summary::-webkit-details-marker { display: none; }

.lp-faq p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--lp-muted);
}

.lp-risk {
  background: rgba(255, 77, 109, 0.08);
  border: 1px solid rgba(255, 77, 109, 0.25);
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 14px;
  color: #ffb4c0;
  max-width: 900px;
  margin: 0 auto;
}

.lp-footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--lp-border);
  color: var(--lp-muted);
  font-size: 16px;
}

.lp-footer a { margin: 0 8px; }

.lp-byline, .lp-cite, .lp-share {
  margin-top: 12px;
  font-size: 15px;
}

.lp-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}

.kv-profit-calc-mount {
  min-height: 240px;
}

#yorumlar,
.lp-trustpilot {
  min-height: 168px;
}

.lp-tp-widget {
  min-height: 52px;
}

@media (max-width: 768px) {
  .lp-nav-links { display: none; }
  .lp-hero { padding: 40px 18px 36px; }
  .lp-hero p { font-size: 15.5px; }
  .lp-section { padding: 40px 18px; }
  .lp-section h2 { font-size: 23px; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lp-stat { padding: 16px; }
  .lp-stat strong { font-size: 21px; }
  .lp-hero-actions .lp-btn { flex: 1 1 auto; }
  .lp-risk, .lp-card { padding: 18px; }
  .lp-trust-grid,
  .lp-grid-4,
  .lp-price-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 420px) {
  .lp-stats { grid-template-columns: 1fr 1fr; }
  .lp-hero h1 { font-size: clamp(26px, 8vw, 34px); }
  .lp-ticker-inner { font-size: 16px; gap: 18px; }
  .lp-footer a { display: inline-block; margin: 4px 6px; }
}

/* Sticky trial banner */
.lp-trial-banner {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 10px 16px;
  background: linear-gradient(90deg, rgba(0, 229, 160, 0.18), rgba(91, 143, 255, 0.12));
  border-bottom: 1px solid rgba(0, 229, 160, 0.35);
  color: var(--lp-text);
  font-size: 13px;
  text-decoration: none;
}
.lp-trial-banner:hover { color: var(--lp-text); opacity: 0.95; }
.lp-trial-banner-text strong { color: var(--lp-accent); }
.lp-trial-banner-cta {
  font-weight: 700;
  color: var(--lp-accent);
  white-space: nowrap;
}

/* Binance setup modal */
body.lp-setup-open { overflow: hidden; }
.lp-setup-modal[hidden] { display: none !important; }
.lp-setup-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lp-setup-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.82);
  backdrop-filter: blur(4px);
}
.lp-setup-modal-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(90vh, 640px);
  overflow: auto;
  background: var(--lp-bg2);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 24px 22px 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.lp-setup-modal-x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: transparent;
  color: var(--lp-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.lp-setup-modal-x:hover { color: var(--lp-text); border-color: rgba(0, 229, 160, 0.35); }
.lp-setup-modal-panel h2 { font-size: 20px; margin-bottom: 8px; padding-right: 36px; }
.lp-setup-modal-lead { font-size: 14px; color: var(--lp-muted); margin-bottom: 18px; }
.lp-setup-steps { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-setup-step {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  opacity: 0.45;
  transition: opacity 0.2s, border-color 0.2s;
}
.lp-setup-step.is-active { opacity: 1; border-color: rgba(0, 229, 160, 0.45); background: rgba(0, 229, 160, 0.06); }
.lp-setup-step.is-done { opacity: 0.75; }
.lp-setup-step-n {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  background: var(--lp-gradient);
  color: #060a12;
}
.lp-setup-step p { font-size: 13px; color: var(--lp-muted); margin: 4px 0 0; }
.lp-setup-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.lp-setup-modal-actions .lp-btn { flex: 0 1 auto; width: auto; min-width: 88px; }
/* Korvyth — public site üst menü (tüm sayfalarda görünür sekmeler) */

#kv-public-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  min-height: 96px;
}

.kv-site-header {
  background: rgba(6, 10, 18, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* Sayfa içi header{} stillerinin nav'a bulaşmasını engelle */
header.kv-pub-nav,
.kv-site-header header {
  all: unset;
  display: flex !important;
  box-sizing: border-box;
}

.kv-site-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kv-pub-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  color: #eef4ff;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.kv-pub-logo img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.kv-pub-logo span {
  background: linear-gradient(135deg, #00e5a0, #5b8fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kv-site-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.kv-pub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.kv-pub-btn:hover {
  text-decoration: none;
  opacity: 0.92;
}

.kv-pub-btn-primary {
  background: linear-gradient(135deg, #00e5a0, #5b8fff);
  color: #060a12;
}

.kv-pub-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #eef4ff;
  background: transparent;
}

.kv-pub-btn-panel {
  border: 1px solid rgba(0, 229, 160, 0.45);
  color: #00e5a0;
  background: rgba(0, 229, 160, 0.12);
  box-shadow: 0 0 14px rgba(0, 229, 160, 0.22);
  font-weight: 800;
}

.kv-pub-btn-panel:hover {
  background: rgba(0, 229, 160, 0.2);
}

/* Sekme satırı — geniş ekranda yayılmış, dar ekranda kaydırılabilir */
.kv-site-tabs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  overflow: visible;
}

.kv-site-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex: 1 1 auto;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 4px 2px;
}

.kv-site-tabs::-webkit-scrollbar {
  display: none;
}

.kv-site-tab {
  position: relative;
  box-sizing: border-box;
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: #8b9cb8;
  font-size: 12px;
  font-weight: 700;
  font-family: Outfit, system-ui, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-font-smoothing: antialiased;
  box-shadow: 0 0 10px rgba(91, 143, 255, 0.06);
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.kv-site-tab:hover {
  color: #eef4ff;
  background: rgba(0, 229, 160, 0.08);
  border-color: rgba(0, 229, 160, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 229, 160, 0.2),
    0 0 16px rgba(0, 229, 160, 0.22);
  text-decoration: none;
}

.kv-site-tab.active {
  color: #00e5a0;
  background: rgba(0, 229, 160, 0.12);
  border-color: rgba(0, 229, 160, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 229, 160, 0.25),
    0 0 18px rgba(0, 229, 160, 0.28);
}

.kv-site-tab--panel {
  flex: 0 0 auto;
  min-width: auto;
  color: #00e5a0;
  border-color: rgba(0, 229, 160, 0.4);
  background: rgba(0, 229, 160, 0.1);
}

@media (max-width: 1100px) {
  .kv-site-tabs {
    justify-content: flex-start;
    gap: 6px;
    max-width: none;
  }

  .kv-site-tab {
    flex: 0 0 auto;
    min-width: auto;
    padding: 7px 12px;
  }

  .kv-site-tab--panel {
    flex: 0 0 auto;
  }
}

@media (max-width: 900px) {
  .kv-site-tabs-bar {
    padding: 6px 10px;
  }

  .kv-site-tab {
    font-size: 11px;
    padding: 6px 10px;
  }
}

.kv-pub-lang {
  display: inline-flex;
  align-items: center;
}

.kv-pub-lang {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.kv-pub-lang-btn {
  min-width: 40px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0c1220;
  color: #8b9cb8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  font-family: inherit;
}
.kv-pub-lang-btn:hover {
  color: #eef4ff;
  border-color: rgba(0, 229, 160, 0.35);
}
.kv-pub-lang-btn.active {
  background: rgba(0, 229, 160, 0.14);
  color: #eef4ff;
  border-color: rgba(0, 229, 160, 0.45);
}

@media (max-width: 640px) {
  .kv-site-top {
    padding: 6px 10px;
    flex-wrap: wrap;
  }

  .kv-site-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 100%;
  }

  .kv-pub-logo {
    font-size: 14px;
  }

  .kv-pub-btn {
    padding: 7px 10px;
    font-size: 11px;
  }

  .kv-site-tab {
    font-size: 11px;
    padding: 6px 10px;
  }
}
/* Korvyth — public getiri hesaplayıcı */
.kv-pc-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.kv-pc-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--bg2, #0c1220);
  border: 1px solid var(--b0, rgba(255, 255, 255, 0.08));
  border-radius: 18px;
  padding: 28px;
}
@media (max-width: 768px) {
  .kv-pc-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.kv-pc-field {
  margin-bottom: 24px;
}
.kv-pc-field:last-child {
  margin-bottom: 0;
}
.kv-pc-field label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--t0, #eef4ff);
  margin-bottom: 12px;
}
.kv-pc-val {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 14px;
  color: var(--brand, #00e5a0);
  font-weight: 700;
}
.kv-pc-field-note {
  font-size: 12px;
  line-height: 1.55;
  color: var(--t1, #8b9cb8);
  margin: 10px 0 0;
}
.kv-pc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  cursor: pointer;
}
.kv-pc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5a0, #00c4ff);
  border: 2px solid #0c1220;
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.25);
  cursor: grab;
  transition: box-shadow 0.15s, transform 0.15s;
}
.kv-pc-range:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.08);
  box-shadow: 0 0 0 5px rgba(0, 229, 160, 0.35);
}
.kv-pc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5a0, #00c4ff);
  border: 2px solid #0c1220;
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.25);
  cursor: grab;
}
.kv-pc-range::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
/* Segmented volatilite seçici */
.kv-pc-vol-group {
  display: flex;
  gap: 0;
  padding: 4px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.kv-pc-vol-btn {
  flex: 1;
  position: relative;
  border: none;
  border-radius: 10px;
  padding: 11px 4px;
  cursor: pointer;
  text-align: center;
  color: var(--t1, #8b9cb8);
  background: transparent;
  font-family: inherit;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  min-width: 0;
}
.kv-pc-vol-btn:hover:not(.active) {
  color: var(--t0, #eef4ff);
  background: rgba(255, 255, 255, 0.05);
}
.kv-pc-vol-btn.active {
  color: #060a12;
  background: linear-gradient(135deg, #00e5a0 0%, #00c4ff 100%);
  box-shadow: 0 4px 14px rgba(0, 229, 160, 0.35);
}
.kv-pc-vol-btn strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: inherit;
}
.kv-pc-vol-btn span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  margin-top: 2px;
  opacity: 0.75;
  color: inherit;
}
.kv-pc-vol-btn.active span {
  opacity: 0.85;
}
@media (max-width: 480px) {
  .kv-pc-vol-btn {
    padding: 10px 6px;
  }
  .kv-pc-vol-btn span {
    display: none;
  }
}
/* Sonuç paneli */
.kv-pc-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 4px 0;
  min-height: 220px;
}
.kv-pc-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t1, #8b9cb8);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.22);
}
.kv-pc-source-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e5a0;
  box-shadow: 0 0 8px rgba(0, 229, 160, 0.8);
  animation: kv-pc-pulse 2s ease-in-out infinite;
}
@keyframes kv-pc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.kv-pc-pending-msg {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: var(--t1, #8b9cb8);
  padding: 20px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}
.kv-pc-results.is-pending .kv-pc-pending-msg {
  display: flex;
}
.kv-pc-results.is-pending .kv-pc-kpi-grid,
.kv-pc-results.is-pending .kv-pc-live {
  display: none;
}
.kv-pc-kpi-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kv-pc-kpi {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 14px;
}
.kv-pc-kpi:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.kv-pc-kpi-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t1, #8b9cb8);
  margin-bottom: 6px;
}
.kv-pc-kpi-val {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--brand, #00e5a0);
  line-height: 1.2;
  transition: opacity 0.2s;
}
.kv-pc-kpi-val.muted {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--t0, #eef4ff);
}
.kv-pc-results.is-loading .kv-pc-kpi-val {
  opacity: 0.45;
}
.kv-pc-live {
  font-size: 12px;
  color: var(--t1, #8b9cb8);
  line-height: 1.55;
  padding-top: 4px;
}
.kv-pc-disclaimer {
  font-size: 12px;
  color: var(--t1, #8b9cb8);
  margin-top: 16px;
  line-height: 1.55;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.kv-pc-loading {
  color: var(--t1, #8b9cb8);
  font-size: 14px;
  padding: 24px;
  text-align: center;
}
.kv-pc-cta {
  text-align: center;
  margin-top: 20px;
}
.lp-section .kv-pc-panel {
  background: var(--lp-bg2, #0c1220);
  border-color: var(--lp-border, rgba(255, 255, 255, 0.08));
}
