@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --lp-indigo: #6366f1;
  --lp-violet: #8b5cf6;
  --lp-cyan: #22d3ee;
  --lp-ink: #0b1020;
  --lp-muted: #5b6478;
  --lp-line: #e9ebf3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.lp {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  color: var(--lp-ink);
  background: #fbfbff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.lp a {
  text-decoration: none;
  color: inherit;
}
.lp h1,
.lp h2,
.lp h3,
.lp h4 {
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.lp-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Animated aurora background ===== */
.lp-aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0a0c1b;
}
.lp-aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: floatBlob 18s ease-in-out infinite;
}
.lp-aurora span:nth-child(1) {
  width: 620px;
  height: 620px;
  background: #6d28d9;
  top: -180px;
  left: -120px;
}
.lp-aurora span:nth-child(2) {
  width: 540px;
  height: 540px;
  background: #2563eb;
  top: -120px;
  right: -100px;
  animation-delay: -4s;
}
.lp-aurora span:nth-child(3) {
  width: 460px;
  height: 460px;
  background: #06b6d4;
  top: 180px;
  left: 40%;
  animation-delay: -9s;
}
.lp-grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
}
@keyframes floatBlob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(60px, 50px) scale(1.12);
  }
  66% {
    transform: translate(-50px, 30px) scale(0.92);
  }
}

/* ===== Buttons ===== */
.lp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}
.lp-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6 55%, #a855f7);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.45);
}
.lp-btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.lp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.55);
}
.lp-btn-primary:hover::after {
  left: 130%;
}
.lp-btn-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.lp-btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
.lp-btn-sm {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 11px;
}

/* ===== Navbar ===== */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  transition: all 0.35s ease;
}
.lp-nav .lp-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.lp-nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 6px 24px rgba(10, 12, 27, 0.08);
  padding: 12px 0;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  transition: color 0.35s ease;
}
.lp-nav.scrolled .lp-brand {
  color: var(--lp-ink);
}
.lp-brand .logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 21px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.5);
}
.lp-nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.lp-nav.scrolled .lp-btn-glass {
  color: var(--lp-ink);
  border-color: var(--lp-line);
  background: #fff;
}
.lp-nav.scrolled .lp-btn-glass:hover {
  background: #f4f4fb;
}

/* ===== Hero ===== */
.lp-hero {
  position: relative;
  padding: 170px 0 110px;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 920px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.lp-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.3);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(74, 222, 128, 0);
  }
}

