/* =====================================================================
   TRAVELITE — Premium Landing (pixel-accurate recreation)
   Author: Recreated to match reference screenshot
   All new styles namespaced .lp-* to avoid clashing with legacy style.css
   ===================================================================== */

:root {
  --brand: #5b4bff;
  --brand-2: #7c6cff;
  --accent: #27b7ff;
  --bg: #f7f9ff;
  --bg-alt: #eef1fb;
  --dark: #0f172a;
  --ink: #1b2138;
  --muted: #6b7392;
  --line: #eaecf6;
  --card: #ffffff;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow-sm: 0 8px 24px rgba(30, 34, 90, 0.06);
  --shadow-md: 0 18px 50px rgba(45, 40, 120, 0.12);
  --shadow-lg: 0 34px 90px rgba(45, 40, 120, 0.22);
  --grad: linear-gradient(135deg, #5b4bff 0%, #7c6cff 55%, #27b7ff 120%);
  --grad-soft: linear-gradient(135deg, #eeebff, #e6f1ff);
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body.lp-body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.lp-body a {
  text-decoration: none;
  color: inherit;
}
.lp-body img {
  max-width: 100%;
  display: block;
}
.lp-tcard img {
  display: unset;
}
/* full-width layout — the container spans the viewport with fluid side gutters */
.lp-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.4vw, 70px);
}
.lp-section {
  padding: 96px 0;
}
.lp-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.lp-h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0;
}
.lp-sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 14px 0 0;
}
.lp-center {
  text-align: center;
}
.lp-grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ HEADER ============ */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: 0.35s;
}
.lp-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 24px rgba(30, 34, 90, 0.07);
  padding: 12px 0;
}
.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.lp-logo svg {
  width: 30px;
  height: 30px;
}
.lp-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-menu a {
  font-size: 15px;
  font-weight: 600;
  color: #2b3350;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}
.lp-menu a:hover {
  color: var(--brand);
}
/* light header text while transparent over the dark hero top */
.lp-header:not(.scrolled) .lp-logo {
  color: #fff;
}
.lp-header:not(.scrolled) .lp-menu a {
  color: rgba(255, 255, 255, 0.88);
}
.lp-header:not(.scrolled) .lp-menu a:hover {
  color: #fff;
}
.lp-header:not(.scrolled) .lp-nav-toggle span {
  background: #fff;
}
.lp-badge-new {
  background: var(--grad);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.lp-caret {
  font-size: 10px;
  opacity: 0.6;
}
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 40px;
  padding: 13px 26px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.28s,
    translate 0.28s,
    scale 0.28s,
    box-shadow 0.28s,
    background-color 0.28s,
    color 0.28s,
    border-color 0.28s,
    gap 0.28s;
}
.lp-btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 30px rgba(91, 75, 255, 0.35);
}
.lp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(91, 75, 255, 0.45);
}
.lp-btn-ghost {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.lp-btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.lp-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.lp-nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 3px;
  transition: 0.3s;
}
/* =====================================================================
   HERO — split layout: copy (left) + device mockup composition (right)
   ===================================================================== */
.lp-hero {
  position: relative;
  padding: 132px 0 60px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      90% 60% at 78% 18%,
      rgba(56, 52, 150, 0.55),
      transparent 62%
    ),
    radial-gradient(
      70% 55% at 18% 30%,
      rgba(94, 58, 170, 0.42),
      transparent 66%
    ),
    linear-gradient(160deg, #0b0a2b 0%, #100e35 42%, #161042 72%, #120f33 100%);
}
.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    100% 70% at 50% 120%,
    rgba(91, 75, 255, 0.22),
    transparent 60%
  );
}

/* ambient glows */
.lp-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.lp-hero-glow span {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.lp-hero-glow .g1 {
  width: 520px;
  height: 520px;
  left: -8%;
  top: 40px;
  background: rgba(124, 108, 255, 0.34);
  animation: lpGlow 12s ease-in-out infinite;
}
.lp-hero-glow .g2 {
  width: 560px;
  height: 560px;
  right: 2%;
  top: -60px;
  background: rgba(39, 183, 255, 0.2);
  animation: lpGlow 15s ease-in-out infinite reverse;
}
.lp-hero-glow .g3 {
  width: 460px;
  height: 460px;
  left: 34%;
  bottom: -140px;
  background: rgba(163, 74, 255, 0.22);
  animation: lpGlow 17s ease-in-out infinite;
}
@keyframes lpGlow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1) translateY(0);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.15) translateY(-22px);
  }
}

/* dot grid (right side) */
.lp-hero-dots {
  position: absolute;
  right: -40px;
  top: 70px;
  width: 560px;
  height: 420px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.34) 1.3px,
    transparent 1.3px
  );
  background-size: 22px 22px;
  -webkit-mask: radial-gradient(70% 70% at 78% 30%, #000, transparent 72%);
  mask: radial-gradient(70% 70% at 78% 30%, #000, transparent 72%);
}

/* floating light particles */
.lp-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.lp-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  animation: lpParticle linear infinite;
}
@keyframes lpParticle {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.6);
  }
  10% {
    opacity: 0.9;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) scale(1);
  }
}

/* airplane flight layer */
.lp-flight-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  pointer-events: none;
}
.lp-flightpath {
  opacity: 0.6;
}
.lp-plane-g {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.5));
}

/* ---------- grid ---------- */
.lp-hero-grid {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 620px;
  padding-bottom: 66px;
}
.lp-hero-grid > * {
  min-width: 0;
}

/* ---------- left copy ---------- */
.lp-hero-copy {
  max-width: 600px;
}
.lp-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 11px 22px;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(6, 4, 30, 0.35);
  margin-bottom: 30px;
}
.lp-hero-pill i {
  font-size: 13px;
  color: #9b8cff;
}

.lp-hero-title {
  position: relative;
  margin: 0 0 8px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2.5px;
  line-height: 1.02;
}
.lp-line {
  display: block;
}
.lp-line-top {
    font-size: clamp(40px, 7.5vw, 72px);
    font-weight: 800;
    color: #fff;
}
.lp-line-hero {
  font-size: clamp(40px, 7.5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
}
.lp-word {
  display: inline-block;
  white-space: nowrap;
}
.lp-grad-anim {
  background: linear-gradient(
    96deg,
    #8b5cf6 0%,
    #7c6cff 22%,
    #4f8bff 60%,
    #22d3ee 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 40px rgba(99, 102, 241, 0.45));
}
.lp-line-sub {
  position: relative;
  display: inline-block;
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 54px);
  letter-spacing: 0;
  color: #fff;
  margin-top: 10px;
  padding-right: 6px;
}
.lp-line-swoosh {
  position: absolute;
  right: 2px;
  bottom: -15px;
  width: 94px;
  height: 11px;
  opacity: 0.95;
}
/* char split */
.lp-char {
  display: inline-block;
  will-change: transform, opacity;
}
.lp-char.lp-space {
  width: 0.28em;
}

.lp-hero-desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.72;
  max-width: 470px;
  margin: 22px 0 34px;
  font-weight: 400;
}
.lp-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.lp-play {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  margin-right: 2px;
  box-shadow: 0 6px 16px rgba(91, 75, 255, 0.5);
}

