/* Landing — layout estilo corretora (hero central, seções, dark) */
:root {
  --lp-bg: #000000;
  --lp-surface: #121212;
  --lp-surface-2: #1a1a1a;
  --lp-border: #2a2a2a;
  --lp-text: #ffffff;
  --lp-muted: #9a9a9a;
  --lp-accent: #22c55e;
  --lp-accent-hover: #16a34a;
  --lp-danger: #ef4444;
  --lp-header-h: 72px;
  --lp-font: "Sora", ui-sans-serif, system-ui, sans-serif;
  --lp-radius: 12px;
  --lp-radius-pill: 999px;
}

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

html { scroll-behavior: smooth; }

.lp-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--lp-font);
  background: var(--lp-bg);
  color: var(--lp-text);
  -webkit-font-smoothing: antialiased;
}

/* ——— Header ——— */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--lp-header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(16px, 4vw, 40px);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--lp-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.lp-logo--image { font-size: 0; }
.lp-logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.lp-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(145deg, #4ade80, var(--lp-accent));
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.35);
}

.lp-nav {
  display: none;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
}
.lp-nav a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.lp-nav a:hover { color: var(--lp-text); }

.lp-nav-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.lp-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 8px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: var(--lp-surface);
  cursor: pointer;
}
.lp-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--lp-text);
  border-radius: 2px;
}

.lp-mobile-nav {
  position: sticky;
  top: var(--lp-header-h);
  z-index: 39;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 20px;
  background: #0a0a0a;
  border-bottom: 1px solid var(--lp-border);
}
.lp-mobile-nav[hidden] { display: none !important; }
.lp-mobile-nav a {
  color: var(--lp-text);
  text-decoration: none;
  padding: 12px 10px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
}
.lp-mobile-nav a:hover { background: var(--lp-surface); }
.lp-mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.lp-mobile-actions .lp-btn { flex: 1; }

@media (min-width: 960px) {
  .lp-nav,
  .lp-nav-actions { display: flex; }
  .lp-menu-toggle,
  .lp-mobile-nav { display: none !important; }
}

/* ——— Buttons ——— */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--lp-radius-pill);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.lp-btn:active { transform: scale(0.98); }
.lp-btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}
.lp-btn-primary {
  background: var(--lp-accent);
  color: #fff;
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.28);
}
.lp-btn-primary:hover {
  background: var(--lp-accent-hover);
  box-shadow: 0 0 36px rgba(34, 197, 94, 0.4);
}
.lp-btn-muted {
  background: var(--lp-surface-2);
  color: var(--lp-text);
}
.lp-btn-muted:hover { background: #242424; }

/* ——— Hero ——— */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 88px) 20px 0;
  text-align: center;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 55%;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(34, 197, 94, 0.16), transparent 70%);
  pointer-events: none;
}
.lp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 48px;
  animation: lp-rise 0.8s ease both;
}
.lp-brand-kicker {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-accent);
}
.lp-h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 30%, #b0b0b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-h1-accent {
  background: linear-gradient(180deg, #fff 20%, #d4d4d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-sub {
  margin: 0 auto 28px;
  max-width: 42ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.55;
  color: var(--lp-muted);
  animation: lp-rise 0.8s ease 0.12s both;
}
.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  animation: lp-rise 0.8s ease 0.22s both;
}

.lp-hero-visual {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 8px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  animation: lp-rise 1s ease 0.3s both;
}
@media (min-width: 800px) {
  .lp-hero-visual {
    grid-template-columns: 1fr 200px;
    gap: 24px;
    padding-bottom: 56px;
  }
}

