/**
 * HstockPro landing — ui-ux-pro-max design system
 * Plus Jakarta Sans · Rose primary · Blue CTA · Block layout
 */

body:has(.landing-page) {
  background: #fff1f2;
}

body:has(.landing-page) .bg-grid,
body:has(.landing-page) .bg-scanline {
  opacity: 0.85;
}

body:has(.landing-page) .bg-grid {
  background-size: 40px 40px;
}

body:has(.landing-page) .bg-fx {
  opacity: 0.7;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(99, 102, 241, 0.18), transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(225, 29, 72, 0.12), transparent 45%),
    radial-gradient(ellipse 70% 50% at 0% 80%, rgba(34, 211, 238, 0.1), transparent 40%);
}

.landing-page {
  --lp-primary: #e11d48;
  --lp-primary-soft: #ffe4e6;
  --lp-secondary: #fb7185;
  --lp-cta: #2563eb;
  --lp-cta-hover: #1d4ed8;
  --lp-bg: #fff1f2;
  --lp-bg-soft: #ffffff;
  --lp-text: #881337;
  --lp-text-body: #4c0519;
  --lp-muted: #9f1239;
  --lp-border: rgba(225, 29, 72, 0.12);
  --lp-shadow: 0 4px 24px rgba(136, 19, 55, 0.08);
  --lp-shadow-lg: 0 20px 50px rgba(136, 19, 55, 0.12);
  --lp-radius: 16px;
  --lp-radius-lg: 24px;
  --lp-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --lp-font-display: "Space Grotesk", "Plus Jakarta Sans", system-ui, sans-serif;
  --lp-neon-indigo: #6366f1;
  --lp-neon-cyan: #22d3ee;
  --lp-max: 72rem;
  --lp-gap: 3rem;

  font-family: var(--lp-font);
  color: var(--lp-text-body);
  position: relative;
  overflow-x: hidden;
}

/* Page-wide ambient layer */
.lp-ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.lp-page-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 600px at 15% 20%, rgba(99, 102, 241, 0.14), transparent 70%),
    radial-gradient(circle 500px at 85% 30%, rgba(225, 29, 72, 0.1), transparent 70%),
    radial-gradient(circle 400px at 50% 90%, rgba(37, 99, 235, 0.08), transparent 70%);
}

.landing-page > *:not(.lp-ambient-canvas):not(.lp-page-glow) {
  position: relative;
  z-index: 1;
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  font-family: var(--lp-font);
  color: var(--lp-text);
  letter-spacing: -0.02em;
}

.lp-wrap {
  width: min(100% - 2.5rem, var(--lp-max));
  margin-inline: auto;
}

/* ── Hero ── */
.lp-hero {
  position: relative;
  padding: 6.5rem 0 2.5rem;
  margin-top: -6.5rem;
  overflow: hidden;
  isolation: isolate;
}

.lp-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 5% 0%, rgba(251, 113, 133, 0.55), transparent 50%),
    radial-gradient(ellipse 70% 60% at 95% 5%, rgba(99, 102, 241, 0.45), transparent 48%),
    radial-gradient(ellipse 50% 45% at 50% 100%, rgba(37, 99, 235, 0.25), transparent 55%),
    radial-gradient(ellipse 40% 35% at 70% 60%, rgba(34, 211, 238, 0.2), transparent 50%),
    linear-gradient(180deg, #fce7f3 0%, #f5f3ff 45%, #ffffff 90%);
  pointer-events: none;
}

.lp-hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.16) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: lp-grid-scroll 24s linear infinite;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 15%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 15%, transparent 78%);
}

.lp-hero__grid-lines--fine {
  background-size: 16px 16px;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px);
  animation: lp-grid-scroll 18s linear infinite reverse;
  opacity: 0.8;
}

@keyframes lp-grid-scroll {
  0% { background-position: 0 0; }
  100% { background-position: 48px 48px; }
}

.lp-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: normal;
}

.lp-hero__scanline {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(99, 102, 241, 0.06) 2px,
    rgba(99, 102, 241, 0.06) 4px
  );
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
}