/* ---------- social proof (avatars · rating · developer count) ---------- */
.lp-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-proof-rate {
  display: flex;
  align-items: center;
  gap: 13px;
}
.lp-avatars {
  display: flex;
}
.lp-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.85);
  margin-left: -11px;
  box-shadow: 0 6px 16px rgba(4, 2, 26, 0.5);
  transition: transform 0.3s;
}
.lp-avatars img:first-child {
  margin-left: 0;
}
.lp-avatars img:hover {
  transform: translateY(-4px) scale(1.06);
  z-index: 2;
}
.lp-proof-stars {
  color: #ffc64b;
  font-size: 16px;
  letter-spacing: 1.5px;
  line-height: 1.1;
}
.lp-proof-rate span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}
.lp-proof-sep {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.14);
}
.lp-proof-trust {
  display: flex;
  align-items: center;
  gap: 11px;
}
.lp-proof-ic {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 108, 255, 0.16);
  border: 1px solid rgba(124, 108, 255, 0.3);
  color: #9b8cff;
  font-size: 15px;
}
.lp-proof-trust b {
  display: block;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.lp-proof-trust span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.lp-laurel {
  width: 28px;
  height: 26px;
  margin-left: 4px;
  opacity: 0.9;
  flex: 0 0 auto;
}

/* =====================================================================
   PREMIUM BUTTONS — shine · gradient · glow · scale · magnetic
   ===================================================================== */
.lp-btn-magnetic {
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.lp-btn-primary {
  background: var(--grad);
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
  box-shadow:
    0 14px 34px rgba(91, 75, 255, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.lp-btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 22px 50px rgba(91, 75, 255, 0.6),
    0 0 40px rgba(39, 183, 255, 0.4);
}
.lp-btn-primary i {
  transition: transform 0.3s;
}
.lp-btn-primary:hover i {
  transform: translateX(5px);
}
.lp-btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 14px 28px 14px 20px;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(6, 4, 30, 0.3);
}
.lp-btn-glass:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.35);
}
/* `.lp-body a{color:inherit}` outranks a single button class — restate at matching specificity */
.lp-body a.lp-btn-primary,
.lp-body a.lp-btn-glass {
  color: #fff;
}
/* shine sweep */
.lp-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}
.lp-shine:hover::after {
  animation: lpShine 0.9s ease;
}
@keyframes lpShine {
  0% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}

/* =====================================================================
   HERO VISUAL — laptop + phone mockup image (bleeds toward the right edge)
   ===================================================================== */
.lp-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  perspective: 1600px;
}
/* tilt uses `rotate`, float uses `translate`, reveal uses `scale` — three independent
   transform properties, so none of them clobber the others */
/* `.lp-body img{max-width:100%}` outranks a single class — hence `.lp-body img.lp-hero-img` */
.lp-body img.lp-hero-img {
  max-width: none;
}
.lp-hero-img {
  width: clamp(420px, calc(58vw - 20px), 1140px);
  height: auto;
  margin-right: -54px;
  rotate: y var(--ry, 0deg);
  filter: drop-shadow(0 50px 90px rgba(2, 2, 24, 0.6))
    drop-shadow(0 0 60px rgba(91, 75, 255, 0.22));
  animation: lpImgFloat 9s ease-in-out infinite;
}
@keyframes lpImgFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -16px;
  }
}
.lp-hero-img.lp-reveal {
  transform: none;
  opacity: 0;
  scale: 0.96;
}
.lp-hero-img.lp-reveal.in {
  opacity: 1;
  scale: 1;
  transition:
    opacity 0.9s cubic-bezier(0.16, 0.84, 0.44, 1),
    scale 0.9s cubic-bezier(0.16, 0.84, 0.44, 1);
}
/* soft brand glow behind the mockup */
.lp-hero-visual::before {
  content: "";
  position: absolute;
  right: -4%;
  top: 50%;
  width: 78%;
  height: 70%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(124, 108, 255, 0.3),
    transparent 68%
  );
  filter: blur(70px);
}
/* dashed orbit ring behind the devices */
.lp-orbit {
  position: absolute;
  left: -8%;
  top: 50%;
  width: min(34vw, 470px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  border: 1.5px dashed rgba(255, 255, 255, 0.16);
  animation: lpOrbit 60s linear infinite;
}
@keyframes lpOrbit {
  to {
    rotate: 360deg;
  }
}

/* floating Lighthouse score card */
.lp-score {
  position: absolute;
  right: 0;
  top: 11%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 16px;
  background: linear-gradient(
    150deg,
    rgba(32, 26, 84, 0.82),
    rgba(14, 12, 44, 0.82)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 50px rgba(2, 2, 24, 0.55);
  animation: lpScoreFloat 7s ease-in-out infinite;
}
@keyframes lpScoreFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}
.lp-score-gauge {
  width: 44px;
  height: 30px;
  flex: 0 0 auto;
}
.lp-score b {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.lp-score span {
  font-size: 11.5px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.6);
}

/* reveal helper (JS toggles .in) */
.lp-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
}
.lp-reveal.in {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.8s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}

/* =====================================================================
   HERO BARS — spec strip + highlight strip (rounded glass cards)
   ===================================================================== */
.lp-specs,
.lp-hbar {
  position: relative;
  z-index: 6;
  display: grid;
  align-items: center;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.028)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 50px rgba(2, 2, 24, 0.35);
}
.lp-specs {
  grid-template-columns: repeat(8, 1fr);
  padding: 18px 10px;
  margin-bottom: 16px;
}
.lp-hbar {
  grid-template-columns: repeat(5, 1fr);
  padding: 20px 10px;
}

.lp-spec {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  min-width: 0;
}
.lp-spec + .lp-spec::before,
.lp-hb + .lp-hb::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
}
.lp-spec i {
  font-size: 19px;
  width: 22px;
  text-align: center;
  flex: 0 0 auto;
  transition: transform 0.3s;
}
.lp-spec:hover i {
  transform: translateY(-3px) scale(1.12);
}
.lp-spec b {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
}
.lp-spec span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.lp-hb {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  min-width: 0;
}
.lp-hb-ic {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: 0.35s;
  box-shadow: 0 12px 24px rgba(2, 2, 24, 0.4);
}
.lp-hb-ic.b1 {
  background: linear-gradient(140deg, #4f8bff, #22d3ee);
}
.lp-hb-ic.b2 {
  background: linear-gradient(140deg, #7c6cff, #4f8bff);
}
.lp-hb-ic.b3 {
  background: linear-gradient(140deg, #a855f7, #7c6cff);
}
.lp-hb-ic.b4 {
  background: linear-gradient(140deg, #22d3ee, #3ed598);
}
.lp-hb-ic.b5 {
  background: linear-gradient(140deg, #ff6fb1, #a855f7);
}
.lp-hb:hover .lp-hb-ic {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 32px rgba(91, 75, 255, 0.5);
}
.lp-hb b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.32;
}
.lp-hb span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}
.lp-hb-ic i {
  color: #fff;
  font-size: 22px;
}

/* =====================================================================
   ALL DEMOS — shot card · badge · footer row · closing bar
   NOTE: AOS owns `transform` on [data-aos] elements
   ([data-aos^=fade][data-aos^=fade].aos-animate = 0,3,0), so every hover
   lift here uses the independent `translate` property instead.
   ===================================================================== */
.lp-demos-sec {
  position: relative;
  overflow: hidden;
}
.lp-demos-sec .lp-container {
  position: relative;
  z-index: 2;
  max-width: 1720px;
}
.lp-demos-sec .lp-deco-dots.d2 {
  left: 2.5%;
  top: 90px;
  bottom: auto;
  width: 190px;
  height: 160px;
}
.lp-dm-trail {
  position: absolute;
  right: 2%;
  top: 40px;
  width: 250px;
  height: 100px;
  pointer-events: none;
  opacity: 0.85;
}
.lp-dm-plane {
  position: absolute;
  right: 2.4%;
  top: 30px;
  width: 46px;
  pointer-events: none;
  rotate: -10deg;
  filter: drop-shadow(0 10px 20px rgba(91, 75, 255, 0.35));
}

.lp-dgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.lp-dcard {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid rgba(91, 75, 255, 0.07);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 16px 40px rgba(45, 40, 120, 0.08);
  transition:
    translate 0.4s cubic-bezier(0.16, 0.84, 0.44, 1),
    box-shadow 0.4s,
    border-color 0.4s;
}
.lp-dcard:hover {
  translate: 0 -8px;
  box-shadow: 0 34px 64px rgba(45, 40, 120, 0.17);
  border-color: rgba(91, 75, 255, 0.2);
}

.lp-dshot {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #eef1fb;
  aspect-ratio: 16/10;
}
.lp-body .lp-dshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 3.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lp-dcard:hover .lp-dshot img {
  transform: translateY(-7%) scale(1.05);
}
.lp-dshot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(20, 14, 54, 0) 55%,
    rgba(20, 14, 54, 0.35)
  );
  opacity: 0;
  transition: 0.4s;
}
.lp-dcard:hover .lp-dshot::after {
  opacity: 1;
}

.lp-dbadge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 13px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--a), var(--b));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--b) 45%, transparent);
}

