/* GameSearch Premium Landing */

.is-landing {
  --lp-font: "Inter", system-ui, sans-serif;
  --lp-display: "Sora", var(--lp-font);
  --lp-accent: #8b5cf6;
  --lp-accent-2: #22d3ee;
  --lp-accent-glow: rgba(139, 92, 246, 0.5);
  --lp-surface: rgba(255, 255, 255, 0.03);
  --lp-surface-hover: rgba(255, 255, 255, 0.06);
  --lp-border: rgba(255, 255, 255, 0.08);
  --lp-radius: 20px;
  --lp-radius-lg: 28px;
  --lp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.is-landing body,
body.is-landing {
  font-family: var(--lp-font);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Navbar landing mode ── */
.topbar--landing {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 0.45s var(--lp-ease),
    border-color 0.45s var(--lp-ease),
    backdrop-filter 0.45s var(--lp-ease),
    box-shadow 0.45s var(--lp-ease);
}

.topbar--landing.is-scrolled {
  background: rgba(5, 3, 8, 0.72);
  border-bottom-color: var(--lp-border);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.topbar--landing .topbar-inner {
  max-width: 1200px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.nav-toggle:hover {
  background: var(--lp-surface-hover);
  border-color: rgba(255, 255, 255, 0.14);
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--lp-ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  flex: 1;
  min-width: 0;
}

@media (min-width: 901px) {
  .topbar--landing .topbar-inner {
    flex-wrap: nowrap;
    gap: 20px;
  }

  .nav-drawer {
    display: flex;
    justify-content: flex-end;
  }
}

@media (max-width: 900px) {
  .topbar--landing .topbar-inner {
    flex-wrap: wrap;
  }

  .nav-drawer {
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s var(--lp-ease), opacity 0.3s;
  }

  .nav-drawer.is-open {
    max-height: 520px;
    opacity: 1;
    padding-bottom: 8px;
  }
}

.nav--landing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp-border);
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.is-active {
  color: #0c0820;
  background: linear-gradient(135deg, #e9d5ff 0%, #c4b5fd 45%, #93c5fd 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(167, 139, 250, 0.3);
}

@media (max-width: 900px) {
  .topbar--landing .topbar-inner {
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
  }

  .nav--landing {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    flex-direction: column;
    border-radius: var(--lp-radius);
    padding: 8px;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .nav--landing .nav-cta {
    justify-content: center;
    width: 100%;
  }
}

/* ── Custom cursor: disabled ── */

/* ── Layout ── */
.main-area--landing {
  padding-top: 72px;
}

.landing {
  overflow-x: clip;
}

.lp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.lp-container--narrow {
  max-width: 760px;
}

.lp-section {
  padding: clamp(64px, 10vw, 120px) 0;
  position: relative;
}

.lp-section--alt {
  background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
}

.lp-section__head {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.lp-section__head--center {
  text-align: center;
  margin-inline: auto;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 16px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  background: rgba(139, 92, 246, 0.08);
}

.lp-badge--muted {
  color: var(--dim);
  border-color: var(--lp-border);
  background: var(--lp-surface);
}

.lp-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
  animation: lp-pulse 2.5s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.lp-section__title {
  font-family: var(--lp-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--text);
}

.lp-section__lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
}

.lp-section__head--center .lp-section__lead {
  margin-inline: auto;
}

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--lp-ease),
    transform 0.7s var(--lp-ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Hero ── */
.lp-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 8vw, 100px);
  overflow: hidden;
}

.lp-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: lp-float-glow 12s ease-in-out infinite;
}

.lp-hero__glow--1 {
  width: min(70vw, 600px);
  height: min(70vw, 600px);
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
}

.lp-hero__glow--2 {
  width: min(50vw, 400px);
  height: min(50vw, 400px);
  bottom: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
  animation-delay: -6s;
}

@keyframes lp-float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

.lp-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
}

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .lp-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-hero__copy {
    order: 1;
  }

  .lp-hero__visual {
    order: 0;
  }

  .lp-hero__actions,
  .lp-chips {
    justify-content: center;
  }

  .lp-section__lead {
    margin-inline: auto;
  }
}

.lp-hero__title {
  font-family: var(--lp-display);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 24px;
}

.lp-hero__title-line {
  display: block;
  color: var(--text);
}

.lp-hero__title-accent {
  display: block;
  background: linear-gradient(135deg, #e9d5ff 0%, #a78bfa 40%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.3));
}

.lp-hero__lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 48ch;
}

@media (max-width: 960px) {
  .lp-hero__lead {
    margin-inline: auto;
  }
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--lp-ease), box-shadow 0.3s var(--lp-ease);
}

.lp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.lp-btn--primary {
  color: #050308;
  background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 50%, #6366f1 100%);
  box-shadow:
    0 4px 24px var(--lp-accent-glow),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.lp-btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 40px rgba(139, 92, 246, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.lp-btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-border);
  box-shadow: none;
}

.lp-btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(139, 92, 246, 0.1);
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.15);
}