.lp-hero__scan-beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(99, 102, 241, 0.06) 45%,
    rgba(34, 211, 238, 0.12) 50%,
    rgba(99, 102, 241, 0.06) 55%,
    transparent 100%
  );
  animation: lp-scan-beam 5s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes lp-scan-beam {
  0% { top: -120px; }
  100% { top: 100%; }
}

.lp-hero__beams {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.lp-beam {
  position: absolute;
  width: 2px;
  height: 140%;
  top: -20%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(99, 102, 241, 0.5),
    rgba(34, 211, 238, 0.35),
    transparent
  );
  filter: blur(1px);
  opacity: 0.6;
  animation: lp-beam-sway 8s ease-in-out infinite;
}

.lp-beam--1 { left: 18%; transform: rotate(12deg); animation-delay: 0s; }
.lp-beam--2 { left: 52%; transform: rotate(-8deg); animation-delay: -2.5s; width: 3px; opacity: 0.75; }
.lp-beam--3 { left: 78%; transform: rotate(6deg); animation-delay: -5s; }

@keyframes lp-beam-sway {
  0%, 100% { opacity: 0.35; transform: rotate(12deg) scaleY(1); }
  50% { opacity: 0.85; transform: rotate(14deg) scaleY(1.05); }
}

.lp-data-streams {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.lp-data-streams span {
  position: absolute;
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.9), transparent);
  animation: lp-data-fall 4s linear infinite;
  opacity: 0.7;
}

.lp-data-streams span:nth-child(1) { left: 12%; animation-delay: 0s; animation-duration: 3.2s; }
.lp-data-streams span:nth-child(2) { left: 28%; animation-delay: -1.2s; animation-duration: 4.5s; }
.lp-data-streams span:nth-child(3) { left: 45%; animation-delay: -2.8s; animation-duration: 3.8s; }
.lp-data-streams span:nth-child(4) { left: 67%; animation-delay: -0.6s; animation-duration: 5s; }
.lp-data-streams span:nth-child(5) { left: 88%; animation-delay: -3.5s; animation-duration: 4.2s; }

@keyframes lp-data-fall {
  0% { transform: translateY(-100px); opacity: 0; }
  10% { opacity: 0.85; }
  90% { opacity: 0.85; }
  100% { transform: translateY(calc(100vh + 100px)); opacity: 0; }
}

.lp-hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, transparent 30%, rgba(136, 19, 55, 0.06) 100%);
}

.lp-tech-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  transition: transform 0.35s ease-out;
  will-change: transform;
}

.lp-tech-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.65;
  will-change: transform;
}

.lp-tech-orb--1 {
  width: 360px;
  height: 360px;
  top: 5%;
  left: -6%;
  background: rgba(225, 29, 72, 0.55);
  animation: lp-orb-drift 18s ease-in-out infinite;
}

.lp-tech-orb--2 {
  width: 300px;
  height: 300px;
  top: 30%;
  right: -4%;
  background: rgba(99, 102, 241, 0.55);
  animation: lp-orb-drift 22s ease-in-out infinite reverse;
  animation-delay: -6s;
}

.lp-tech-orb--3 {
  width: 240px;
  height: 240px;
  bottom: 8%;
  left: 35%;
  background: rgba(34, 211, 238, 0.45);
  animation: lp-orb-drift 16s ease-in-out infinite;
  animation-delay: -10s;
}

.lp-tech-orb--4 {
  width: 200px;
  height: 200px;
  top: 55%;
  left: 8%;
  background: rgba(37, 99, 235, 0.4);
  animation: lp-orb-drift 20s ease-in-out infinite;
  animation-delay: -4s;
}

.lp-tech-orb--5 {
  width: 180px;
  height: 180px;
  top: 12%;
  right: 25%;
  background: rgba(251, 113, 133, 0.45);
  animation: lp-orb-drift 14s ease-in-out infinite reverse;
  animation-delay: -8s;
}

@keyframes lp-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.06); }
  66% { transform: translate(-16px, 12px) scale(0.96); }
}

.lp-hero__grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: stretch;
  padding-top: 1rem;
}