/* highlighted "New" flag — sits above the card's top edge on the newest demo */
.lp-dcard-new {
  border-color: rgba(91, 75, 255, 0.28);
  box-shadow: 0 20px 46px rgba(91, 75, 255, 0.22);
}
.lp-dnew {
  position: absolute;
  top: -13px;
  right: 20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(135deg, #ff5e7a, #e11d48);
  box-shadow: 0 10px 22px rgba(225, 29, 72, 0.45);
  animation: lpNewPulse 2.4s ease-in-out infinite;
}
.lp-dnew i {
  font-size: 10px;
}
@keyframes lpNewPulse {
  0%,
  100% {
    box-shadow:
      0 10px 22px rgba(225, 29, 72, 0.45),
      0 0 0 0 rgba(225, 29, 72, 0.4);
  }
  60% {
    box-shadow:
      0 10px 22px rgba(225, 29, 72, 0.45),
      0 0 0 12px rgba(225, 29, 72, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-dnew {
    animation: none;
  }
}

.lp-dfoot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 10px 10px;
}
.lp-dic {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--tone);
  background: var(--tint);
  transition: 0.35s;
}
.lp-dcard:hover .lp-dic {
  color: #fff;
  background: var(--tone);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--tone) 40%, transparent);
}
.lp-dtxt {
  flex: 1 1 auto;
  min-width: 0;
}
.lp-dtxt b {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 4px;
}
.lp-dtxt em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}
.lp-dlink {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
  transition: gap 0.3s;
}
.lp-dcard:hover .lp-dlink {
  gap: 12px;
}
.lp-body a.lp-dcard {
  color: inherit;
}

/* closing bar — shares .lp-why-cta with the Why Choose section */
.lp-dcta {
  margin-top: 42px;
  gap: 22px;
}
.lp-wc-txt {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 340px;
}
.lp-wc-txt h4 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.lp-wc-txt p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 500;
}

/* =====================================================================
   BENTO FEATURES — showcase card · feature grid · Lighthouse panel
   ===================================================================== */
.lp-bento-sec {
  position: relative;
  overflow: hidden;
}
.lp-bento-sec .lp-container {
  position: relative;
  z-index: 2;
  max-width: 1720px;
}
.lp-bento-sec .lp-deco-dots.d2 {
  left: 1.5%;
  top: 40px;
  bottom: auto;
  width: 210px;
  height: 180px;
}
.lp-bt-arc {
  position: absolute;
  left: 6%;
  top: 60px;
  width: 260px;
  height: 180px;
  pointer-events: none;
  opacity: 0.9;
}
.lp-bt-plane {
  position: absolute;
  left: 14%;
  top: 56px;
  width: 52px;
  pointer-events: none;
  rotate: -24deg;
  opacity: 0.5;
}
.lp-bt-stamp {
  position: absolute;
  right: 3.5%;
  top: 34px;
  width: 190px;
  height: 124px;
  pointer-events: none;
  color: #5b4bff;
  opacity: 0.16;
  rotate: -7deg;
}

.lp-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 1.18fr) minmax(0, 0.92fr);
  gap: 24px;
}
.lp-bento-card {
  background: #fff;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* ---------- left showcase ---------- */
.lp-bento-left {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 34px 34px 0;
  background: linear-gradient(165deg, #ffffff 0%, #f6f7ff 55%, #eef2ff 100%);
}
.lp-bento-left .lp-eyebrow {
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 2.4px;
}
.lp-bento-left h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--ink);
}
.lp-bl-rule {
  display: block;
  width: 52px;
  height: 3px;
  margin: 12px 0 16px;
  border-radius: 3px;
  background: var(--grad);
}
.lp-bento-left > p {
  margin: 0 0 22px;
  max-width: 330px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.lp-bl-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
  padding: 11px 20px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #6d5cff, #4f7bff);
  box-shadow: 0 14px 30px rgba(76, 58, 220, 0.34);
}
.lp-bl-badge > i {
  font-size: 17px;
  opacity: 0.9;
}
.lp-bl-badge b {
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}
.lp-bl-badge em {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  opacity: 0.82;
}

.lp-bento-left .lp-mock {
  position: relative;
  margin-top: auto;
  padding-top: 26px;
  text-align: center;
}
.lp-body .lp-bento-left .lp-mock > img {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(45, 40, 120, 0.22));
}
.lp-bento-plane {
  position: absolute;
  right: 15%;
  top: 23%;
  width: 72px;
  opacity: 0.9;
  z-index: 2;
  rotate: -14deg;
  filter: drop-shadow(0 10px 18px rgba(45, 40, 120, 0.22));
}