.lp-btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 16px;
}

.lp-btn:active {
  transform: scale(0.98);
}

.lp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-chip {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}

/* ── Hero showcase (3 phones) ── */
.lp-hero__visual {
  display: flex;
  justify-content: center;
  perspective: 1400px;
  min-height: clamp(340px, 52vw, 520px);
}

.lp-showcase {
  position: relative;
  width: min(100%, 480px);
  height: clamp(340px, 52vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-showcase__backdrop {
  position: absolute;
  inset: 8% 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 70% 55% at 50% 55%, rgba(139, 92, 246, 0.28) 0%, transparent 68%),
    radial-gradient(ellipse 45% 35% at 30% 40%, rgba(34, 211, 238, 0.14) 0%, transparent 60%);
  filter: blur(28px);
  pointer-events: none;
  animation: lp-showcase-pulse 8s ease-in-out infinite;
}

@keyframes lp-showcase-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.lp-showcase__phone {
  position: absolute;
  width: 38%;
  max-width: 168px;
  transition: transform 0.55s var(--lp-ease), filter 0.4s ease;
}

.lp-showcase__frame {
  position: relative;
  border-radius: 22px;
  padding: 7px;
  background: linear-gradient(155deg, rgba(52, 46, 72, 0.95) 0%, rgba(18, 14, 28, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
}

.lp-showcase__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%, transparent 70%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
  z-index: 2;
}

.lp-showcase__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  filter: brightness(1.05) contrast(1.04) saturate(1.06);
}

.lp-showcase__phone--left {
  left: 2%;
  bottom: 6%;
  transform: rotate(-14deg) translateY(12px) scale(0.88);
  z-index: 1;
  filter: brightness(0.82) blur(0.2px);
}

.lp-showcase__phone--center {
  left: 50%;
  top: 50%;
  width: 44%;
  max-width: 196px;
  transform: translate(-50%, -50%);
  z-index: 3;
  animation: lp-showcase-center-float 5.5s ease-in-out infinite;
}

.lp-showcase__phone--right {
  right: 2%;
  bottom: 8%;
  transform: rotate(12deg) translateY(16px) scale(0.86);
  z-index: 2;
  filter: brightness(0.88);
}

.lp-showcase__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 65%);
  filter: blur(24px);
  z-index: -1;
  pointer-events: none;
}

@keyframes lp-showcase-center-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@media (hover: hover) {
  .lp-showcase:hover .lp-showcase__phone--left {
    transform: rotate(-10deg) translateY(4px) scale(0.92);
    filter: brightness(0.92);
  }

  .lp-showcase:hover .lp-showcase__phone--right {
    transform: rotate(8deg) translateY(6px) scale(0.9);
    filter: brightness(0.95);
  }

  .lp-showcase:hover .lp-showcase__phone--center {
    animation-play-state: paused;
    transform: translate(-50%, -50%) translateY(-6px) scale(1.02);
  }
}

@media (max-width: 960px) {
  .lp-showcase {
    width: min(100%, 360px);
    height: clamp(300px, 68vw, 420px);
  }

  .lp-showcase__phone--left {
    left: 0;
    transform: rotate(-12deg) translateY(18px) scale(0.82);
  }

  .lp-showcase__phone--right {
    right: 0;
    transform: rotate(10deg) translateY(20px) scale(0.8);
  }

  .lp-showcase__phone--center {
    width: 46%;
  }
}

@media (max-width: 480px) {
  .lp-showcase__phone--left,
  .lp-showcase__phone--right {
    opacity: 0.72;
    width: 34%;
  }
}

/* ── Cards ── */
.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .lp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .lp-benefits-grid { grid-template-columns: 1fr; }
}

.lp-card {
  padding: 28px;
  border-radius: var(--lp-radius);
  transition: transform 0.35s var(--lp-ease), box-shadow 0.35s var(--lp-ease), border-color 0.3s;
}

.lp-card--glass {
  background: linear-gradient(165deg, rgba(28, 22, 48, 0.6) 0%, rgba(12, 10, 20, 0.5) 100%);
  border: 1px solid var(--lp-border);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

@media (hover: hover) {
  .lp-card--glass:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(167, 139, 250, 0.25);
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.35),
      0 0 40px rgba(139, 92, 246, 0.12);
  }
}

.lp-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.lp-card__icon--violet { background: rgba(139, 92, 246, 0.15); color: #c4b5fd; }
.lp-card__icon--cyan { background: rgba(34, 211, 238, 0.12); color: #67e8f9; }
.lp-card__icon--pink { background: rgba(244, 114, 182, 0.12); color: #f9a8d4; }
.lp-card__icon--green { background: rgba(52, 211, 153, 0.12); color: #6ee7b7; }

.lp-card__title {
  font-family: var(--lp-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.lp-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ── Features grid ── */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .lp-features-grid { grid-template-columns: 1fr; }
}

.lp-feature-card {
  padding: 24px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  transition: transform 0.3s var(--lp-ease), border-color 0.3s, background 0.3s;
}

@media (hover: hover) {
  .lp-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.2);
    background: var(--lp-surface-hover);
  }
}

.lp-feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--accent);
  background: rgba(139, 92, 246, 0.1);
}

.lp-feature-card__title {
  font-family: var(--lp-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.lp-feature-card__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ── Carousel wrap ── */
.lp-carousel-wrap {
  max-width: 640px;
  margin-inline: auto;
}

.lp-carousel-wrap .carousel-shell {
  max-width: 100%;
}

/* ── Steps ── */
.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 720px;
}

.lp-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--lp-border);
  align-items: flex-start;
}