.lp-desk {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  box-shadow: 0 -20px 80px rgba(34, 197, 94, 0.08);
}
.lp-desk-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #151515;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
}
.lp-desk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}
.lp-desk-dot:nth-child(1) { background: #ef4444; }
.lp-desk-dot:nth-child(2) { background: #eab308; }
.lp-desk-dot:nth-child(3) { background: #22c55e; }
.lp-desk-pair {
  margin-left: 8px;
  color: var(--lp-muted);
  font-weight: 600;
}
.lp-desk-bal {
  margin-left: auto;
  color: var(--lp-accent);
  font-weight: 700;
}
.lp-desk-dep {
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--lp-accent);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}

.lp-chart-wrap {
  width: 100%;
  height: min(340px, 48vh);
  background: #0c0c0c;
  contain: strict;
}
.lp-chart-wrap #lpBtcChart {
  display: block;
  width: 100%;
  height: 100%;
}

.lp-phone {
  display: none;
  width: 180px;
  margin: 0 auto 8px;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(160deg, #2a2a2a, #111);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
@media (min-width: 800px) {
  .lp-phone { display: block; }
}
.lp-phone-notch {
  width: 64px;
  height: 6px;
  margin: 4px auto 10px;
  border-radius: 4px;
  background: #000;
}
.lp-phone-screen {
  border-radius: 18px;
  background: #0a0a0a;
  padding: 12px;
  min-height: 260px;
}
.lp-phone-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 14px;
}
.lp-phone-top strong { color: var(--lp-accent); }
.lp-phone-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 140px;
  margin-bottom: 16px;
}
.lp-phone-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: var(--lp-accent);
  opacity: 0.85;
  animation: lp-bar 2.4s ease-in-out infinite;
  transform-origin: bottom;
}
.lp-phone-bars i:nth-child(even) {
  background: var(--lp-danger);
  animation-delay: 0.3s;
}
.lp-phone-bars i:nth-child(3n) { animation-delay: 0.55s; }
.lp-phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lp-phone-actions span {
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
}
.lp-phone-actions .up { background: var(--lp-accent); color: #fff; }
.lp-phone-actions .down { background: var(--lp-danger); color: #fff; }

/* ——— Badges strip ——— */
.lp-badges {
  display: grid;
  gap: 12px;
  padding: 24px 20px 8px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .lp-badges { grid-template-columns: repeat(3, 1fr); }
}
.lp-badge {
  padding: 20px 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-badge strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}
.lp-badge span {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--lp-muted);
  font-weight: 600;
}

/* ——— Sections ——— */
.lp-section {
  padding: clamp(56px, 8vw, 96px) 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-section--tight { padding-top: 40px; }
.lp-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-accent);
  text-align: center;
}
.lp-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  text-align: center;
  font-weight: 800;
}
.lp-section-lead {
  margin: 0 auto 36px;
  max-width: 52ch;
  text-align: center;
  color: var(--lp-muted);
  line-height: 1.55;
  font-size: 15px;
}
.lp-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ——— Marquee / assets ——— */
.lp-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: lp-marquee 40s linear infinite;
}
.lp-marquee--wins .lp-marquee-track {
  animation-duration: 32s;
  animation-direction: reverse;
}
.lp-asset {
  flex: 0 0 auto;
  width: 200px;
  padding: 16px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-asset strong {
  display: block;
  font-size: 14px;
}
.lp-asset span {
  display: block;
  font-size: 11px;
  color: var(--lp-muted);
  margin-top: 2px;
}
.lp-asset em {
  font-style: normal;
  font-weight: 700;
  color: var(--lp-accent);
  font-size: 15px;
}

.lp-win {
  flex: 0 0 auto;
  min-width: 160px;
  padding: 14px 18px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}
.lp-win span {
  display: block;
  font-size: 12px;
  color: var(--lp-muted);
  margin-bottom: 4px;
}
.lp-win strong {
  color: var(--lp-accent);
  font-size: 18px;
}

/* ——— Features ——— */
.lp-features {
  display: grid;
  gap: 16px;
}
@media (min-width: 700px) {
  .lp-features { grid-template-columns: repeat(3, 1fr); }
}
.lp-feature {
  padding: 24px 20px;
  border-radius: 16px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.lp-feature:hover {
  border-color: rgba(34, 197, 94, 0.35);
  transform: translateY(-2px);
}
.lp-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.lp-feature h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.lp-feature p {
  margin: 0;
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.5;
}

/* ——— Payments ——— */
.lp-pay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 700px) {
  .lp-pay-grid { grid-template-columns: repeat(4, 1fr); }
}
.lp-pay {
  padding: 18px 14px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  text-align: center;
}
.lp-pay strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}
.lp-pay span {
  font-size: 12px;
  color: var(--lp-accent);
  font-weight: 600;
}

/* ——— Quotes ——— */
.lp-quotes {
  display: grid;
  gap: 16px;
}
@media (min-width: 800px) {
  .lp-quotes { grid-template-columns: repeat(3, 1fr); }
}
.lp-quote {
  margin: 0;
  padding: 24px 20px;
  border-radius: 16px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}
.lp-stars {
  color: var(--lp-accent);
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
}
.lp-quote h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.lp-quote p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.55;
}
.lp-quote footer {
  font-size: 12px;
  color: #777;
}

/* ——— Steps ——— */
.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
@media (min-width: 800px) {
  .lp-steps { grid-template-columns: repeat(3, 1fr); }
}
.lp-steps li {
  display: flex;
  gap: 14px;
  padding: 22px 18px;
  border-radius: 16px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}
.lp-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lp-accent);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-steps h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
.lp-steps p {
  margin: 0;
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-stats {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
@media (min-width: 600px) {
  .lp-stats { grid-template-columns: repeat(3, 1fr); }
}
.lp-stats > div {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: #0a0a0a;
}
.lp-stats span {
  display: block;
  font-size: 12px;
  color: var(--lp-muted);
  margin-bottom: 6px;
}
.lp-stats strong {
  font-size: 1.5rem;
  color: var(--lp-accent);
}

/* ——— FAQ ——— */
.lp-faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-faq details {
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  overflow: hidden;
}
.lp-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  color: var(--lp-accent);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.lp-faq details[open] summary::after { content: "−"; }
.lp-faq details p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ——— Footer ——— */
.lp-footer {
  padding: 48px 20px 40px;
  border-top: 1px solid var(--lp-border);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.lp-footer-brand strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.lp-footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 8px;
}
.lp-footer-brand p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--lp-muted);
}
.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 24px 0;
}
.lp-footer-links a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 13px;
}
.lp-footer-links a:hover { color: var(--lp-accent); }
.lp-risk {
  margin: 0 auto;
  max-width: 70ch;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

/* ——— Motion ——— */
@keyframes lp-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes lp-bar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.72); }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-inner,
  .lp-sub,
  .lp-cta-row,
  .lp-hero-visual { animation: none; }
  .lp-marquee-track { animation: none; }
  .lp-phone-bars i { animation: none; }
  html { scroll-behavior: auto; }
}

/* ——— Mobile header polish ——— */
@media (max-width: 959px) {
  :root { --lp-header-h: 60px; }
  .lp-header {
    display: flex;
    padding: 0 14px;
  }
  .lp-logo-img {
    height: 28px;
    max-width: 130px;
  }
}