/* floating stat cards over the mockup */
.lp-fcard {
  position: absolute;
  z-index: 4;
  display: block;
  background: #fff;
  border-radius: 14px;
  padding: 11px 13px;
  text-align: left;
  box-shadow: 0 16px 34px rgba(45, 40, 120, 0.16);
  border: 1px solid rgba(91, 75, 255, 0.07);
}
.lp-fc-book {
  right: -6px;
  top: 34px;
  width: 168px;
  animation: lpFloat 7s ease-in-out infinite;
}
.lp-fc-head {
  display: flex;
  align-items: center;
  gap: 9px;
}
.lp-fc-head > i {
  color: #22c55e;
  font-size: 17px;
}
.lp-fc-head b {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.lp-fc-head em {
  display: block;
  font-style: normal;
  font-size: 10px;
  color: var(--muted);
}
.lp-fc-track {
  position: relative;
  display: block;
  height: 4px;
  margin-top: 9px;
  border-radius: 4px;
  background: #e9ecf9;
}
.lp-fc-fill {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: 4px;
  background: var(--grad);
}
.lp-fc-track > i {
  position: absolute;
  left: 70%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 9px;
  color: var(--brand);
}
.lp-fc-review {
  left: -8px;
  bottom: 22px;
  width: 150px;
  animation: lpFloat 8.5s ease-in-out infinite reverse;
}
.lp-fc-review > b {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}
.lp-fc-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 5px 0 3px;
}
.lp-fc-stars i {
  font-size: 10px;
  color: #fbbf24;
}
.lp-fc-stars strong {
  margin-left: 7px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.lp-fc-review > em {
  display: block;
  font-style: normal;
  font-size: 9.5px;
  color: var(--muted);
}
.lp-fc-chart {
  right: -6px;
  bottom: 14px;
  width: 150px;
  animation: lpFloat 9.5s ease-in-out infinite;
}
.lp-fc-chead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.lp-fc-chead b {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink);
}
.lp-fc-chead em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: #16a34a;
}
.lp-fc-chart svg {
  width: 100%;
  height: 30px;
  margin-top: 5px;
  display: block;
}

/* ---------- middle feature grid ---------- */
.lp-bento-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lp-mini {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition:
    translate 0.32s cubic-bezier(0.16, 0.84, 0.44, 1),
    box-shadow 0.32s,
    border-color 0.32s;
  align-self: center;
}
/* `translate`, not `transform` — AOS owns transform on [data-aos] elements */
.lp-mini:hover {
  translate: 0 -6px;
  box-shadow: var(--shadow-md);
  border-color: rgba(91, 75, 255, 0.18);
}
.lp-mini-ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  background: linear-gradient(140deg, var(--a), var(--b));
  box-shadow: 0 12px 24px color-mix(in srgb, var(--b) 40%, transparent);
  transition: scale 0.32s;
}
.lp-mini-ic-txt {
  font-size: 19px;
  font-weight: 800;
}
.lp-mini:hover .lp-mini-ic {
  scale: 1.07;
}
.lp-mini h5 {
  margin: 0 0 5px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.lp-mini p {
  margin: 0;
  font-size: 12.8px;
  color: var(--muted);
  line-height: 1.6;
}
.lp-mini-go {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--muted);
  background: #f0f2fc;
  transition: 0.3s;
  display: none;
}
.lp-mini:hover .lp-mini-go {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 18px rgba(91, 75, 255, 0.4);
}

/* ---------- right Lighthouse panel ---------- */
.lp-perf {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 28px 24px 24px;
  color: #fff;
  background: radial-gradient(
    120% 80% at 20% 0%,
    #241a52 0%,
    #151034 45%,
    #0d0a22 100%
  );
}
.lp-perf-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 6px;
}
.lp-perf .lp-eyebrow {
  margin-bottom: 4px;
  color: #a99cff;
  font-size: 11.5px;
  letter-spacing: 2.2px;
}
.lp-perf-top h4 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}
.lp-perf-badge {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(140deg, #7c6cff, #5b4bff);
  box-shadow: 0 10px 22px rgba(91, 75, 255, 0.5);
}
.lp-perf-gauge {
  position: relative;
  text-align: center;
  margin: 10px 0 24px;
}
.lp-perf-gauge svg {
  margin: 0 auto;
  display: block;
}
.lp-perf-gauge .lp-gnum {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.lp-perf-gauge .lp-gnum b {
  display: block;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}
.lp-perf-gauge .lp-gnum small {
  font-size: 12px;
  opacity: 0.55;
}
.lp-gbolt {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  font-size: 15px;
  color: #fbbf24;
}
.lp-perf-bar {
  margin-bottom: 14px;
}
.lp-perf-bar .lp-pb-top {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  margin-bottom: 6px;
}
.lp-perf-bar .lp-pb-top span {
  color: rgba(255, 255, 255, 0.72);
}
.lp-perf-bar .lp-pb-top b {
  font-weight: 700;
}
.lp-pb-track {
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.11);
  overflow: hidden;
}
.lp-pb-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #7c6cff, #4f8bff);
  width: 0;
  transition: width 1.4s ease;
}
.lp-perf-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.lp-perf-tiles span {
  display: block;
  text-align: center;
  padding: 14px 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}