.lp-hero__glass {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  border-radius: var(--lp-radius-lg);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(99, 102, 241, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 8px 32px rgba(99, 102, 241, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-primary);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--lp-border);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.lp-badge--pulse .lp-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-cta);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  animation: lp-pulse-dot 2s ease-out infinite;
}

@keyframes lp-pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.lp-hero__title {
  font-family: var(--lp-font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 0.85rem;
  max-width: 20ch;
}

.lp-hero__title--glow {
  background: linear-gradient(
    120deg,
    var(--lp-text) 0%,
    var(--lp-primary) 25%,
    var(--lp-neon-indigo) 50%,
    var(--lp-neon-cyan) 75%,
    var(--lp-text) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lp-title-shimmer 5s linear infinite;
  filter: drop-shadow(0 0 24px rgba(99, 102, 241, 0.35));
}

@keyframes lp-title-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.lp-hero__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--lp-muted);
  max-width: 34rem;
  margin: 0 0 1.15rem;
}

.lp-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lp-trust li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--lp-text-body);
}

.lp-trust svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--lp-cta);
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: auto;
  padding-top: 0.25rem;
}

.lp-hero__actions--center {
  justify-content: center;
}

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.35rem;
  border-radius: 12px;
  font-family: var(--lp-font);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.lp-btn--primary {
  background: linear-gradient(135deg, var(--lp-cta) 0%, var(--lp-neon-indigo) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45), 0 0 30px rgba(99, 102, 241, 0.2);
}

.lp-btn--primary:hover {
  background: linear-gradient(135deg, var(--lp-cta-hover) 0%, #4f46e5 100%);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.55), 0 0 40px rgba(99, 102, 241, 0.35);
}

.lp-btn--glow {
  animation: lp-btn-pulse 2.5s ease-in-out infinite;
}

@keyframes lp-btn-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45), 0 0 30px rgba(99, 102, 241, 0.2); }
  50% { box-shadow: 0 4px 28px rgba(37, 99, 235, 0.6), 0 0 50px rgba(99, 102, 241, 0.45); }
}

.lp-btn--ghost {
  background: #fff;
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}

.lp-btn--ghost:hover {
  border-color: var(--lp-primary);
  color: var(--lp-primary);
}

.lp-btn--text {
  background: transparent;
  color: var(--lp-cta);
  padding-inline: 0.5rem;
}

.lp-btn--text:hover {
  color: var(--lp-cta-hover);
  text-decoration: underline;
}

.lp-btn--block {
  width: 100%;
}

.lp-btn--lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.lp-btn--google {
  background: #fff;
  border: 1px solid #dadce0;
  color: #3c4043;
}

/* Hero aside: preview + auth */
.lp-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  min-height: 0;
}

.lp-preview {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--lp-radius-lg);
  box-shadow:
    var(--lp-shadow-lg),
    0 0 40px rgba(99, 102, 241, 0.2),
    0 0 80px rgba(34, 211, 238, 0.08);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease-out, box-shadow 0.25s;
}

.lp-preview__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: linear-gradient(90deg, var(--lp-primary-soft), #fff);
  border-bottom: 1px solid var(--lp-border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-preview__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-secondary);
  opacity: 0.6;
}

.lp-preview__bar span:first-child { background: #f87171; opacity: 1; }
.lp-preview__bar span:nth-child(2) { background: #fbbf24; opacity: 1; }
.lp-preview__bar span:nth-child(3) { background: #34d399; opacity: 1; }

.lp-preview__bar em {
  margin-left: auto;
  font-style: normal;
}

.lp-preview__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1rem;
}

.lp-preview__metrics div {
  padding: 0.65rem;
  border-radius: 10px;
  background: var(--lp-bg);
  text-align: center;
}

.lp-preview__metrics strong {
  display: block;
  font-size: 1.1rem;
  color: var(--lp-primary);
}

.lp-preview__metrics span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lp-muted);
}

.lp-preview__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 72px;
  padding: 0 1rem 1rem;
}

.lp-preview__chart div {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--lp-secondary), var(--lp-neon-indigo));
  opacity: 0.9;
  animation: lp-bar-pulse 3s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.15s);
}