.lp-step:last-child {
  border-bottom: none;
}

.lp-step__num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: #e9d5ff;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.3) 0%, rgba(99, 102, 241, 0.15) 100%);
  border: 1px solid rgba(167, 139, 250, 0.3);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.lp-step__title {
  font-family: var(--lp-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.lp-step__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ── Stats ── */
.lp-stats {
  position: relative;
}

.lp-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 768px) {
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.lp-stat {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  transition: transform 0.3s var(--lp-ease), border-color 0.3s;
}

@media (hover: hover) {
  .lp-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.2);
  }
}

.lp-stat__value {
  display: block;
  font-family: var(--lp-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.lp-stat__label {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Testimonials ── */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .lp-testimonials-grid { grid-template-columns: 1fr; }
}

.lp-testimonial {
  margin: 0;
  padding: 28px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: linear-gradient(165deg, rgba(28, 22, 48, 0.5) 0%, rgba(12, 10, 20, 0.4) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.35s var(--lp-ease), box-shadow 0.35s;
}

@media (hover: hover) {
  .lp-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  }
}

.lp-testimonial__stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  margin-bottom: 16px;
}

.lp-testimonial__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 20px;
  font-style: normal;
}

.lp-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-testimonial__author cite {
  font-style: normal;
}

.lp-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--lp-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: #e9d5ff;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(99, 102, 241, 0.2));
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.lp-testimonial__name {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
}

.lp-testimonial__role {
  display: block;
  font-size: 0.75rem;
  color: var(--dim);
  margin-top: 2px;
}

/* ── FAQ ── */
.lp-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-faq__item {
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.lp-faq__item[open] {
  border-color: rgba(167, 139, 250, 0.25);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.08);
}

.lp-faq__q {
  padding: 20px 24px;
  font-family: var(--lp-display);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  transition: color 0.2s;
}

.lp-faq__q::-webkit-details-marker { display: none; }

.lp-faq__q::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23a69bc8' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  transition: transform 0.35s var(--lp-ease);
}

.lp-faq__item[open] .lp-faq__q::after {
  transform: rotate(180deg);
}

.lp-faq__q:hover {
  color: var(--accent);
}

.lp-faq__a {
  padding: 0 24px 20px;
}

.lp-faq__a p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Final CTA ── */
.lp-cta {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}

.lp-cta__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(34, 211, 238, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.lp-cta__inner {
  position: relative;
  text-align: center;
  padding: clamp(48px, 8vw, 72px);
  border-radius: var(--lp-radius-lg);
  border: 1px solid rgba(167, 139, 250, 0.2);
  background: linear-gradient(165deg, rgba(28, 22, 48, 0.7) 0%, rgba(12, 10, 20, 0.6) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(139, 92, 246, 0.1);
}

.lp-cta__title {
  font-family: var(--lp-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  line-height: 1.1;
}

.lp-cta__lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--muted);
  margin: 0 auto 32px;
  max-width: 52ch;
  line-height: 1.7;
}

.lp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Footer ── */
.lp-footer {
  border-top: 1px solid var(--lp-border);
  background: rgba(4, 2, 10, 0.9);
  padding-top: clamp(48px, 8vw, 72px);
}

.lp-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 56px);
}

@media (max-width: 768px) {
  .lp-footer__inner {
    grid-template-columns: 1fr;
  }
}

.brand--footer {
  margin-bottom: 12px;
}

.lp-footer__tagline {
  font-size: 0.875rem;
  color: var(--dim);
  margin: 0;
  max-width: 28ch;
  line-height: 1.6;
}

.lp-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 560px) {
  .lp-footer__cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.lp-footer__col-title {
  font-family: var(--lp-display);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dim);
  margin: 0 0 16px;
}

.lp-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.lp-footer__bottom {
  border-top: 1px solid var(--lp-border);
  padding: 20px 0;
}

.lp-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.lp-footer__copy {
  font-size: 0.8125rem;
  color: var(--dim);
  margin: 0;
}

@media (max-width: 560px) {
  .lp-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero__glow,
  .lp-showcase__phone--center,
  .lp-showcase__backdrop,
  .lp-badge__dot {
    animation: none !important;
  }

  .lp-btn:hover,
  .lp-card--glass:hover,
  .lp-feature-card:hover,
  .lp-stat:hover,
  .lp-testimonial:hover {
    transform: none;
  }
}