.lp-perf-tiles span:hover {
  background: rgba(255, 255, 255, 0.1);
  translate: 0 -3px;
}
.lp-perf-tiles i {
  font-size: 17px;
}
.lp-perf-tiles b {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
}
.lp-perf-tiles em {
  display: block;
  font-style: normal;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* =====================================================================
   AI TOOLS — dark section: feature cards flanking a browser mockup
   ===================================================================== */
.lp-ai {
  position: relative;
  overflow: hidden;
  padding: 104px 0 96px;
  background: radial-gradient(
    80% 60% at 50% -10%,
    #1b1a52 0%,
    #0f0f36 45%,
    #080a22 100%
  );
}
.lp-ai-stars {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 62% 12%, #fff, transparent),
    radial-gradient(1px 1px at 84% 44%, #fff, transparent),
    radial-gradient(1px 1px at 28% 68%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 92% 78%, #fff, transparent),
    radial-gradient(1px 1px at 8% 52%, #fff, transparent);
}
.lp-ai .lp-container {
  position: relative;
  z-index: 2;
}

.lp-ai-stage {
  display: grid;
  grid-template-columns: minmax(0, 290px) minmax(0, 1fr) minmax(0, 290px);
  gap: 34px;
  align-items: center;
  margin-top: 14px;
}
.lp-ai-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-aic {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  border-radius: 18px;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.35s;
}
.lp-aic:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 108, 255, 0.5);
  box-shadow: 0 22px 44px rgba(4, 4, 30, 0.6);
}
.lp-aic-ic {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 10px 22px rgba(4, 4, 30, 0.5);
}
.lp-aic-ic.g1 {
  background: linear-gradient(150deg, #a78bfa, #7c3aed);
}
.lp-aic-ic.g2 {
  background: linear-gradient(150deg, #60a5fa, #2563eb);
}
.lp-aic-ic.g3 {
  background: linear-gradient(150deg, #38bdf8, #0ea5e9);
}
.lp-aic-ic.g4 {
  background: linear-gradient(150deg, #f472b6, #db2777);
}
.lp-aic-ic.g5 {
  background: linear-gradient(150deg, #38bdf8, #2563eb);
}
.lp-aic-ic.g6 {
  background: linear-gradient(150deg, #a78bfa, #6366f1);
}
.lp-aic h5 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.lp-aic p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}
/* dotted connectors into the browser */
.lp-aic::after,
.lp-aic::before {
  content: "";
  position: absolute;
  top: 50%;
  pointer-events: none;
  opacity: 0;
}
.lp-aic::after {
  width: 44px;
  border-top: 2px dashed rgba(124, 108, 255, 0.55);
}
.lp-aic::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7c6cff;
  box-shadow: 0 0 12px rgba(124, 108, 255, 0.9);
  transform: translateY(-50%);
}
.lp-ai-left .lp-aic::after {
  left: 100%;
}
.lp-ai-left .lp-aic::before {
  left: calc(100% + 42px);
}
.lp-ai-right .lp-aic::after {
  right: 100%;
}
.lp-ai-right .lp-aic::before {
  right: calc(100% + 42px);
}
/* only where there is room between the cards and the browser */
@media (min-width: 1200px) {
  .lp-aic::after,
  .lp-aic::before {
    opacity: 1;
  }
}

/* ---- browser mockup ---- */
.lp-ai-browser {
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  background: #141735;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 50px 100px rgba(2, 2, 24, 0.7);
  position: relative;
  z-index: 1;
}
.lp-brw-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: #1b1f42;
}
.lp-brw-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}
.lp-brw-bar .d1 {
  background: #ff5f57;
}
.lp-brw-bar .d2 {
  background: #febc2e;
}
.lp-brw-bar .d3 {
  background: #28c840;
}
.lp-brw-url {
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 4px 16px;
}
.lp-brw-screen {
  background: #fff;
}
.lp-brw-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
}
.lp-brw-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 800;
  color: #101636;
}
.lp-brw-logo svg {
  width: 15px;
  height: 15px;
}
.lp-brw-nav ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.lp-brw-nav li {
  font-size: 10.5px;
  font-weight: 600;
  color: #3d4468;
  white-space: nowrap;
}
.lp-brw-nav b {
  font-size: 8px;
  opacity: 0.6;
  font-weight: 400;
}
.lp-brw-btn {
  background: #2f5cf6;
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 8px;
}
.lp-brw-hero {
  position: relative;
  margin: 0 14px;
  border-radius: 12px;
  overflow: hidden;
  min-height: 250px;
  background: url("../images/feature-adventure.jpg") center 30% / cover
    no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lp-brw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.95) 22%,
    rgba(255, 255, 255, 0.35) 48%,
    transparent 70%
  );
}
.lp-brw-copy {
  position: relative;
  padding: 26px 26px 0;
}
.lp-brw-copy h4 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  color: #101636;
  letter-spacing: -0.6px;
}
.lp-brw-copy h4 span {
  color: #2f5cf6;
}
.lp-brw-copy p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: #4a5273;
}
.lp-brw-search {
  position: relative;
  margin: 20px 14px 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(16, 22, 54, 0.16);
}
.lp-brw-tabs {
  display: flex;
  gap: 2px;
  padding: 6px 6px 0;
}
.lp-brw-tabs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: #6b7392;
  padding: 8px 16px;
  border-radius: 8px 8px 0 0;
}
.lp-brw-tabs span.active {
  background: #fff;
  color: #2f5cf6;
  box-shadow: 0 -2px 8px rgba(16, 22, 54, 0.08);
}
.lp-brw-fields {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 12px;
  border-top: 1px solid #eef0f7;
}
.lp-brw-fields > div {
  flex: 1;
  min-width: 0;
}
.lp-brw-fields label {
  display: block;
  font-size: 9px;
  color: #98a0bc;
  margin-bottom: 2px;
}
.lp-brw-fields b {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  color: #101636;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-brw-go {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2f5cf6;
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(47, 92, 246, 0.35);
}
.lp-brw-body {
  padding: 14px 18px 18px;
}
.lp-brw-bhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.lp-brw-bhead b {
  font-size: 13px;
  font-weight: 800;
  color: #101636;
}
.lp-brw-bhead span {
  font-size: 10px;
  font-weight: 600;
  color: #2f5cf6;
}
.lp-brw-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}
.lp-brw-cards > div {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  aspect-ratio: 0.82;
}
.lp-brw-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-brw-cards > div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 10, 32, 0.8));
}
.lp-brw-cards i {
  position: absolute;
  right: 6px;
  top: 6px;
  z-index: 2;
  font-size: 9px;
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(10, 12, 40, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-brw-cards em {
  position: absolute;
  left: 8px;
  bottom: 7px;
  z-index: 2;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.lp-brw-cards em span {
  display: block;
  font-size: 8.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* ---- tech strip ---- */
.lp-ai-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 44px;
  padding: 20px 10px;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lp-aib {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 16px;
  min-width: 0;
}
.lp-aib + .lp-aib::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
}
.lp-aib-ic {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(150deg, var(--a), var(--b));
  box-shadow: 0 10px 22px rgba(4, 4, 30, 0.5);
  transition: 0.35s;
}
.lp-aib:hover .lp-aib-ic {
  transform: translateY(-4px) scale(1.06);
}
.lp-aib h6 {
  margin: 0 0 3px;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}
.lp-aib span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}
.lp-aib span b, .lp-aib span i{
  color:#ffff;
}

/* =====================================================================
   WHY CHOOSE — stat row · AI promo + feature bento · closing bar
   Hover lifts use `translate` (not `transform`) because AOS owns
   transform on [data-aos] elements.
   ===================================================================== */
.lp-why-sec {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9ff 0%, #f3f2fd 50%, #f7f9ff 100%);
}
.lp-why-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}
.lp-why-blob.b1 {
  right: -120px;
  top: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(167, 139, 250, 0.4),
    transparent 70%
  );
}
.lp-why-blob.b2 {
  right: -100px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.32),
    transparent 70%
  );
}
.lp-why-route {
  position: absolute;
  left: 0;
  top: 90px;
  width: 330px;
  height: 290px;
  pointer-events: none;
  opacity: 0.9;
}
.lp-why-plane {
  position: absolute;
  left: 13%;
  top: 96px;
  width: 62px;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(91, 75, 255, 0.32));
  rotate: -32deg;
}
.lp-why-stamp {
  position: absolute;
  right: 3%;
  top: 120px;
  width: 190px;
  height: 190px;
  pointer-events: none;
  color: #5b4bff;
  opacity: 0.09;
  rotate: -10deg;
}
.lp-why-sec .lp-container {
  position: relative;
  z-index: 2;
  max-width: 1720px;
}

/* ---------- bento: promo card (left) + feature cards (right) ---------- */
/* Two explicit rows shared by both columns — each row sizes to its tallest
   card, so the promo and the small cards line up with the grid beside them.
   (Nested flex columns instead would stretch each other circularly.) */
.lp-why-bento {
  display: grid;
  grid-template-columns: minmax(0, 33fr) minmax(0, 67fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.lp-promo {
  grid-column: 1;
  grid-row: 1;
}
.lp-why-left-row {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: stretch;
}
.lp-why-r1 {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-content: stretch;
}
.lp-why-r2 {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-content: stretch;
}

.lp-promo {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 24px;
  padding: 34px 30px;
  background: linear-gradient(140deg, #6d4bff 0%, #5b4bff 45%, #4f7bff 100%);
  box-shadow: 0 26px 60px rgba(76, 58, 220, 0.34);
}
.lp-promo-glow {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35),
    transparent 68%
  );
}
/* :not(.lp-promo-glow) — otherwise this would flip the glow back to
   position:relative and it would take part in the flex flow */
.lp-promo > *:not(.lp-promo-glow) {
  position: relative;
  z-index: 2;
}
.lp-promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 16px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.lp-promo h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 1.9vw, 31px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.8px;
  color: #fff;
}
.lp-promo p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.84);
  max-width: 340px;
}
.lp-promo-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  background: #fff;
  color: var(--brand);
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(20, 12, 80, 0.24);
  transition: 0.3s;
}
.lp-promo-btn:hover {
  gap: 16px;
  translate: 0 -3px;
  box-shadow: 0 22px 42px rgba(20, 12, 80, 0.32);
}
.lp-body a.lp-promo-btn {
  color: var(--brand);
}