.lp-preview__chart div:nth-child(1) { --i: 0; }
.lp-preview__chart div:nth-child(2) { --i: 1; }
.lp-preview__chart div:nth-child(3) { --i: 2; }
.lp-preview__chart div:nth-child(4) { --i: 3; }
.lp-preview__chart div:nth-child(5) { --i: 4; }
.lp-preview__chart div:nth-child(6) { --i: 5; }

@keyframes lp-bar-pulse {
  0%, 100% { opacity: 0.75; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.15); }
}

.lp-auth {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lp-auth--glow {
  position: relative;
  transition: transform 0.2s ease-out;
}

.lp-auth--glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--lp-radius-lg) + 1px);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(225, 29, 72, 0.5),
    rgba(99, 102, 241, 0.45),
    rgba(37, 99, 235, 0.5),
    rgba(34, 211, 238, 0.35)
  );
  background-size: 300% 300%;
  animation: lp-border-flow 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

@keyframes lp-border-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lp-auth__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.lp-auth__sub {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--lp-muted);
}

.lp-auth__balance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--lp-primary-soft);
}

.lp-auth__balance strong {
  font-size: 1.2rem;
  color: var(--lp-primary);
}

.lp-auth__form label {
  display: block;
  margin-top: 0.65rem;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--lp-border);
  font-family: var(--lp-font);
  font-size: 0.92rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-input:focus {
  outline: none;
  border-color: var(--lp-cta);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.lp-auth__form .lp-btn {
  margin-top: 1rem;
}

.lp-auth__balance + .lp-btn {
  margin-top: auto;
}

.lp-auth__footer {
  margin-top: auto;
  padding-top: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--lp-muted);
}

.lp-auth__footer a {
  color: var(--lp-cta);
  font-weight: 600;
}

.lp-auth__link {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--lp-muted);
}

.lp-auth .lp-btn + .lp-btn {
  margin-top: 0.5rem;
}

/* Stats strip */
.lp-stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.lp-stats--glow .lp-stat {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow:
    var(--lp-shadow),
    0 0 24px rgba(99, 102, 241, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.lp-stats--glow .lp-stat:hover {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow:
    var(--lp-shadow-lg),
    0 0 36px rgba(99, 102, 241, 0.22);
}

.lp-stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lp-primary);
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(225, 29, 72, 0.25);
}

.lp-stat__label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-muted);
}

/* Sections */
.lp-section {
  padding: var(--lp-gap) 0;
}

.lp-section--soft {
  background: var(--lp-bg-soft);
  border-block: 1px solid var(--lp-border);
}

.lp-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.lp-section-head--left {
  text-align: left;
  margin-left: 0;
  margin-bottom: 1rem;
}

.lp-section-head h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.65rem;
}

.lp-section-head p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.65;
}

.lp-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-primary);
  margin-bottom: 0.5rem;
}

/* About */
.lp-about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.lp-about__body p {
  margin: 0 0 1rem;
  line-height: 1.75;
  color: var(--lp-muted);
}

/* Features grid */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-feature {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-feature:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--lp-shadow-lg);
}

.lp-feature--highlight {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, var(--lp-primary-soft) 100%);
}

.lp-feature__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--lp-primary-soft);
  color: var(--lp-primary);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.12);
  transition: box-shadow 0.25s, background 0.25s;
}

.lp-feature:hover .lp-feature__icon {
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
  background: linear-gradient(135deg, var(--lp-primary-soft), rgba(99, 102, 241, 0.12));
}

.lp-feature__icon svg {
  width: 24px;
  height: 24px;
}

.lp-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.lp-feature p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--lp-muted);
}

.lp-feature--highlight h3,
.lp-feature--highlight p {
  grid-column: 2;
}

.lp-feature--highlight .lp-feature__icon {
  grid-row: span 2;
}

/* Steps timeline */
.lp-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.lp-step {
  position: relative;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: var(--lp-primary);
  margin-bottom: 0.75rem;
}

.lp-step h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.lp-step p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--lp-muted);
}

/* Platforms */
.lp-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.85rem;
}

.lp-platform {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.lp-platform:hover {
  border-color: var(--lp-primary);
  box-shadow: var(--lp-shadow-lg);
  background: var(--lp-primary-soft);
}

.lp-platform__mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: var(--lp-primary);
  margin-bottom: 0.35rem;
}

