:root {
  --lp-bg: #020402;
  --lp-bg-soft: #091109;
  --lp-surface: #0d130d;
  --lp-card: #111811;
  --lp-line: rgba(255,255,255,.08);
  --lp-text: #f4f7f3;
  --lp-muted: #a8b5ab;
  --lp-green: #32ff41;
  --lp-green-2: #95ff4e;
  --lp-green-dark: #0f3d15;
  --lp-black: #040704;
  --lp-shadow: 0 30px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lp-body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--lp-text);
  background:
    radial-gradient(circle at 15% 10%, rgba(50,255,65,.12), transparent 26%),
    radial-gradient(circle at 85% 0%, rgba(149,255,78,.10), transparent 20%),
    linear-gradient(180deg, #020402 0%, #060906 50%, #020402 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

.lp-grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 78%);
}

.lp-container {
  width: min(100% - 32px, 1220px);
  margin: 0 auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(2, 4, 2, .78);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.lp-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.lp-brand img {
  max-height: 58px;
  max-width: 220px;
  object-fit: contain;
}

.lp-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--lp-green), var(--lp-green-2));
  color: #061106;
  font-weight: 900;
}

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

.lp-nav a {
  font-size: .96rem;
  font-weight: 700;
  color: rgba(255,255,255,.84);
}

.lp-nav a:hover,
.lp-footer a:hover { color: #fff; }

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

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.lp-btn:hover { transform: translateY(-1px); }

.lp-btn-primary {
  background: linear-gradient(135deg, var(--lp-green), var(--lp-green-2));
  color: #061006;
  box-shadow: 0 20px 42px rgba(50,255,65,.20);
}

.lp-btn-ghost {
  background: rgba(255,255,255,.04);
  color: #fff;
  border-color: rgba(255,255,255,.10);
}

.lp-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.lp-btn-dark {
  background: #071007;
  color: #fff;
  border-color: rgba(255,255,255,.08);
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(50,255,65,.08);
  border: 1px solid rgba(50,255,65,.18);
  color: #d8ffe0;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.lp-hero {
  padding: 80px 0 56px;
}

.lp-hero-grid,
.lp-rates-grid,
.lp-api-grid,
.lp-footer-grid,
.lp-feature-grid,
.lp-steps-grid {
  display: grid;
  gap: 22px;
}

.lp-hero-grid {
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
}

.lp-hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: .95;
  letter-spacing: -.06em;
}

.lp-hero-copy h1 span {
  color: var(--lp-green);
}

.lp-hero-copy p,
.lp-section-head p,
.lp-feature-card p,
.lp-rate-card p,
.lp-step-card p,
.lp-faq-list div,
.lp-cta-box p,
.lp-footer p,
.lp-footer a {
  color: var(--lp-muted);
  line-height: 1.8;
}

.lp-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.lp-proof-item {
  min-width: 164px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--lp-line);
}

.lp-proof-item strong,
.lp-proof-item span {
  display: block;
}

.lp-proof-item strong { font-size: .98rem; }
.lp-proof-item span { margin-top: 4px; font-size: .88rem; }

.lp-stage {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  opacity: .7;
}

.lp-glow-a {
  width: 260px;
  height: 260px;
  right: 40px;
  top: 20px;
  background: rgba(50,255,65,.18);
}

.lp-glow-b {
  width: 220px;
  height: 220px;
  left: 20px;
  bottom: 20px;
  background: rgba(149,255,78,.14);
}

.lp-dashboard-shell,
.lp-rate-card,
.lp-feature-card,
.lp-code-card,
.lp-step-card,
.lp-cta-box,
.lp-faq-list details {
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow);
}

.lp-dashboard-shell {
  position: relative;
  width: min(100%, 540px);
  padding: 26px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(14,19,14,.96), rgba(8,11,8,.96));
  overflow: hidden;
}

.lp-dashboard-shell::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50,255,65,.15), transparent 70%);
}

.lp-dashboard-topbar,
.lp-terminal-head,
.lp-terminal-lines div,
.lp-balance-card,
.lp-rate-card-highlight,
.lp-footer-grid {
  position: relative;
  z-index: 1;
}

.lp-dashboard-topbar,
.lp-terminal-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-dashboard-topbar small,
.lp-balance-card span,
.lp-terminal-head span,
.lp-terminal-lines span,
.lp-rate-title,
.lp-footer strong,
.lp-section-head .lp-kicker {
  display: block;
}

.lp-dashboard-topbar small,
.lp-terminal-head span,
.lp-terminal-lines span,
.lp-rate-title {
  color: #b8c3b9;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lp-dashboard-topbar strong,
.lp-terminal-head strong { font-size: 1.12rem; }

.lp-live-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(50,255,65,.10);
  border: 1px solid rgba(50,255,65,.20);
  color: #ccffd3;
  font-size: .72rem;
  font-weight: 900;
}

.lp-balance-card {
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(50,255,65,.13), rgba(149,255,78,.10));
}