/* ---------- feature card ---------- */
.lp-why {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(91, 75, 255, 0.07);
  border-radius: 22px;
  padding: 30px 20px 26px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(45, 40, 120, 0.07);
  transition: 0.35s;
}
.lp-why:hover {
  translate: 0 -8px;
  box-shadow: 0 28px 56px rgba(45, 40, 120, 0.16);
  border-color: rgba(91, 75, 255, 0.18);
}
.lp-why-ic {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  background: var(--tint, rgba(124, 108, 255, 0.11));
  color: var(--tone, var(--brand));
  transition: 0.35s;
}
.lp-why-ic-txt {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.lp-why:hover .lp-why-ic {
  background: var(--tone, var(--brand));
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 14px 28px
    color-mix(in srgb, var(--tone, #5b4bff) 42%, transparent);
}
.lp-why h5 {
  margin: 0 0 9px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.lp-why p {
  margin: 0 0 18px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.64;
}
.lp-why-line {
  display: block;
  width: 30px;
  height: 3px;
  margin: 0 auto;
  border-radius: 3px;
  background: var(--tone, var(--brand));
  opacity: 0.45;
  transition: 0.35s;
}
.lp-why:hover .lp-why-line {
  width: 56px;
  opacity: 1;
}

/* ---------- closing bar ---------- */
.lp-why-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 44px auto 0;
  padding: 22px 30px;
  background: #fff;
  border: 1px solid rgba(91, 75, 255, 0.09);
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(45, 40, 120, 0.1);
}
.lp-wc-ic {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(124, 108, 255, 0.11);
  color: var(--brand);
}
.lp-why-cta > p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 500;
}
.lp-wc-checks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.lp-wc-checks span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.lp-wc-checks span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(91, 75, 255, 0.16);
}
.lp-wc-checks i {
  color: var(--brand);
  font-size: 14px;
}

/* suitcase + leaves — the art overhangs the top of the bar, so the bar keeps
   room for it with padding-left rather than letting it overlap the copy */
.lp-why-sec .lp-why-cta {
  padding-left: 150px;
}
.lp-wc-art {
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 150px;
  height: 130px;
  pointer-events: none;
}
.lp-wc-leaf {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 96px;
  height: 96px;
  color: #7c6cff;
  opacity: 0.24;
}
.lp-wc-trolley {
  position: absolute;
  left: 40px;
  bottom: 4px;
  width: 82px;
  height: 104px;
  filter: drop-shadow(0 14px 26px rgba(76, 58, 220, 0.3));
}

/* =====================================================================
   SHARED EDITORIAL BITS — chip · display heading · lead · decorations
   ===================================================================== */
.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(91, 75, 255, 0.08);
  border: 1px solid rgba(91, 75, 255, 0.18);
  padding: 9px 20px;
  border-radius: 40px;
  margin-bottom: 22px;
}
.lp-chip i {
  font-size: 12px;
}
.lp-chip-dark {
  color: #c9bfff;
  background: rgba(124, 108, 255, 0.16);
  border-color: rgba(124, 108, 255, 0.34);
}

/* one heading recipe for every section: chip · two-tone display · lead */
.lp-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}
.lp-head-tight {
  margin-bottom: 0;
}
.lp-head-light .lp-lead {
  color: rgba(255, 255, 255, 0.58);
}

.lp-display {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -1.2px;
  color: var(--ink);
  perspective: 700px;
}
.lp-display em,
.lp-display .lp-dw-em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(96deg, #5b4bff 0%, #7c6cff 45%, #4f8bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-display-light {
  color: #fff;
}
.lp-display-light em,
.lp-display-light .lp-dw-em {
  background: linear-gradient(96deg, #4f8bff 0%, #7c6cff 55%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* one animated unit per word — landing.js splits the heading on scroll */
.lp-dw {
  display: inline-block;
  white-space: nowrap;
  transform-origin: 50% 100%;
}
.lp-lead {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.75;
}
.lp-lead-light {
  color: rgba(255, 255, 255, 0.58);
}

/* decorative dashed ring + dot grid */
.lp-deco-ring {
  position: absolute;
  left: 4%;
  top: 60px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1.5px dashed rgba(91, 75, 255, 0.22);
  pointer-events: none;
}
.lp-deco-ring.r2 {
  left: auto;
  right: 5%;
  top: auto;
  bottom: 70px;
  width: 150px;
  height: 150px;
}
.lp-deco-dots {
  position: absolute;
  right: 4%;
  top: 120px;
  width: 180px;
  height: 150px;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(
    rgba(91, 75, 255, 0.34) 1.4px,
    transparent 1.4px
  );
  background-size: 20px 20px;
}
.lp-deco-dots.d2 {
  right: auto;
  left: 5%;
  top: auto;
  bottom: 60px;
  width: 150px;
  height: 120px;
}

/* ============ TECH STACK ============ */
.lp-tech {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f7f9ff);
}
/* one staggered row on wide screens — cards shrink with the viewport, then wrap */
.lp-techs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px clamp(12px, 2.4vw, 50px);
  margin: 44px auto 0;
  padding: 18px 0 26px;
}
.lp-tcard {
  flex: 0 0 auto;
  width: clamp(144px, 9.6vw, 164px);
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px 25px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(45, 40, 120, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition:
    transform 0.4s cubic-bezier(0.16, 0.84, 0.44, 1),
    box-shadow 0.4s;
  --amp: 20px;
  animation: lpTechFloat 4s ease-in-out infinite;
}
/* the stagger is the animation itself — odd cards ride up while even ride down,
   and it never settles. `translate`, not `transform`: AOS owns transform here. */
@keyframes lpTechFloat {
  0%,
  100% {
    translate: 0 calc(var(--amp) * -1);
  }
  50% {
    translate: 0 var(--amp);
  }
}
.lp-tcard:nth-child(even) {
  animation-delay: -2s;
}
.lp-tcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(45, 40, 120, 0.2);
}
@media (prefers-reduced-motion: reduce) {
  .lp-tcard {
    animation: none;
  }
}
.lp-tic {
  width: clamp(46px, 3.4vw, 56px);
  aspect-ratio: 1;
  margin: 0 auto 12px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  background: linear-gradient(150deg, var(--a), var(--b));
  box-shadow:
    0 12px 24px color-mix(in srgb, var(--b) 45%, transparent),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}