.lp-platform--tiktok .lp-platform__mark { background: #010101; }
.lp-platform--facebook .lp-platform__mark { background: #1877f2; }
.lp-platform--twitter .lp-platform__mark { background: #000; }
.lp-platform--youtube .lp-platform__mark { background: #ff0000; }
.lp-platform--spotify .lp-platform__mark { background: #1db954; }
.lp-platform--instagram .lp-platform__mark { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.lp-platform--linkedin .lp-platform__mark { background: #0a66c2; }
.lp-platform--snapchat .lp-platform__mark { background: #fffc00; color: #000; }
.lp-platform--telegram .lp-platform__mark { background: #0088cc; }
.lp-platform--whatsapp .lp-platform__mark { background: #25d366; }
.lp-platform--twitch .lp-platform__mark { background: #9146ff; }
.lp-platform--quora .lp-platform__mark { background: #b92b27; }
.lp-platform--discord .lp-platform__mark { background: #5865f2; }
.lp-platform--other .lp-platform__mark { background: var(--lp-muted); }

.lp-platform__name {
  font-weight: 700;
  font-size: 0.95rem;
}

.lp-platform__hint {
  font-size: 0.72rem;
  color: var(--lp-muted);
}

/* API split */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.lp-split__content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.lp-split__content > p {
  color: var(--lp-muted);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.lp-checklist li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  font-size: 0.92rem;
  color: var(--lp-text-body);
  border-bottom: 1px solid var(--lp-border);
}

.lp-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-cta);
}

.lp-code {
  background: #1e1b4b;
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
  position: relative;
}

.lp-code--glow {
  box-shadow:
    var(--lp-shadow-lg),
    0 0 40px rgba(99, 102, 241, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lp-code--glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.6), rgba(34, 211, 238, 0.3), rgba(225, 29, 72, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.lp-code__bar {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.65rem 1rem;
  background: #312e81;
}

.lp-code__bar em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(224, 231, 255, 0.65);
  font-family: "Fira Code", ui-monospace, monospace;
}

.lp-code__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.lp-code pre {
  margin: 0;
  padding: 1.25rem;
  overflow-x: auto;
}

.lp-code code {
  font-family: "Fira Code", ui-monospace, monospace;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #e0e7ff;
  display: block;
}

.lp-code__line {
  display: block;
}

.lp-code__indent {
  padding-left: 1.25rem;
  color: #c7d2fe;
}

.lp-code__cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: var(--lp-neon-cyan);
  animation: lp-blink 1.1s step-end infinite;
}

@keyframes lp-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Reviews */
.lp-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-review {
  margin: 0;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-review__stars {
  display: flex;
  gap: 0.15rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
}

.lp-review__stars svg {
  width: 16px;
  height: 16px;
}

.lp-review p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--lp-text-body);
}

.lp-review footer {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.lp-review footer strong {
  font-size: 0.9rem;
  color: var(--lp-text);
}

.lp-review footer span {
  font-size: 0.8rem;
  color: var(--lp-muted);
}

/* FAQ */
.lp-faq {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lp-faq__item {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
}

.lp-faq__item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--lp-text);
  transition: background 0.2s;
}

.lp-faq__item summary:hover {
  background: var(--lp-primary-soft);
}

.lp-faq__item summary::-webkit-details-marker {
  display: none;
}

.lp-faq__item summary::after {
  content: "+";
  color: var(--lp-primary);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.lp-faq__item[open] summary::after {
  content: "−";
}

.lp-faq__item p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

.lp-faq__more {
  text-align: center;
  margin: 1.25rem 0 0;
}

.lp-faq__more a {
  color: var(--lp-cta);
  font-weight: 600;
}

/* Payments */
.lp-payments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.lp-payment {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  text-align: center;
}

.lp-payment h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.lp-payment p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--lp-muted);
  line-height: 1.5;
}

/* CTA */
.lp-cta {
  padding: 3.5rem 0;
  margin-bottom: 0;
}

.lp-cta__inner {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--lp-primary) 0%, #be123c 40%, var(--lp-neon-indigo) 70%, var(--lp-cta) 100%);
  background-size: 200% 200%;
  animation: lp-cta-gradient 12s ease infinite;
  border-radius: var(--lp-radius-lg);
  color: #fff;
  box-shadow: var(--lp-shadow-lg), 0 0 60px rgba(99, 102, 241, 0.25);
  position: relative;
  overflow: hidden;
}

.lp-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes lp-cta-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lp-cta__inner .lp-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.lp-cta__inner h2 {
  color: #fff;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  margin: 0 0 0.65rem;
}

.lp-cta__inner p {
  margin: 0 0 1.5rem;
  opacity: 0.92;
  max-width: 32rem;
  margin-inline: auto;
}

.lp-cta .lp-btn--primary {
  background: #fff;
  color: var(--lp-cta);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.lp-cta .lp-btn--primary:hover {
  background: #f8fafc;
}

.lp-cta .lp-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.lp-cta .lp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

/* Partner */
.lp-section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

.lp-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 56rem;
  margin: 1.75rem auto 0;
}

.lp-partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--lp-border);
  border-radius: 1rem;
  box-shadow: var(--lp-shadow);
}

.lp-partner-card__title {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.35;
  color: var(--lp-text);
}

.lp-partner-card__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--lp-text-muted);
  max-width: 22rem;
}

.lp-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.lp-partner .lp-section-head {
  max-width: 40rem;
}

.lp-btn--partner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  color: var(--lp-text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--lp-shadow);
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
}

.lp-btn--partner svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--lp-accent);
}

.lp-btn--partner:hover {
  border-color: var(--lp-accent);
  color: var(--lp-accent);
  box-shadow: var(--lp-shadow-lg);
  transform: translateY(-1px);
}

/* Footer nav */
.lp-footer {
  padding: 1.5rem 0 2.5rem;
}

.lp-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.lp-footer__nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lp-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.lp-footer__nav a:hover {
  color: var(--lp-primary);
}

/* SEO topic grid */
.lp-seo-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.lp-seo-topic {
  padding: 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-seo-topic h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--lp-text);
}

