@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;1,9..40,400&display=swap');

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

:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --border: #1e1e2e;
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.1);
  --blue: #60a5fa;
  --blue-dim: rgba(96, 165, 250, 0.1);
  --red: #f87171;
  --text: #e2e8f0;
  --muted: #64748b;
  --card: #13131c;
  --accent: #3b82f6;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

/* ─── NAV ─────────────────────────────────────────────────────────── */
.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
}

.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.lp-nav-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  position: relative;
  overflow: hidden;
}

.lp-nav-mark::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 5px;
  right: 5px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.lp-nav-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-nav-links a {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.lp-nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 7px 16px !important;
  border-radius: 7px !important;
  transition: background 0.15s, transform 0.1s !important;
  margin-left: 8px;
}

.lp-nav-cta:hover {
  background: #2563eb !important;
  transform: translateY(-1px);
}

/* ─── HERO ────────────────────────────────────────────────────────── */
.lp-hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px 48px 80px;
  position: relative;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: var(--green-dim);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.lp-kicker::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.lp-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 820px;
}

.lp-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  cursor: pointer;
}

.lp-btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  cursor: pointer;
}

.lp-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

/* ─── SECTIONS ────────────────────────────────────────────────────── */
.lp-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 48px;
  border-top: 1px solid var(--border);
}

.lp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.lp-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.lp-section > p,
.lp-section .lp-lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 68ch;
  margin-bottom: 40px;
}

/* ─── CARD GRID ───────────────────────────────────────────────────── */
.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.lp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.lp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  opacity: 0;
  transition: opacity 0.2s;
}

.lp-card:hover {
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.lp-card:hover::before { opacity: 1; }

.lp-card-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.lp-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.lp-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── STAT ROW ────────────────────────────────────────────────────── */
.lp-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin: 40px 0;
}

.lp-stat-block {
  background: var(--card);
  padding: 28px 24px;
  text-align: center;
}

.lp-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.lp-stat-val.green { color: var(--green); }
.lp-stat-val.blue { color: var(--blue); }

.lp-stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── TWO COL ─────────────────────────────────────────────────────── */
.lp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lp-two-col-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.lp-two-col-block p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.lp-two-col-block p:last-child { margin-bottom: 0; }

.lp-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.lp-check-list li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.lp-check-list li::before {
  content: '→';
  color: var(--green);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

/* ─── FAQ ─────────────────────────────────────────────────────────── */
.lp-faq-list {
  display: grid;
  gap: 8px;
}

.lp-faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.lp-faq-item:hover { border-color: rgba(96, 165, 250, 0.2); }

.lp-faq-item summary {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

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

.lp-faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.lp-faq-item[open] summary::after {
  content: '−';
}

.lp-faq-item p {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ─── CTA SECTION ─────────────────────────────────────────────────── */
.lp-cta-section {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}

.lp-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.lp-cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.lp-cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.lp-cta-section h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-cta-section p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.lp-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── RELATED LINKS ───────────────────────────────────────────────── */
.lp-related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.lp-related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.lp-related-link:hover {
  border-color: rgba(96, 165, 250, 0.4);
  color: var(--blue);
  background: var(--blue-dim);
}

.lp-related-link::after {
  content: '→';
  font-size: 11px;
  opacity: 0.6;
}

/* ─── FOOTER ──────────────────────────────────────────────────────── */
.lp-footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-footer-copy {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

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

.lp-footer-links a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.15s;
}

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

/* ─── UTIL ────────────────────────────────────────────────────────── */
.lp-gain { color: var(--green); font-weight: 600; }
.lp-loss { color: var(--red); font-weight: 600; }

.lp-badge {
  display: inline-flex;
  align-items: center;
  background: var(--blue-dim);
  border: 1px solid rgba(96, 165, 250, 0.25);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ─── TABLE ───────────────────────────────────────────────────────── */
.lp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 8px;
}

.lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.lp-table th {
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.lp-table td {
  background: var(--card);
  color: var(--text);
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.lp-table tr:last-child td { border-bottom: none; }

.lp-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}

.lp-table .lp-ticker {
  font-family: 'DM Sans', monospace;
  font-size: 12px;
  color: var(--muted);
  display: block;
  font-weight: 400;
  margin-top: 2px;
}

/* ─── DIVIDER CHIP ────────────────────────────────────────────────── */
.lp-divider-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.lp-divider-label::before,
.lp-divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.lp-divider-label span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  white-space: nowrap;
}

/* ─── HIGHLIGHT BOX ───────────────────────────────────────────────── */
.lp-highlight-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin: 20px 0;
}

.lp-highlight-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 !important;
  max-width: none !important;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-nav { padding: 0 20px; }

  .lp-nav-links a:not(.lp-nav-cta) { display: none; }

  .lp-hero {
    padding: 56px 20px 48px;
  }

  .lp-hero h1 { font-size: clamp(36px, 10vw, 52px); }

  .lp-section {
    padding: 48px 20px;
  }

  .lp-stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lp-card-grid {
    grid-template-columns: 1fr;
  }

  .lp-cta-section { padding: 64px 20px; }

  .lp-footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .lp-stat-row { grid-template-columns: 1fr 1fr; }
  .lp-stat-val { font-size: 32px; }
  .lp-hero-actions { flex-direction: column; align-items: flex-start; }
  .lp-cta-actions { flex-direction: column; }
}