.lp-tic-dark {
  color: #1b2138;
}
/* image icons (feat-*.png) — same footprint the .lp-tic tile had */
.lp-tcard img {
  width: clamp(52px, 4.2vw, 68px);
  height: auto;
  margin: 0 auto 12px;
}
.lp-tcard b {
  display: block;
  font-size: clamp(11.5px, 3.85vw, 18px);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

/* ============ ENVATO ELITE ============ */
.lp-elite-sec {
  padding-top: 0;
}
.lp-elite {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 70px 30px 64px;
  text-align: center;
  background: radial-gradient(
    90% 70% at 50% -10%,
    #2b2470 0%,
    #181543 40%,
    #100e30 100%
  );
  box-shadow: 0 50px 110px rgba(24, 18, 80, 0.35);
}
.lp-elite-glow {
  position: absolute;
  left: 50%;
  top: -140px;
  width: 620px;
  height: 400px;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  background: radial-gradient(
    circle,
    rgba(124, 108, 255, 0.55),
    transparent 70%
  );
}
.lp-elite-ring {
  position: absolute;
  left: -70px;
  top: 40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.14);
  pointer-events: none;
}
.lp-elite-grid {
  position: absolute;
  right: 5%;
  bottom: 8%;
  width: 210px;
  height: 170px;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.3) 1.4px,
    transparent 1.4px
  );
  background-size: 20px 20px;
}
.lp-elite-wm {
  position: absolute;
  right: 4%;
  top: 50%;
  width: 280px;
  height: auto;
  transform: translateY(-50%) rotate(-12deg);
  opacity: 0.05;
  pointer-events: none;
}
.lp-elite-inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
}
.lp-elite-badge {
  width: 152px;
  margin: 36px auto 8px;
  filter: drop-shadow(0 16px 40px rgba(124, 108, 255, 0.6));
  animation: lpFloat 7s ease-in-out infinite;
}
.lp-elite-badge svg {
  width: 100%;
  height: auto;
  display: block;
}
.lp-elite-count b {
  display: block;
  font-size: clamp(52px, 6.4vw, 86px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(96deg, #a78bfa, #7c6cff 45%, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-elite-count span {
  display: block;
  margin-top: 8px;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}
.lp-elite-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.lp-elite-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 20px;
  border-radius: 40px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.lp-elite-pills span:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}
.lp-elite-pills i {
  color: #9b8cff;
  font-size: 13px;
}

/* ============ CTA ============ */
.lp-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
  text-align: center;
  background: linear-gradient(180deg, #f7f9ff 0%, #eef0fe 60%, #f7f9ff 100%);
}
.lp-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -160px;
  width: 900px;
  height: 420px;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  background: radial-gradient(
    circle,
    rgba(124, 108, 255, 0.28),
    transparent 70%
  );
}
.lp-cta .lp-container {
  position: relative;
  z-index: 3;
}
.lp-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.lp-btn-soft {
  background: #fff;
  color: var(--brand);
  padding: 16px 32px;
  font-size: 16px;
  border: 1px solid rgba(91, 75, 255, 0.22);
  box-shadow: 0 12px 30px rgba(45, 40, 120, 0.1);
}
.lp-btn-soft:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 44px rgba(45, 40, 120, 0.18);
  border-color: rgba(91, 75, 255, 0.45);
}
.lp-body a.lp-btn-soft {
  color: var(--brand);
}
.lp-cta-obj {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.lp-cta-balloon {
  left: 7%;
  top: 90px;
  width: 64px;
  opacity: 0.5;
}
.lp-cta-plane {
  right: 9%;
  top: 110px;
  width: 96px;
  opacity: 0.35;
  rotate: -14deg;
  filter: drop-shadow(0 12px 24px rgba(45, 40, 120, 0.25));
}
.lp-cta-luggage {
  right: 6%;
  bottom: 26px;
  width: 150px;
  opacity: 0.45;
}
/* ============ FOOTER ============ */
.lp-footer {
  background: var(--dark);
  color: #fff;
  padding: 26px 0;
}
.lp-footer .lp-nav {
  gap: 16px;
}
.lp-footer .lp-logo {
  color: #fff;
}
.lp-footer .lp-copy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}
.lp-socials {
  display: flex;
  gap: 10px;
}
.lp-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.lp-socials a:hover {
  background: var(--grad);
  transform: translateY(-3px);
}

/* ============ REVEAL ============ */
[data-rise] {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}
[data-rise].in {
  opacity: 1;
  transform: none;
}

/* ============ LENIS SMOOTH SCROLL ============ */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* =====================================================================
   HOVER TRANSITIONS ON [data-aos] CARDS
   AOS pins every [data-aos] element to `transition-property: opacity, transform`
   and to its global 900ms duration (body[data-aos-duration] = 0,2,1 beats any
   plain class rule), so a hover lift written as `translate` or `box-shadow`
   never transitions — it snaps, which reads as a jerk. These selectors are
   0,3,1 so they win: the reveal keeps AOS's 900ms on opacity/transform, and
   the hover properties get their own 340ms.
   ===================================================================== */
body.lp-body [data-aos].lp-dcard,
body.lp-body [data-aos].lp-mini,
body.lp-body [data-aos].lp-why,
body.lp-body [data-aos].lp-tcard,
body.lp-body [data-aos].lp-aic,
body.lp-body [data-aos].lp-promo,
body.lp-body [data-aos].lp-bento-card,
body.lp-body [data-aos].lp-perf,
body.lp-body [data-aos].lp-why-cta {
  transition-property:
    opacity, transform, translate, scale, box-shadow, border-color,
    background-color, color;
  transition-duration: 0.9s, 0.9s, 0.34s, 0.34s, 0.34s, 0.34s, 0.34s, 0.34s;
  transition-timing-function: cubic-bezier(0.16, 0.84, 0.44, 1);
}

/* ============ RESPONSIVE ============ */
/* The closing bar only fits copy + checks + button on one line on wide screens;
   below that the checks drop to their own centred row instead of squeezing. */