.lp-balance-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -.05em;
}

.lp-balance-card small {
  display: block;
  margin-top: 10px;
  color: #bfd0c2;
  font-weight: 700;
}

.lp-mini-metrics {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lp-mini-metrics article,
.lp-terminal-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
}

.lp-mini-metrics span,
.lp-mini-metrics strong { display: block; }
.lp-mini-metrics span { color: #bfd0c2; font-weight: 800; }
.lp-mini-metrics strong { margin-top: 8px; font-size: 1.4rem; }
.lp-terminal-card { margin-top: 16px; }
.lp-terminal-lines { margin-top: 14px; display: grid; gap: 12px; }
.lp-terminal-lines strong { font-size: .96rem; }
.lp-terminal-lines strong.ok { color: #cfff9a; }

.lp-section {
  padding: 88px 0;
}

.lp-section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.008));
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.lp-section-head {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.lp-section-head.narrow { max-width: 700px; }

.lp-section-head h2,
.lp-cta-box h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.lp-rates-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.lp-rate-card {
  border-radius: 28px;
  padding: 28px;
}

.lp-rate-card-dark {
  background: linear-gradient(180deg, rgba(12,15,12,.96), rgba(8,11,8,.95));
}

.lp-rate-card-highlight {
  background: linear-gradient(135deg, var(--lp-green), var(--lp-green-2));
  color: #071007;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lp-rate-card-highlight p,
.lp-rate-card-highlight h3 { color: inherit; }
.lp-rate-card-highlight h3 { margin: 16px 0 8px; font-size: 1.35rem; line-height: 1.3; }

.lp-eye {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #071007 0 20%, transparent 21%),
    radial-gradient(circle at center, rgba(255,255,255,.2) 0 56%, transparent 57%),
    linear-gradient(135deg, #071007, #193d1c);
  box-shadow: inset 0 0 0 12px rgba(7,16,7,.14);
}

.lp-rate-value {
  margin: 10px 0 10px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.lp-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-feature-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13,18,13,.96), rgba(7,10,7,.95));
}

.lp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
  background: rgba(50,255,65,.10);
  border: 1px solid rgba(50,255,65,.18);
}

.lp-feature-card h3,
.lp-step-card h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  letter-spacing: -.03em;
}

.lp-api-grid {
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
}

.lp-code-card {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8,11,8,.98), rgba(4,6,4,.98));
}

.lp-code-card pre {
  margin: 0;
  padding: 26px;
  overflow: auto;
  color: #e5f9e9;
  font-size: .94rem;
  line-height: 1.72;
}

.lp-steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-step-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.03);
}

.lp-step-card span {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--lp-green), var(--lp-green-2));
  color: #061006;
  font-weight: 900;
}

.lp-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.lp-faq-list details {
  border-radius: 20px;
  padding: 0 20px;
  background: rgba(255,255,255,.03);
}

.lp-faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 800;
}

.lp-faq-list summary::-webkit-details-marker { display: none; }
.lp-faq-list div { padding: 0 0 20px; }

.lp-cta-box {
  padding: 38px;
  border-radius: 34px;
  text-align: center;
  background: linear-gradient(180deg, rgba(12,17,12,.96), rgba(6,8,6,.96));
}

.lp-cta-box small {
  display: inline-block;
  color: #ccffd3;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lp-footer {
  padding: 46px 0 22px;
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(0,0,0,.28);
}

.lp-footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: start;
}

.lp-footer strong { margin-bottom: 10px; }
.lp-footer a, .lp-footer p { display: block; margin: 0 0 10px; }
.lp-footer-copy {
  padding-top: 18px;
  text-align: center;
  color: var(--lp-muted);
  font-size: .92rem;
}

@media (max-width: 1100px) {
  .lp-hero-grid,
  .lp-api-grid,
  .lp-rates-grid,
  .lp-footer-grid,
  .lp-feature-grid,
  .lp-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-rates-grid .lp-rate-card-highlight,
  .lp-footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .lp-container { width: min(100% - 24px, 1220px); }
  .lp-header-inner {
    min-height: 74px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }
  .lp-nav { display: none; }
  .lp-header-actions { width: 100%; justify-content: center; }
  .lp-hero { padding: 54px 0 30px; }
  .lp-proof-list,
  .lp-hero-actions,
  .lp-inline-actions { flex-direction: column; align-items: stretch; }
  .lp-hero-grid,
  .lp-api-grid,
  .lp-rates-grid,
  .lp-feature-grid,
  .lp-steps-grid,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }
  .lp-stage { min-height: 420px; }
  .lp-dashboard-shell,
  .lp-rate-card,
  .lp-feature-card,
  .lp-code-card,
  .lp-step-card,
  .lp-cta-box { border-radius: 24px; }
  .lp-code-card pre { padding: 18px; font-size: .86rem; }
  .lp-cta-box { padding: 28px 22px; }
}
