:root {
  --bg-main: #020617;
  --bg-soft: #020617;
  --accent: #22c55e;
  --accent-soft: #16a34a;
  --danger: #ef4444;
  --border-soft: rgba(148, 163, 184, 0.4);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #0f172a, #020617 60%);
  color: var(--text-main);
  min-height: 100vh;
}

/* Arka plan orbları */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: -1;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(34, 197, 94, 0.4);
  top: -60px;
  left: -40px;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background: rgba(59, 130, 246, 0.35);
  top: 40%;
  right: -60px;
}

.orb-3 {
  width: 240px;
  height: 240px;
  background: rgba(244, 63, 94, 0.3);
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}

/* Container */
.lp-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* NAVBAR */
.lp-navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.78),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-transform: uppercase;
}

.lp-logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.lp-nav-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.lp-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.lp-nav-links a:hover {
  color: #e5e7eb;
  border-bottom-color: rgba(34, 197, 94, 0.5);
}

.lp-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 15px;
}

/* Buttons */
.lp-btn {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.lp-btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ecfdf5;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.6);
}

.lp-btn-secondary {
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
}

.lp-btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* HERO */
.lp-hero {
  padding: 40px 0 32px;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(22, 163, 74, 0.12);
  color: #bbf7d0;
  margin-bottom: 8px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
}

.lp-hero h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.lp-hero-sub {
  margin-top: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-muted);
  min-height: 40px;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.lp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lp-hero-pill {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.5);
  color: var(--text-muted);
}

/* Hero Sağ taraf */
.lp-hero-right {
  position: relative;
}

.lp-hero-card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.lp-hero-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, #1d283a, #020617);
  font-size: 11px;
  color: var(--text-muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot-red {
  background: #f97373;
}
.dot-yellow {
  background: #facc15;
}
.dot-green {
  background: #4ade80;
}

.header-title {
  margin-left: auto;
}

.lp-hero-card-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  padding: 10px;
}

.lp-hero-table {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 11px;
  overflow: hidden;
}

.lp-hero-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 1.3fr;
  padding: 5px 8px;
}

.lp-hero-row-head {
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-muted);
  font-size: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.lp-hero-row:nth-child(2) {
  background: rgba(15, 23, 42, 0.92);
}
.lp-hero-row:nth-child(3) {
  background: rgba(15, 23, 42, 0.88);
}
.lp-hero-row:nth-child(4) {
  background: rgba(15, 23, 42, 0.84);
}
.lp-hero-row:nth-child(5) {
  background: rgba(15, 23, 42, 0.8);
}

.lp-hero-row span {
  white-space: nowrap;
}

.pos {
  color: #4ade80;
}

.neg {
  color: #fca5a5;
}

.sig {
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 10px;
  text-align: center;
}

.sig-strong-buy {
  background: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
}

.sig-buy {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
}

.sig-sell {
  background: rgba(248, 113, 113, 0.18);
  color: #fecaca;
}

.sig-strong-sell {
  background: rgba(248, 113, 113, 0.24);
  color: #fee2e2;
}

/* Sağ mini kısım */
.lp-hero-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-chart-skeleton {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 6px;
  background: radial-gradient(circle at top, #020617, #020617);
  overflow: hidden;
}

.mini-chart-line {
  height: 28px;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.2),
    rgba(59, 130, 246, 0.2)
  );
  border-radius: 999px;
  transform-origin: left;
  animation: chart-pulse 3s ease-in-out infinite;
}

.mini-chart-line:nth-child(2) {
  margin-top: 4px;
  animation-delay: 0.4s;
}

.mini-chart-line:nth-child(3) {
  margin-top: 4px;
  animation-delay: 0.8s;
}

.toast-preview {
  border-radius: 10px;
  padding: 7px 8px;
  font-size: 11px;
  background: rgba(22, 163, 74, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.7);
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.5);
}

.toast-preview-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.toast-preview-body {
  color: #bbf7d0;
}

.hero-tagline {
  font-size: 11px;
  color: var(--text-muted);
}

.lp-hero-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(
    circle at top,
    rgba(34, 197, 94, 0.2),
    transparent 60%
  );
  filter: blur(16px);
  z-index: 1;
  pointer-events: none;
}

/* Scroll sections */
.lp-section {
  padding: 28px 0;
}

.lp-section-alt {
  background: radial-gradient(circle at top, #020617, #020617 60%);
}

.section-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 18px;
}

.section-header h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.section-header p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* Özellikler */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 12px 12px 10px;
  font-size: 13px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(34, 197, 94, 0.14),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Lucide ikon tarzı */
.lp-icon {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
  color: #e5e7eb;
  filter: drop-shadow(0 0 8px rgba(148, 163, 184, 0.3));
  transition: transform 0.25s ease-out, filter 0.25s ease-out, color 0.25s ease-out;
}

/* Renk varyantları */
.lp-icon-green {
  color: #22c55e;
}
.lp-icon-blue {
  color: #38bdf8;
}
.lp-icon-purple {
  color: #a855f7;
}
.lp-icon-amber {
  color: #fbbf24;
}

/* Hover animasyonu */
.feature-card:hover .lp-icon,
.persona-card:hover .lp-icon {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.8));
}

/* Hafif nefes animasyonu */
.lp-icon {
  animation: icon-breathe 4s ease-in-out infinite;
}

.feature-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.feature-card p {
  margin: 0 0 5px;
  font-size: 12px;
  color: var(--text-muted);
}

.feature-card ul {
  margin: 0;
  padding-left: 16px;
  font-size: 11px;
  color: #cbd5f5;
}

.feature-card li {
  margin-bottom: 2px;
}

/* Nasıl Çalışır */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 12px 12px 10px;
  font-size: 13px;
  position: relative;
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 4px;
}

/* Persona */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.persona-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 12px 12px 10px;
  font-size: 13px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

.persona-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.95);
}

.persona-icon {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 10px 12px 9px;
  font-size: 13px;
}

.faq-item h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.faq-item p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* Footer */
.lp-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 10px 0 16px;
  background: rgba(15, 23, 42, 0.96);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-dot {
  opacity: 0.6;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-right a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
}

.footer-right a:hover {
  color: #e5e7eb;
}

.footer-cta {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typewriter */
.typewriter-cursor::after {
  content: "|";
  margin-left: 2px;
  animation: blink-cursor 1s infinite;
}

/* Animations */
@keyframes blink-cursor {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

@keyframes chart-pulse {
  0%,
  100% {
    transform: scaleX(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes icon-breathe {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-1px);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .lp-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-hero-right {
    order: -1;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid,
  .persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .lp-nav-links {
    display: none;
  }

  .lp-nav-links.open {
    position: absolute;
    top: 44px;
    right: 16px;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    flex-direction: column;
    gap: 8px;
    padding: 8px 10px;
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .lp-nav-toggle {
    display: inline-flex;
  }

  .lp-hero {
    padding-top: 24px;
  }

  .features-grid,
  .steps-grid,
  .persona-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}