@media (min-width: 1600px) {
  .lp-why-cta {
    flex-wrap: nowrap;
  }
  .lp-wc-txt {
    max-width: 380px;
  }
}
@media (max-width: 1599px) and (min-width: 993px) {
  .lp-wc-txt {
    max-width: none;
    flex: 1 1 320px;
  }
  .lp-wc-checks {
    order: 3;
    flex: 1 1 100%;
    justify-content: center;
    padding-top: 2px;
  }
}
@media (max-width: 1400px) {
  .lp-specs {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 18px;
  }
  .lp-spec:nth-child(4n + 1)::before {
    display: none;
  }
  .lp-why-bento,
  .lp-why-left-row,
  .lp-why-r1,
  .lp-why-r2 {
    gap: 16px;
  }
  .lp-promo {
    padding: 32px 26px;
  }
}
@media (max-width: 1200px) {
  /* browser on top, feature cards below it in two columns */
  .lp-ai-stage {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .lp-ai-browser {
    order: -1;
  }
  .lp-ai-col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .lp-ai-bar {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }
  .lp-aib:nth-child(3n + 1)::before {
    display: none;
  }
}
@media (max-width: 1280px) {
  .lp-hero-grid {
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  }
  .lp-hb {
    gap: 11px;
    padding: 0 12px;
  }
  .lp-hb b {
    font-size: 14px;
  }
}
@media (max-width: 1180px) {
  .lp-hbar {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }
  .lp-hb:nth-child(3n + 1)::before {
    display: none;
  }
}
@media (max-width: 1120px) {
  .lp-hero-grid {
    grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
    gap: 10px;
  }
  .lp-hb b {
    font-size: 13.5px;
  }
  .lp-hb span {
    font-size: 12px;
  }
  .lp-hb-ic {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }
  .lp-score {
    padding: 11px 14px;
  }
  .lp-score b {
    font-size: 19px;
  }
}
@media (max-width: 992px) {
  .lp-menu,
  .lp-nav .lp-btn-primary {
    display: none;
  }
  .lp-nav-toggle {
    display: flex;
  }
  .lp-menu.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  .lp-hero {
    padding: 120px 0 46px;
  }
  .lp-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
    padding-bottom: 36px;
    text-align: center;
  }
  .lp-hero-copy {
    max-width: 640px;
    margin: 0 auto;
  }
  .lp-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .lp-hero-btns,
  .lp-proof {
    justify-content: center;
  }
  .lp-hero-visual {
    justify-content: center;
    margin-top: 30px;
  }
  .lp-hero-img {
    width: min(96%, 660px);
    margin-right: 0;
  }
  .lp-flight-layer,
  .lp-orbit {
    display: none;
  }
  .lp-hero-dots {
    opacity: 0.35;
  }
  .lp-score {
    right: 0;
    top: 6%;
  }
  .lp-specs {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
  }
  .lp-spec:nth-child(4n + 1)::before {
    display: block;
  }
  .lp-spec:nth-child(3n + 1)::before {
    display: none;
  }
  .lp-hbar {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }
  .lp-hb:nth-child(3n + 1)::before {
    display: none;
  }
  .lp-dgrid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .lp-bento {
    grid-template-columns: 1fr;
  }
  .lp-why-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .lp-promo,
  .lp-why-left-row,
  .lp-why-r1,
  .lp-why-r2 {
    grid-column: 1;
    grid-row: auto;
  }
  .lp-deco-ring,
  .lp-deco-dots,
  .lp-elite-wm,
  .lp-why-route,
  .lp-why-plane,
  .lp-why-stamp,
  .lp-bt-arc,
  .lp-bt-plane,
  .lp-bt-stamp {
    display: none;
  }
  .lp-elite {
    padding: 56px 22px 52px;
    border-radius: 28px;
  }
  .lp-cta-obj {
    opacity: 0.28;
  }
  .lp-head {
    margin-bottom: 38px;
  }
  .lp-ai {
    padding: 76px 0 70px;
  }
  .lp-brw-hero {
    min-height: 0;
  }
  .lp-brw-copy h4 {
    font-size: 21px;
  }
  .lp-brw-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .lp-why-r1,
  .lp-why-r2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-promo p {
    max-width: 540px;
  }
  .lp-why-cta {
    gap: 18px;
    padding: 22px;
    justify-content: center;
  }
  .lp-why-sec .lp-why-cta {
    padding-left: 22px;
  }
  .lp-wc-art {
    display: none;
  }
  .lp-why-cta > p {
    flex: 1 1 100%;
    text-align: center;
  }
  .lp-wc-txt {
    flex: 1 1 100%;
    text-align: center;
  }
}
@media (max-width:991px){
  .lp-tcard{
    animation: none;
  }
}
@media (max-width: 640px) {
  .lp-section {
    padding: 64px 0;
  }
  .lp-elite-sec{
    padding-top: 0;
  }
  .lp-hero {
    padding: 104px 0 40px;
  }
  .lp-hero-pill {
    font-size: 11.5px;
    padding: 8px 15px;
    margin-bottom: 22px;
  }
  .lp-line-top,
  .lp-line-hero {
    font-size: 38px;
    letter-spacing: -1.4px;
  }
  .lp-line-sub {
    font-size: 30px;
  }
  .lp-line-swoosh {
    width: 52px;
  }
  .lp-hero-desc {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 28px;
  }
  .lp-hero-btns {
    gap: 10px;
    margin-bottom: 30px;
  }
  .lp-hero-btns .lp-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  .lp-proof {
    gap: 16px;
    justify-content: center;
  }
  .lp-proof-sep {
    display: none;
  }
  .lp-hero-visual {
    margin-top: 18px;
  }
  .lp-hero-img {
    width: 100%;
  }
  /* the visual is a flex row — stack it so the static score card sits under the image */
  .lp-hero-visual {
    flex-direction: column;
  }
  .lp-score {
    position: static;
    margin: 16px auto 0;
    align-self: center;
    animation: none;
  }
  .lp-specs {
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
    padding: 16px 6px;
  }
  .lp-spec {
    padding: 0 10px;
  }
  .lp-spec::before {
    display: none !important;
  }
  .lp-hbar {
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
    padding: 18px 6px;
  }
  .lp-hb {
    padding: 0 10px;
    gap: 11px;
  }
  .lp-hb::before {
    display: none !important;
  }
  .lp-hb b {
    font-size: 13.5px;
  }
  .lp-hb span {
    font-size: 12px;
  }
  .lp-hb-ic {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }
  .lp-h2 {
    font-size: 28px;
  }
  .lp-display {
    font-size: 28px;
    letter-spacing: -0.6px;
  }
  .lp-lead {
    font-size: 15px;
  }
  .lp-techs {
    gap: 10px;
    margin-top: 32px;
    padding: 16px 0 32px;
  }
  .lp-tcard {
    --amp: 11px;
    animation-duration: 4.6s;
  }
  .lp-elite {
    padding: 44px 18px 42px;
  }
  .lp-elite-badge {
    width: 116px;
    margin-top: 26px;
  }
  .lp-elite-count span {
    font-size: 16px;
  }
  .lp-elite-pills span {
    font-size: 12px;
    padding: 8px 14px;
  }
  .lp-cta {
    padding: 70px 0 80px;
  }
  .lp-cta-obj {
    display: none;
  }
  .lp-dgrid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .lp-dfoot {
    padding: 16px 6px 6px;
    gap: 11px;
  }
  .lp-dtxt b {
    font-size: 14.5px;
  }
  .lp-dlink {
    font-size: 12.5px;
  }
  .lp-bento-mid {
    grid-template-columns: 1fr;
  }
  .lp-bento-plane {
    display: none;
  }
  .lp-mini {
    padding: 20px 18px 40px;
  }
  .lp-bento-left {
    padding: 26px 22px 0;
  }
  .lp-why-r1,
  .lp-why-r2,
  .lp-why-left-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .lp-why-bento {
    gap: 12px;
  }
  .lp-promo {
    padding: 28px 22px;
  }
  .lp-promo h3 {
    font-size: 25px;
  }
  .lp-promo p {
    font-size: 13.5px;
    margin-bottom: 20px;
  }
  .lp-why {
    padding: 22px 14px 20px;
  }
  .lp-why-ic {
    width: 54px;
    height: 54px;
    font-size: 19px;
    margin-bottom: 12px;
  }
  .lp-why h5 {
    font-size: 14px;
  }
  .lp-why p {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .lp-ai-stage {
    margin-top: 6px;
  }
  .lp-ai-col {
    flex-direction: column;
  }
  .lp-ai-bar {
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
    padding: 16px 6px;
  }
  .lp-aib {
    padding: 0 10px;
    gap: 11px;
  }
  .lp-aib::before {
    display: none !important;
  }
  .lp-aib h6 {
    font-size: 13.5px;
  }
  .lp-aib span {
    font-size: 12px;
  }
  .lp-brw-nav ul,
  .lp-brw-tabs span:not(.active) {
    display: none;
  }
  .lp-brw-fields {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
  .lp-brw-fields > div {
    flex: 1 1 40%;
  }
  .lp-brw-go {
    flex: 1 1 100%;
    justify-content: center;
  }
  .lp-brw-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-brw-cards > div {
    aspect-ratio: 1.35;
  }
  .lp-wc-checks {
    gap: 6px 0;
    justify-content: center;
  }
  .lp-wc-checks span {
    padding: 0 12px;
    font-size: 12.5px;
  }
  /* the checks wrap to two rows here — the vertical dividers land at row starts */
  .lp-wc-checks span + span::before {
    display: none;
  }
  .lp-feat-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .lp-tcard b{
    font-size: 15px;
  }
}
