/* 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; }

body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
}

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;
}

.lp-ticker-inner {
  display: flex;
  gap: 28px;
  animation: lp-scroll 40s linear infinite;
  white-space: nowrap;
  font-size: 13px;
}

@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: 12px;
  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-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.lp-price-card {
  background: var(--lp-bg2);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.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: 13px;
}

.lp-footer a { margin: 0 8px; }

@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; }
}

@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: 12px; gap: 18px; }
  .lp-footer a { display: inline-block; margin: 4px 6px; }
}