.lp-seo-topic p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

/* Scroll reveal */
.lp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-reveal--delay {
  transition-delay: 0.12s;
}

/* Landing nav tint */
body:has(.landing-page) .glass-nav {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(225, 29, 72, 0.1);
}

body:has(.landing-page) .brand-accent {
  color: var(--lp-primary, #e11d48);
}

/* Responsive */
@media (max-width: 1024px) {
  .lp-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-feature--highlight {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .lp-hero__grid {
    grid-template-columns: 1fr;
  }

  .lp-hero__title {
    max-width: none;
  }

  .lp-about {
    grid-template-columns: 1fr;
  }

  .lp-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-split {
    grid-template-columns: 1fr;
  }

  .lp-reviews {
    grid-template-columns: 1fr;
  }

  .lp-payments {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-seo-topics {
    grid-template-columns: 1fr;
  }

  .lp-partners-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lp-wrap {
    width: min(100% - 1.5rem, var(--lp-max));
  }

  .lp-features,
  .lp-feature--highlight {
    grid-template-columns: 1fr;
  }

  .lp-feature--highlight {
    display: block;
  }

  .lp-feature--highlight .lp-feature__icon {
    margin-bottom: 0.75rem;
  }

  .lp-steps,
  .lp-payments,
  .lp-stats {
    grid-template-columns: 1fr;
  }

  .lp-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-btn {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lp-tech-orb,
  .lp-hero__title--glow,
  .lp-badge--pulse .lp-badge__dot,
  .lp-auth--glow::before,
  .lp-cta__inner,
  .lp-code__cursor,
  .lp-hero__grid-lines,
  .lp-hero__scan-beam,
  .lp-beam,
  .lp-data-streams span,
  .lp-btn--glow {
    animation: none;
  }

  .lp-hero__title--glow {
    color: var(--lp-text);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: none;
  }

  .lp-hero__particles,
  .lp-ambient-canvas {
    display: none;
  }

  .lp-page-glow {
    opacity: 0.5;
  }

  .lp-preview__chart div {
    animation: none;
    opacity: 0.85;
  }
}