.lp-hero h1 {
  font-size: clamp(38px, 5.4vw, 66px);
  color: #fff;
}
.lp-hero h1 .grad {
  background: linear-gradient(90deg, #a5b4fc, #f0abfc, #67e8f9, #a5b4fc);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.lp-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.6vw, 19px);
  margin-top: 22px;
  max-width: 540px;
}
@media (max-width: 920px) {
  .lp-hero p {
    margin: 22px auto 0;
  }
}
.lp-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
@media (max-width: 920px) {
  .lp-hero-actions {
    justify-content: center;
  }
}

/* entrance animation */
.lp-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s cubic-bezier(0.16, 0.84, 0.44, 1) forwards;
}
.lp-up.d1 {
  animation-delay: 0.1s;
}
.lp-up.d2 {
  animation-delay: 0.25s;
}
.lp-up.d3 {
  animation-delay: 0.4s;
}
.lp-up.d4 {
  animation-delay: 0.55s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ===== Floating glass mock ===== */
.lp-mock {
  position: relative;
}
.lp-mock .lp-card-glass {
  animation: floatY 6s ease-in-out infinite;
}
.feed-in {
  animation: feedIn 0.5s ease;
}
@keyframes feedIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
.lp-card-glass {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(8, 10, 30, 0.4);
  padding: 22px;
  backdrop-filter: blur(10px);
}
.lp-mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.lp-mock-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 16px;
  color: #0b1020;
}
.lp-mock-title .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 17px;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
}
.lp-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
  background: #e7f6ec;
  padding: 5px 11px;
  border-radius: 999px;
}
.lp-live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  animation: pulse 1.6s infinite;
}
.lp-mock-foot {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px dashed var(--lp-line);
  text-align: center;
  font-size: 12.5px;
  color: var(--lp-muted);
  font-weight: 600;
}
.lp-card-glass .row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 14px;
  background: #f6f7fc;
  margin-bottom: 12px;
}
.lp-card-glass .row .ri {
  flex: 1;
  min-width: 0;
}
.lp-card-glass .row .t1,
.lp-card-glass .row .t2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-card-glass .row:last-child {
  margin-bottom: 0;
}
.lp-card-glass .av {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  flex-shrink: 0;
}
.lp-card-glass .t1 {
  font-weight: 700;
  font-size: 14.5px;
}
.lp-card-glass .t2 {
  font-size: 12.5px;
  color: var(--lp-muted);
}
.lp-card-glass .ok {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
  background: #e7f6ec;
  padding: 5px 11px;
  border-radius: 999px;
}
.lp-card-glass .pend {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #b45309;
  background: #fef3c7;
  padding: 5px 11px;
  border-radius: 999px;
}
.lp-chip {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px rgba(8, 10, 30, 0.22);
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 14px;
}
.lp-chip .ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.lp-chip-1 {
  top: -26px;
  right: 18px;
  animation: floatY 5s ease-in-out infinite;
}
.lp-chip-1 .ic {
  background: #e7f6ec;
}
.lp-chip-2 {
  bottom: -24px;
  left: -18px;
  animation: floatY 7s ease-in-out infinite reverse;
}
.lp-chip-2 .ic {
  background: #eef2ff;
}
@media (max-width: 920px) {
  .lp-chip {
    display: none;
  }
  .lp-hero {
    padding: 130px 0 70px;
  }
  .lp-mock {
    display: block;
    width: 100%;
    max-width: 440px;
    margin: 40px auto 0;
    opacity: 1;
  }
}
@media (max-width: 420px) {
  .lp-card-glass {
    padding: 16px;
  }
  .lp-card-glass .row {
    padding: 11px;
    gap: 10px;
  }
  .lp-card-glass .av {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* ===== Stats ===== */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 70px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(8px);
}
@media (max-width: 760px) {
  .lp-stats {
    grid-template-columns: 1fr 1fr;
  }
}
.lp-stat {
  text-align: center;
  color: #fff;
}
.lp-stat .num {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #c7d2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-stat .lbl {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

/* ===== Sections ===== */
.lp-section {
  padding: 100px 0;
  position: relative;
  background: #f5f6fb;
}
.lp-section.light {
  background: #ffffff;
}
.lp-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.lp-tag {
  display: inline-block;
  color: var(--lp-indigo);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lp-head h2 {
  font-size: clamp(28px, 3.8vw, 44px);
}
.lp-head p {
  color: var(--lp-muted);
  font-size: 17px;
  margin-top: 14px;
}

/* ===== Features bento ===== */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .lp-features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .lp-features {
    grid-template-columns: 1fr;
  }
}
.lp-feat {
  position: relative;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 22px;
  padding: 32px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}
.lp-feat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1.5px;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  opacity: 0;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 0.3s ease;
}
.lp-feat:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(99, 102, 241, 0.18);
}
.lp-feat:hover::before {
  opacity: 1;
}
.lp-feat .ic {
  width: 60px;
  height: 60px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  transition: transform 0.3s ease;
}
.lp-feat:hover .ic {
  transform: scale(1.12) rotate(-6deg);
}
.lp-feat h3 {
  font-size: 20px;
  margin-bottom: 9px;
}
.lp-feat p {
  color: var(--lp-muted);
  font-size: 15px;
}

/* ===== Steps ===== */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
@media (max-width: 860px) {
  .lp-steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .lp-steps {
    grid-template-columns: 1fr;
  }
}
.lp-step {
  text-align: center;
  position: relative;
}
.lp-step .num {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.4);
  transition: transform 0.3s ease;
}
.lp-step:hover .num {
  transform: translateY(-6px) scale(1.05);
}
.lp-step h4 {
  font-size: 18px;
  margin-bottom: 7px;
}
.lp-step p {
  color: var(--lp-muted);
  font-size: 14.5px;
}

/* ===== Marquee ===== */
.lp-marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  margin-top: 8px;
}
.lp-marquee-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.lp-marquee-track span {
  color: var(--lp-muted);
  font-weight: 700;
  font-size: 19px;
  white-space: nowrap;
  opacity: 0.7;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ===== CTA ===== */
.lp-cta {
  position: relative;
}
.lp-cta-box {
  position: relative;
  border-radius: 30px;
  padding: 70px 40px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #4f46e5, #7c3aed 60%, #a21caf);
  box-shadow: 0 40px 80px rgba(124, 58, 237, 0.4);
}
.lp-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px 300px at 20% -20%,
      rgba(255, 255, 255, 0.25),
      transparent
    ),
    radial-gradient(
      500px 300px at 100% 120%,
      rgba(34, 211, 238, 0.35),
      transparent
    );
}
.lp-cta-box > * {
  position: relative;
}
.lp-cta-box h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}
.lp-cta-box p {
  opacity: 0.92;
  margin-top: 14px;
  font-size: 17px;
}
.lp-cta-box .lp-hero-actions {
  justify-content: center;
  margin-top: 32px;
}

/* ===== Footer ===== */
.lp-footer {
  background: #0a0c1b;
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 0;
  text-align: center;
}
.lp-footer .lp-brand {
  color: #fff;
  justify-content: center;
  margin-bottom: 14px;
}
.lp-footer .small {
  font-size: 14px;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}
.reveal.d5 {
  transition-delay: 0.4s;
}
.reveal.d6 {
  transition-delay: 0.48s;
}

@media (prefers-reduced-motion: reduce) {
  .lp-aurora span,
  .lp-mock .lp-card-glass,
  .lp-hero h1 .grad,
  .lp-marquee-track,
  .feed-in {
    animation: none !important;
  }
  .lp-up,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
