@import "https://cdn.jsdelivr.net/npm/remixicon@4.6.0/fonts/remixicon.min.css";
/* [project]/apps/web/styles/landing.css [app-client] (css) */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --angle: 0deg;
    }
  }
}

html:has(.landing) {
  scroll-behavior: smooth;
}

.landing *, .landing :before, .landing :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #fff;
  --bg: #fafbfe;
  --bg-blue: #f0f4ff;
  --bg-blue-2: #e8eeff;
  --text: #050a18;
  --text-2: #1e293b;
  --text-m: #475569;
  --text-d: #64748b;
  --text-f: #cbd5e1;
  --blue: #2563eb;
  --blue-b: #3b82f6;
  --blue-v: #60a5fa;
  --blue-l: #dbeafe;
  --blue-u: #eff6ff;
  --indigo: #6366f1;
  --violet: #7c3aed;
  --orange: #ea580c;
  --green: #059669;
  --green-bg: #ecfdf5;
  --border: #0f172a0f;
  --border-2: #0f172a1a;
  --radius: 18px;
  --radius-s: 12px;
}

.landing {
  font-family: var(--font-sora), system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

.landing .serif {
  font-family: var(--font-playfair), serif;
  font-style: italic;
  font-weight: 600;
}

.landing .grad-animated, .landing .hero h1 .grad, .landing .hero h1 .grad-animated {
  background: linear-gradient(90deg, #2563eb, #6366f1, #a855f7, #3b82f6, #2563eb) 0 0 / 300% 100%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 8s linear infinite gradShift;
}

@keyframes gradShift {
  0% {
    background-position: 0;
  }

  100% {
    background-position: 300%;
  }
}

.landing .sparkle-container {
  display: inline-block;
  position: relative;
}

.landing .sparkle {
  pointer-events: none;
  width: 10px;
  height: 10px;
  position: absolute;
}

.landing .sparkle:before, .landing .sparkle:after {
  content: "";
  border-radius: 2px;
  position: absolute;
}

.landing .sparkle:before {
  background: linear-gradient(#0000, currentColor, #0000);
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.landing .sparkle:after {
  background: linear-gradient(90deg, #0000, currentColor, #0000);
  width: 100%;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.landing .sparkle:nth-child(2) {
  width: 8px;
  height: 8px;
  color: var(--blue-v);
  filter: drop-shadow(0 0 2px var(--blue-v));
  animation: 4s ease-in-out infinite sparkStar;
  top: -16px;
  left: 12%;
}

.landing .sparkle:nth-child(3) {
  width: 6px;
  height: 6px;
  color: var(--indigo);
  filter: drop-shadow(0 0 2px var(--indigo));
  animation: 4s ease-in-out 1s infinite sparkStar;
  top: 18%;
  right: -18px;
}

.landing .sparkle:nth-child(4) {
  color: #a78bfa;
  filter: drop-shadow(0 0 3px #a78bfa);
  width: 10px;
  height: 10px;
  animation: 4s ease-in-out 2s infinite sparkStar;
  bottom: -12px;
  left: 58%;
}

.landing .sparkle:nth-child(5) {
  width: 5px;
  height: 5px;
  color: var(--blue-b);
  filter: drop-shadow(0 0 2px var(--blue-b));
  animation: 4s ease-in-out 3s infinite sparkStar;
  top: 50%;
  left: -16px;
}

@keyframes sparkStar {
  0%, 100% {
    opacity: .2;
    transform: scale(.6)rotate(0);
  }

  50% {
    opacity: .8;
    transform: scale(1)rotate(15deg);
  }
}

.landing .glare-sweep {
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(90deg, #0000 0%, #ffffff1a 50%, #0000 100%);
  width: 50%;
  height: 100%;
  transition: left .7s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(-20deg);
}

.landing .glare-card:hover .glare-sweep {
  left: 160%;
}

@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.landing .moving-border {
  position: relative;
}

.landing .moving-border:before {
  content: "";
  border-radius: inherit;
  background: conic-gradient(from var(--angle, 0deg), var(--blue), var(--indigo), var(--blue-v), var(--blue));
  z-index: -1;
  opacity: 0;
  transition: opacity .4s;
  animation: 3s linear infinite rotateBorder;
  position: absolute;
  inset: -2px;
}

.landing .moving-border:hover:before {
  opacity: 1;
}

@keyframes rotateBorder {
  0% {
    --angle: 0deg;
  }

  100% {
    --angle: 360deg;
  }
}

.landing .lamp-glow {
  background: linear-gradient(90deg, transparent, var(--blue-v), #818cf8, var(--blue-v), transparent);
  z-index: 5;
  width: 600px;
  height: 4px;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px #60a5fa4d, 0 0 60px #60a5fa1a;
}

.landing .lamp-glow:after {
  content: "";
  pointer-events: none;
  background: conic-gradient(from 90deg at 50% 0, #0000 22%, #60a5fa33 40%, #6366f126 50%, #60a5fa33 60%, #0000 78%);
  width: 1000px;
  height: 450px;
  animation: 4s ease-in-out infinite lampPulse;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(#fff, #0000 85%);
  mask-image: linear-gradient(#fff, #0000 85%);
}

@keyframes lampPulse {
  0%, 100% {
    opacity: .7;
  }

  50% {
    opacity: 1;
  }
}

.landing .beam {
  pointer-events: none;
  z-index: 0;
  position: absolute;
}

.landing .beam-1 {
  background: linear-gradient(#0000, #60a5fa4d 30%, #60a5fa14 70%, #0000);
  width: 2px;
  height: 100%;
  animation: 6s ease-in-out infinite beamDrift;
  top: 0;
  left: 18%;
}

.landing .beam-2 {
  background: linear-gradient(#0000, #6366f140 40%, #6366f10f 60%, #0000);
  width: 2px;
  height: 100%;
  animation: 6s ease-in-out 2s infinite beamDrift;
  top: 0;
  right: 22%;
}

.landing .beam-3 {
  background: linear-gradient(#0000 20%, #8b5cf633 50%, #0000 80%);
  width: 2px;
  height: 100%;
  animation: 6s ease-in-out 4s infinite beamDrift;
  top: 0;
  left: 42%;
}

.landing .beam-4 {
  background: linear-gradient(#0000 10%, #60a5fa2e 45%, #0000 90%);
  width: 2px;
  height: 100%;
  animation: 6s ease-in-out 1s infinite beamDrift;
  top: 0;
  right: 38%;
}

@keyframes beamDrift {
  0%, 100% {
    opacity: .2;
    transform: translateX(0);
  }

  50% {
    opacity: .5;
    transform: translateX(20px);
  }
}

.landing .hero-glow {
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
  background: radial-gradient(#2563eb1a 0%, #6366f10d 40%, #0000 70%);
  width: 500px;
  height: 350px;
  animation: 7s ease-in-out infinite heroGlow;
  position: absolute;
  top: 40%;
  left: 28%;
  transform: translate(-50%, -50%);
}

@keyframes heroGlow {
  0%, 100% {
    opacity: .4;
    transform: translate(-50%, -50%)scale(1);
  }

  50% {
    opacity: .7;
    transform: translate(-50%, -50%)scale(1.1);
  }
}

.landing .hero-orb {
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  border-radius: 50%;
  position: absolute;
}

.landing .hero-orb-1 {
  background: radial-gradient(circle, #6366f11f 0%, #0000 70%);
  width: 300px;
  height: 300px;
  animation: 8s ease-in-out infinite orbFloat;
  top: 10%;
  right: 15%;
}

.landing .hero-orb-2 {
  background: radial-gradient(circle, #2563eb1a 0%, #0000 70%);
  width: 200px;
  height: 200px;
  animation: 8s ease-in-out 3s infinite orbFloat;
  bottom: 20%;
  left: 5%;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0);
  }

  33% {
    transform: translate(20px, -15px);
  }

  66% {
    transform: translate(-10px, 10px);
  }
}

.landing .hero-spotlight {
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(at 40% 30%, #ffffff14 0%, #0000 60%);
  width: 700px;
  height: 500px;
  position: absolute;
  top: 15%;
  left: 20%;
}

.landing .grad-underline {
  display: inline-block;
  position: relative;
}

.landing .grad-underline:after {
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--indigo), var(--blue-v));
  background-size: 200% 100%;
  border-radius: 2px;
  width: 100%;
  height: 3px;
  animation: 3s linear infinite gradShift;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.landing .meteors-container {
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.landing .meteor {
  opacity: 0;
  filter: drop-shadow(0 0 3px #60a5fa80);
  background: linear-gradient(#60a5facc, #60a5fa4d 40%, #0000);
  border-radius: 999px;
  width: 2px;
  height: 80px;
  animation: linear infinite meteorFall;
  position: absolute;
  transform: rotate(-35deg);
}

.landing .meteor:before {
  content: "";
  background: #ffffffe6;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px #60a5facc;
}

.landing .meteor-1 {
  height: 60px;
  animation-duration: 4s;
  animation-delay: 0s;
  top: -80px;
  left: 15%;
}

.landing .meteor-2 {
  height: 90px;
  animation-duration: 3.5s;
  animation-delay: 1.2s;
  top: -80px;
  left: 35%;
}

.landing .meteor-3 {
  height: 50px;
  animation-duration: 5s;
  animation-delay: 2.5s;
  top: -80px;
  left: 55%;
}

.landing .meteor-4 {
  height: 70px;
  animation-duration: 4.5s;
  animation-delay: .8s;
  top: -80px;
  left: 75%;
}

.landing .meteor-5 {
  height: 55px;
  animation-duration: 3.8s;
  animation-delay: 3.2s;
  top: -80px;
  left: 90%;
}

.landing .meteor-6 {
  height: 85px;
  animation-duration: 4.2s;
  animation-delay: 1.8s;
  top: -80px;
  left: 45%;
}

@keyframes meteorFall {
  0% {
    opacity: 0;
    transform: rotate(-35deg)translateY(-200px);
  }

  5% {
    opacity: 1;
  }

  30% {
    opacity: .6;
  }

  100% {
    opacity: 0;
    transform: rotate(-35deg)translateY(1200px);
  }
}

.landing .grid-dots {
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, #2563eb1f 1.2px, #0000 1.2px);
  background-size: 28px 28px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(at 35% 45%, #fff 15%, #fff6 35%, #0000 65%);
  mask-image: radial-gradient(at 35% 45%, #fff 15%, #fff6 35%, #0000 65%);
}

.landing .card-glow {
  position: relative;
  overflow: hidden;
}

.landing .card-glow:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 30% 30%, #2563eb0f 0%, #0000 50%);
  width: 200%;
  height: 200%;
  animation: 8s ease-in-out infinite cardGlowShift;
  position: absolute;
  top: -50%;
  left: -50%;
}

@keyframes cardGlowShift {
  0%, 100% {
    transform: translate(0);
  }

  33% {
    transform: translate(15%, 10%);
  }

  66% {
    transform: translate(-10%, 15%);
  }
}

.landing .beam-spark {
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 3s ease-out infinite sparkBurst;
  position: absolute;
  bottom: 0;
}

.landing .beam-spark-1 {
  background: var(--blue-v);
  box-shadow: 0 0 10px var(--blue-v);
  animation-delay: 0s;
  left: 18%;
}

.landing .beam-spark-2 {
  background: var(--indigo);
  box-shadow: 0 0 10px var(--indigo);
  animation-delay: 2s;
  right: 22%;
}

.landing .beam-spark-3 {
  background: #a78bfa;
  animation-delay: 4s;
  left: 42%;
  box-shadow: 0 0 10px #a78bfa;
}

.landing .beam-spark-4 {
  background: var(--blue-v);
  box-shadow: 0 0 10px var(--blue-v);
  animation-delay: 1s;
  right: 38%;
}

@keyframes sparkBurst {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  10% {
    opacity: 1;
    transform: scale(1.5);
  }

  30% {
    opacity: .7;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0);
  }
}

.landing .text-highlight {
  display: inline-block;
  position: relative;
}

.landing .text-highlight:before {
  content: "";
  z-index: -1;
  background: linear-gradient(90deg, #2563eb26, #6366f11a);
  border-radius: 4px;
  height: 35%;
  animation: .8s ease-out forwards highlightGrow;
  position: absolute;
  bottom: 0;
  left: -4px;
  right: -4px;
}

@keyframes highlightGrow {
  0% {
    width: 0;
  }

  100% {
    width: calc(100% + 8px);
  }
}

.landing .topbar {
  z-index: 200;
  background: linear-gradient(90deg, var(--blue), var(--indigo), var(--blue-b), var(--orange), var(--blue));
  background-size: 200% 100%;
  height: 3px;
  animation: 6s linear infinite barShift;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

@keyframes barShift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.landing nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  background: #ffffffd1;
  border: 1px solid #0f172a0a;
  border-radius: 16px;
  align-items: center;
  width: calc(100% - 40px);
  max-width: 1200px;
  height: 58px;
  padding: 0 8px 0 26px;
  display: flex;
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 1px 2px #0f172a05, 0 8px 32px #0f172a0a;
}

.landing .nav-inner {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.landing .logo {
  color: var(--text);
  letter-spacing: -.8px;
  font-size: 20px;
  font-weight: 800;
}

.landing .logo b {
  color: var(--blue);
  font-weight: 800;
}

.landing .nav-links {
  gap: 32px;
  list-style: none;
  display: flex;
}

.landing .nav-links a {
  color: var(--text-m);
  letter-spacing: -.1px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.landing .nav-links a:hover {
  color: var(--blue);
}

.landing .nav-right {
  align-items: center;
  gap: 6px;
  display: flex;
}

.landing .btn {
  cursor: pointer;
  border: none;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: all .22s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
}

.landing .btn-s {
  border-radius: 10px;
  padding: 9px 18px;
  font-size: 13px;
}

.landing .btn-m {
  border-radius: 12px;
  padding: 13px 28px;
  font-size: 14px;
}

.landing .btn-l {
  border-radius: 14px;
  padding: 17px 36px;
  font-size: 15px;
}

.landing .btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 3px #2563eb26;
}

.landing .btn-blue:hover {
  background: var(--blue-b);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px #2563eb33;
}

.landing .btn-orange {
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  position: relative;
  box-shadow: 0 2px 12px #f9731640, 0 0 0 1px #f9731614;
}

.landing .btn-orange:before {
  content: "";
  border-radius: inherit;
  filter: blur(12px);
  z-index: -1;
  opacity: .6;
  background: linear-gradient(135deg, #f973164d, #ea580c1a);
  transition: opacity .3s;
  position: absolute;
  inset: -3px;
}

.landing .btn-orange:hover {
  background: linear-gradient(135deg, #fb923c, #f97316);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px #f973164d;
}

.landing .btn-orange:hover:before {
  opacity: 1;
}

.landing .btn-outline {
  background: var(--white);
  color: var(--text-m);
  border: 1.5px solid var(--border-2);
}

.landing .btn-outline:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-u);
}

.landing .btn-ghost {
  color: var(--text-m);
  background: none;
  border: none;
}

.landing .btn-ghost:hover {
  color: var(--blue);
}

.landing .arr {
  transition: transform .2s;
}

.landing .btn:hover .arr {
  transform: translateX(3px);
}

.landing .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

.landing .hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--white) 85%, var(--bg) 100%);
  padding: 170px 0 110px;
  position: relative;
  overflow: hidden;
}

.landing .hero-scroll {
  z-index: 2;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.landing .hero-scroll span {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-d);
  font-size: 10px;
  font-weight: 600;
}

.landing .hero-scroll-line {
  background: linear-gradient(180deg, var(--blue-v), transparent);
  width: 1px;
  height: 28px;
  animation: 2s ease-in-out infinite scrollBob;
}

@keyframes scrollBob {
  0%, 100% {
    opacity: .6;
    height: 28px;
  }

  50% {
    opacity: 1;
    height: 36px;
  }
}

.landing .hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #2563eb0f 0%, #6366f108 35%, #0000 65%);
  width: 900px;
  height: 900px;
  position: absolute;
  top: -200px;
  right: -200px;
}

.landing .hero:after {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #2563eb0a 0%, #0000 55%);
  width: 600px;
  height: 600px;
  position: absolute;
  bottom: -100px;
  left: -200px;
}

.landing .hero-bg-dots {
  pointer-events: none;
  background-image: radial-gradient(circle, #2563eb0d 1px, #0000 1px);
  background-size: 40px 40px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(60% 50% at 25% 35%, #000 10%, #0000 55%);
  mask-image: radial-gradient(60% 50% at 25% 35%, #000 10%, #0000 55%);
}

.landing .hero-grid {
  z-index: 1;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 64px;
  display: grid;
  position: relative;
}

.landing .hero-badge {
  background: var(--blue-u);
  border: 1px solid var(--blue-l);
  color: var(--blue);
  letter-spacing: .2px;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.landing .hero-badge .dot {
  background: var(--green);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 2s ease-in-out infinite pulse;
  box-shadow: 0 0 8px #10b98180;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 8px #10b98180;
  }

  50% {
    opacity: .6;
    box-shadow: 0 0 16px #10b981cc;
  }
}

.landing .hero-content {
  position: relative;
}

.landing .hero-accent {
  font-family: var(--font-playfair), serif;
  color: #2563eb0b;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -10px;
  font-size: 280px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 50px;
  left: -24px;
}

.landing .hero h1 {
  letter-spacing: -4.5px;
  color: var(--text);
  z-index: 1;
  margin-bottom: 32px;
  font-size: clamp(54px, 6.5vw, 84px);
  font-weight: 800;
  line-height: .92;
  position: relative;
}

.landing .hero h1:after {
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  border-radius: 2px;
  width: 64px;
  height: 4px;
  margin-top: 24px;
  display: block;
}

.landing .hero h1 .grad, .landing .hero h1 .grad-animated {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.landing .hero-p {
  color: var(--text-m);
  max-width: 440px;
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.8;
}

.landing .hero-btns {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  display: flex;
}

.landing .hero-proof {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.landing .hero-checks {
  color: var(--text-m);
  gap: 20px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.landing .hero-checks span {
  align-items: center;
  gap: 6px;
  display: flex;
}

.landing .hero-checks .ck {
  color: var(--green);
  font-weight: 800;
}

.landing .hero-rating {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.landing .hr-stars {
  color: #f59e0b;
  letter-spacing: 1px;
  font-size: 15px;
}

.landing .hr-text {
  color: var(--text-d);
  font-size: 12px;
  font-weight: 500;
}

.landing .live-pill {
  background: var(--green-bg);
  color: #059669;
  border: 1px solid #10b98126;
  border-radius: 100px;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.landing .live-pill .ld {
  background: var(--green);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 6px #10b98180;
}

.landing .hero-visual {
  position: relative;
}

.landing .demo-float-toast {
  z-index: 10;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  animation: 4s ease-in-out infinite toastF;
  display: flex;
  position: absolute;
  top: -18px;
  right: -24px;
  box-shadow: 0 8px 32px #0f172a14, 0 1px 2px #0f172a0a;
}

.landing .demo-float-count {
  z-index: 10;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  animation: 4s ease-in-out 2s infinite toastF;
  display: flex;
  position: absolute;
  bottom: -12px;
  left: -28px;
  box-shadow: 0 6px 24px #0f172a12;
}

.landing .demo-float-count .fc-num {
  color: var(--blue);
  letter-spacing: -.5px;
  font-size: 18px;
  font-weight: 800;
}

.landing .demo-float-count .fc-lbl {
  color: var(--text-d);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

.landing .demo-float-count .fc-icon {
  background: var(--blue-u);
  border: 1px solid var(--blue-l);
  width: 28px;
  height: 28px;
  color: var(--blue);
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.landing .demo-float-toast:before {
  content: "";
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px #10b98166;
}

.landing .toast-t {
  color: var(--text-2);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
}

.landing .toast-s {
  color: var(--text-d);
  font-size: 10px;
}

@keyframes toastF {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.landing .demo-border {
  background: linear-gradient(135deg, #2563eb33, #6366f11f, #2563eb0f, #8b5cf62e) 0 0 / 300% 300%;
  border-radius: 22px;
  padding: 2px;
  animation: 8s ease-in-out infinite bShift;
  box-shadow: 0 24px 72px #2563eb1a, 0 8px 24px #0f172a0a;
}

@keyframes bShift {
  0%, 100% {
    background-position: 0;
  }

  50% {
    background-position: 100%;
  }
}

.landing .demo {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.landing .demo-bar {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(#fafbfe, #f8f9fc);
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  display: flex;
}

.landing .demo-dots {
  gap: 6px;
  display: flex;
}

.landing .demo-dots i {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: block;
}

.landing .demo-dots i:first-child {
  background: #fca5a5;
}

.landing .demo-dots i:nth-child(2) {
  background: #fcd34d;
}

.landing .demo-dots i:nth-child(3) {
  background: #86efac;
}

.landing .demo-bar-t {
  color: var(--text-m);
  font-size: 11px;
  font-weight: 600;
}

.landing .demo-body {
  padding: 16px;
}

.landing .demo-lbl {
  color: var(--text-d);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 700;
}

.landing .thumbs {
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
  display: grid;
}

.landing .th {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.landing .th:hover {
  z-index: 1;
  transform: scale(1.04);
  box-shadow: 0 4px 16px #0f172a1a;
}

.landing .th:after {
  content: attr(data-r);
  color: #fffffff2;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: #00000080;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 7.5px;
  font-weight: 600;
  position: absolute;
  bottom: 3px;
  left: 4px;
}

.landing .demo-proc {
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 10px 0;
  display: flex;
}

.landing .demo-line {
  background: var(--bg-blue-2);
  border-radius: 2px;
  flex: 1;
  height: 3px;
  position: relative;
  overflow: hidden;
}

.landing .demo-line:after {
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--blue-v));
  border-radius: 2px;
  width: 40%;
  animation: 2.5s ease-in-out infinite slide;
  position: absolute;
  inset: 0;
}

@keyframes slide {
  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }
}

.landing .demo-pill {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  background: var(--blue-u);
  border: 1px solid var(--blue-l);
  white-space: nowrap;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 700;
}

.landing .demo-out {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.landing .demo-vid {
  aspect-ratio: 16 / 9;
  background: url("/images/landing/video-frame.jpg") center / cover;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.landing .demo-vid:before {
  content: "";
  background: linear-gradient(#00000005 0%, #0003 100%);
  position: absolute;
  inset: 0;
}

.landing .play-btn {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 1;
  cursor: pointer;
  background: #fff3;
  border: 2px solid #ffffff59;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s;
  animation: 3s ease-in-out 1s infinite playPulse;
  display: flex;
  position: relative;
}

.landing .play-btn:after {
  content: "";
  border: 7px solid #0000;
  border-left: 12px solid #fff;
  border-right-width: 0;
  margin-left: 2px;
}

.landing .play-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 36px #2563eb66;
}

.landing .demo-meta {
  border-top: 1px solid var(--border);
  background: linear-gradient(#fafbfe, #f8f9fc);
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  display: flex;
}

.landing .demo-meta .name {
  color: var(--text-2);
  font-size: 11px;
  font-weight: 600;
}

.landing .demo-meta .tags {
  gap: 5px;
  display: flex;
}

.landing .demo-meta .tags span {
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 600;
}

.landing .tag-q {
  color: var(--text-d);
  background: var(--bg-blue);
}

.landing .tag-g {
  color: var(--green);
  background: var(--green-bg);
}

.landing .logos {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 0 0;
  overflow: hidden;
}

.landing .logos-lbl {
  text-align: center;
  color: var(--text-d);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 600;
}

.landing .logos-runner {
  background: var(--white);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 22px 0;
}

.landing .logos-track {
  align-items: center;
  width: max-content;
  animation: 35s linear infinite lscroll;
  display: flex;
}

@keyframes lscroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.landing .logos-track span {
  color: var(--text-2);
  opacity: .3;
  white-space: nowrap;
  letter-spacing: .5px;
  align-items: center;
  gap: 0;
  font-size: 15px;
  font-weight: 700;
  transition: opacity .3s;
  display: flex;
}

.landing .logos-track span:after {
  content: "·";
  color: var(--text-d);
  opacity: .4;
  margin: 0 32px;
  font-size: 18px;
}

.landing .s-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue);
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.landing .s-label:before {
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--blue-v));
  border-radius: 1px;
  width: 24px;
  height: 2px;
}

.landing .s-title {
  letter-spacing: -2.5px;
  color: var(--text);
  margin-bottom: 18px;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.06;
}

.landing .s-title .bl {
  color: var(--blue);
}

.landing .s-desc {
  color: var(--text-m);
  letter-spacing: -.1px;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.7;
}

.landing .showcase {
  background: linear-gradient(180deg, var(--white) 0%, var(--white) 80%, var(--bg-blue) 100%);
  padding: 120px 0 100px;
  position: relative;
}

.landing .showcase:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #2563eb0a 0%, #0000 60%);
  width: 500px;
  height: 500px;
  position: absolute;
  top: 10%;
  right: -100px;
}

.landing .showcase-inner {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  display: grid;
}

.landing .showcase-text .s-desc {
  margin-bottom: 32px;
}

.landing .showcase-stats {
  gap: 36px;
  display: flex;
}

.landing .showcase-stats > div {
  padding-left: 16px;
  position: relative;
}

.landing .showcase-stats > div:before {
  content: "";
  background: linear-gradient(180deg, var(--blue), var(--blue-v));
  border-radius: 2px;
  width: 3px;
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
}

.landing .showcase-stats .st-n {
  color: var(--blue);
  letter-spacing: -1.5px;
  font-size: 30px;
  font-weight: 800;
}

.landing .showcase-stats .st-l {
  color: var(--text-d);
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
}

.landing .showcase-visual {
  position: relative;
}

.landing .ba-stack {
  height: 460px;
  position: relative;
}

.landing .ba-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  overflow: hidden;
  box-shadow: 0 16px 48px #0f172a1a;
}

.landing .ba-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.landing .ba-before {
  z-index: 1;
  filter: saturate(.65);
  width: 330px;
  height: 260px;
  top: 0;
  left: -10px;
  transform: rotate(-5deg);
}

.landing .ba-before:hover {
  transform: rotate(-5deg)translateY(-10px)scale(1.03);
  box-shadow: 0 24px 64px #0f172a29;
}

.landing .ba-before .ba-tag {
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #ffffffe6;
  background: #0f172ab3;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 9px;
  font-weight: 700;
  position: absolute;
  top: 12px;
  left: 12px;
}

.landing .ba-after {
  z-index: 2;
  border-color: #2563eb26;
  width: 380px;
  height: 280px;
  bottom: 0;
  right: -10px;
  transform: rotate(3deg);
  box-shadow: 0 20px 56px #2563eb24;
}

.landing .ba-after:hover {
  transform: rotate(3deg)translateY(-10px)scale(1.03);
  box-shadow: 0 28px 72px #2563eb33;
}

.landing .ba-after .ba-tag {
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #fff;
  background: #2563ebe6;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 9px;
  font-weight: 700;
  position: absolute;
  top: 12px;
  left: 12px;
}

.landing .ba-after .play-sm {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #2563ebd9;
  border: 2px solid #ffffff4d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 24px #2563eb59;
}

.landing .ba-after:hover .play-sm {
  transform: translate(-50%, -50%)scale(1.1);
  box-shadow: 0 8px 36px #2563eb73;
}

.landing .ba-after .play-sm:after {
  content: "";
  border: 7px solid #0000;
  border-left: 11px solid #fff;
  border-right-width: 0;
  margin-left: 2px;
}

.landing .features {
  background: var(--bg-blue);
  padding: 120px 0;
  position: relative;
}

.landing .features:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #2563eb0d 0%, #0000 60%);
  width: 700px;
  height: 700px;
  position: absolute;
  top: -200px;
  left: -200px;
}

.landing .features-head {
  margin-bottom: 56px;
}

.landing .bento {
  perspective: 1200px;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  display: grid;
}

.landing .b-card {
  background: var(--white);
  border-radius: var(--radius);
  transform-style: preserve-3d;
  border: 1px solid #0f172a0f;
  padding: 36px 30px;
  transition: all .45s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px #0f172a0a, 0 4px 20px #0f172a08;
}

.landing .b-card:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  opacity: .4;
  filter: blur(50px);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  transition: opacity .4s;
  position: absolute;
}

.landing .b-card:hover:before {
  opacity: .7;
}

.landing .b-card:after {
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--blue-v));
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transform-origin: 0;
  z-index: 2;
  height: 3px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.landing .b-card:hover:after {
  opacity: 1;
  transform: scaleX(1);
}

.landing .b-card .b-spotlight {
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), #2563eb0d, transparent 40%);
  opacity: 0;
  transition: opacity .4s;
  position: absolute;
  inset: 0;
}

.landing .b-card:hover .b-spotlight {
  opacity: 1;
}

.landing .b-card:hover {
  border-color: #2563eb1f;
  transform: translateY(-5px);
  box-shadow: 0 8px 32px #2563eb14, 0 2px 8px #0f172a0a;
}

.landing .bc-1 {
  color: #fff;
  background: linear-gradient(155deg, #1e3a6e, #162b52, #0f1f3d);
  border-color: #2563eb1a;
  grid-area: span 2 / span 7;
  padding: 40px;
  box-shadow: 0 4px 24px #0f172a1f;
}

.landing .bc-1:before {
  opacity: .6;
  background: #60a5fa26;
  width: 250px;
  height: 250px;
  top: -60px;
  right: -60px;
}

.landing .bc-1:hover:before {
  opacity: 1;
}

.landing .bc-1:hover {
  border-color: #3b82f633;
  box-shadow: 0 16px 48px #2563eb29;
}

.landing .bc-2 {
  background: linear-gradient(180deg, var(--white) 0%, #f0f4ff 100%);
  grid-column: span 5;
}

.landing .bc-2:before {
  background: #2563eb14;
  bottom: -50px;
  right: -50px;
}

.landing .bc-3 {
  background: linear-gradient(180deg, var(--white) 0%, #f0fdf4 100%);
  grid-column: span 5;
}

.landing .bc-3:before {
  background: #10b98114;
  bottom: -50px;
  left: -50px;
}

.landing .bc-3 .b-icon {
  background: var(--green-bg);
  color: var(--green);
  border-color: #10b98126;
}

.landing .bc-3:hover .b-icon {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.landing .bc-3:after {
  background: linear-gradient(90deg, var(--green), #34d399);
}

.landing .bc-4 {
  background: linear-gradient(180deg, var(--white) 0%, #fff8f0 100%);
  grid-column: span 5;
}

.landing .bc-4:before {
  background: #f973160f;
  top: -50px;
  right: -50px;
}

.landing .bc-4 .b-icon {
  color: var(--orange);
  background: #fff7ed;
  border-color: #fed7aa;
}

.landing .bc-4:hover .b-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.landing .bc-4:after {
  background: linear-gradient(90deg, var(--orange), #fb923c);
}

.landing .bc-5 {
  background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
  border-color: #6366f11a;
  grid-column: span 7;
}

.landing .bc-5:before {
  background: #6366f10f;
  top: -50px;
  left: -50px;
}

.landing .bc-5:hover {
  border-color: #6366f140;
}

.landing .bc-5 h3 {
  color: var(--text);
}

.landing .bc-5 p {
  color: var(--text-m);
}

.landing .bc-5 .b-icon {
  color: var(--indigo);
  background: #6366f11a;
  border-color: #6366f126;
}

.landing .bc-5:hover .b-icon {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

.landing .bc-5:after {
  background: linear-gradient(90deg, var(--indigo), #818cf8);
}

.landing .bc-6 {
  color: var(--text);
  background: linear-gradient(135deg, #f0f4ff, #e8eeff, #f0f4ff);
  border-color: #2563eb14;
  grid-column: span 12;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  display: grid;
}

.landing .bc-6:before {
  background: #2563eb0f;
  bottom: -40px;
  right: 20%;
}

.landing .bc-6 h3 {
  color: var(--text);
  letter-spacing: -.2px;
  font-size: 16px;
}

.landing .bc-6 p {
  color: var(--text-m);
}

.landing .bc-6 .b-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  margin-bottom: 0;
}

.landing .bc-6:hover .b-icon {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

.landing .bc-6:hover {
  border-color: #2563eb2e;
}

.landing .b-tag {
  z-index: 1;
  margin-top: 16px;
  position: relative;
}

.landing .b-formats {
  z-index: 1;
  gap: 8px;
  margin-top: 16px;
  display: flex;
  position: relative;
}

.landing .b-formats span {
  color: var(--green);
  letter-spacing: .5px;
  background: #10b98114;
  border: 1px solid #10b9811f;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
}

.landing .b-icon {
  width: 44px;
  height: 44px;
  color: var(--blue);
  background: var(--blue-u);
  border: 1.5px solid var(--blue-l);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 19px;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.landing .b-card:hover .b-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px #2563eb33;
}

.landing .bc-1 .b-icon {
  color: var(--blue-v);
  background: #3b82f61f;
  border-color: #3b82f633;
}

.landing .bc-1:hover .b-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.landing .b-card h3 {
  color: var(--text);
  letter-spacing: -.3px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}

.landing .bc-1 h3 {
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.15;
}

.landing .b-card p {
  color: var(--text-m);
  font-size: 13.5px;
  line-height: 1.65;
}

.landing .bc-1 p {
  color: #ffffffb3;
  max-width: 340px;
  font-size: 14.5px;
}

.landing .bc1-preview {
  aspect-ratio: 16 / 9;
  background: url("/images/landing/video-frame.jpg") center / cover;
  border: 1px solid #ffffff14;
  border-radius: 12px;
  margin-top: 28px;
  position: relative;
  overflow: hidden;
}

.landing .bc1-preview:before {
  content: "";
  background: linear-gradient(#0000001a 0%, #00000059 100%);
  position: absolute;
  inset: 0;
}

.landing .bc1-preview .play-sm-2 {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #ffffff2e;
  border: 1.5px solid #ffffff4d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  animation: 3s ease-in-out infinite playPulse;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes playPulse {
  0%, 100% {
    box-shadow: 0 0 #ffffff26;
  }

  50% {
    box-shadow: 0 0 0 10px #fff0;
  }
}

.landing .bc1-preview .play-sm-2:after {
  content: "";
  border: 5px solid #0000;
  border-left: 8px solid #ffffffe6;
  border-right-width: 0;
  margin-left: 1px;
}

.landing .how {
  background: var(--white);
  padding: 120px 0 100px;
  position: relative;
}

.landing .how-head {
  text-align: center;
  margin-bottom: 64px;
}

.landing .how-head .s-label {
  justify-content: center;
}

.landing .how-head .s-desc {
  margin: 0 auto;
}

.landing .steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
  position: relative;
}

.landing .steps:before {
  content: "";
  background: var(--blue-l);
  z-index: 0;
  height: 2px;
  position: absolute;
  top: 78px;
  left: 16%;
  right: 16%;
}

.landing .steps:after {
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--blue-v));
  z-index: 1;
  border-radius: 2px;
  width: 0;
  height: 3px;
  animation: 5s ease-in-out infinite alternate traceBeam;
  position: absolute;
  top: 77px;
  left: 16%;
  box-shadow: 0 0 8px #2563eb40;
}

@keyframes traceBeam {
  0% {
    opacity: .5;
    width: 0%;
  }

  100% {
    opacity: 1;
    width: 68%;
  }
}

.landing .step {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: 2;
  padding: 48px 32px;
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px #0f172a0a;
}

.landing .step:before {
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  height: 4px;
  transition: opacity .3s;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
}

.landing .step:hover:before {
  opacity: 1;
}

.landing .step:hover {
  border-color: #2563eb2e;
  transform: translateY(-10px);
  box-shadow: 0 24px 64px #2563eb1f, 0 0 0 1px #2563eb0f;
}

.landing .step-n {
  background: var(--blue-u);
  border: 2px solid var(--blue-l);
  width: 60px;
  height: 60px;
  color: var(--blue);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 22px;
  font-size: 22px;
  transition: all .4s;
  display: flex;
  position: relative;
}

.landing .step:hover .step-n {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: scale(1.08)translateY(-2px);
  box-shadow: 0 8px 28px #2563eb4d;
}

.landing .step-num {
  color: var(--blue-v);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 800;
}

.landing .step h3 {
  color: var(--text);
  letter-spacing: -.2px;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
}

.landing .step p {
  color: var(--text-m);
  font-size: 13.5px;
  line-height: 1.65;
}

.landing .vid-strip {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-blue) 20%, var(--bg-blue) 80%, var(--white) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.landing .vid-strip-lbl {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-d);
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
}

.landing .vid-strip-track {
  gap: 12px;
  width: max-content;
  animation: 30s linear infinite vscroll;
  display: flex;
}

@keyframes vscroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.landing .vid-strip-item {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  background-position: center;
  background-size: cover;
  border-radius: 16px;
  flex-shrink: 0;
  width: 280px;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px #0f172a0f;
}

.landing .vid-strip-item:hover {
  z-index: 2;
  transform: translateY(-6px)scale(1.03);
  box-shadow: 0 16px 40px #0f172a1f;
}

.landing .vid-strip-track:hover .vid-strip-item {
  opacity: .5;
  filter: brightness(.7);
}

.landing .vid-strip-track:hover .vid-strip-item:hover {
  opacity: 1;
  filter: brightness();
}

.landing .vid-strip-item:after {
  content: attr(data-title);
  color: #fff;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: #00000080;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 600;
  position: absolute;
  bottom: 8px;
  left: 8px;
}

.landing .stats {
  background: var(--white);
  padding: 100px 0 80px;
  position: relative;
}

.landing .stats:before {
  content: "";
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 30%, var(--bg) 70%, var(--white) 100%);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.landing .stats-head {
  text-align: center;
  z-index: 1;
  margin-bottom: 48px;
  position: relative;
}

.landing .stats-head .s-label {
  justify-content: center;
}

.landing .stats-head .s-desc {
  margin: 0 auto;
}

.landing .stats-grid {
  z-index: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: grid;
  position: relative;
}

.landing .stat-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 24px;
  transition: all .45s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px #0f172a0a;
}

.landing .stat-card:before {
  content: "";
  opacity: .7;
  background: linear-gradient(90deg, var(--blue), var(--blue-v));
  height: 3px;
  transition: all .3s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.landing .stat-card:hover:before {
  opacity: 1;
  height: 4px;
}

.landing .stat-card:after {
  content: "";
  opacity: 0;
  pointer-events: none;
  filter: blur(40px);
  background: #2563eb0f;
  border-radius: 50%;
  width: 200px;
  height: 120px;
  transition: opacity .4s;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.landing .stat-card:hover:after {
  opacity: 1;
}

.landing .stat-card:hover {
  border-color: #2563eb1f;
  transform: translateY(-10px);
  box-shadow: 0 24px 64px #0f172a1a;
}

.landing .stat-icon {
  background: var(--blue-u);
  width: 42px;
  height: 42px;
  color: var(--blue);
  border: 1.5px solid var(--blue-l);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  font-size: 19px;
  display: flex;
}

.landing .stat-num {
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-text-fill-color: transparent;
  z-index: 1;
  opacity: 0;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  transition: opacity .6s ease-out, transform .6s ease-out;
  position: relative;
  transform: translateY(16px);
}

.landing .stat-lbl {
  color: var(--text-m);
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
}

.landing .testi {
  background: var(--bg-blue);
  padding: 120px 0 100px;
  position: relative;
}

.landing .testi:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #2563eb0d 0%, #0000 55%);
  width: 600px;
  height: 600px;
  position: absolute;
  bottom: -200px;
  right: -100px;
}

.landing .testi-inner {
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
  gap: 64px;
  padding-top: 20px;
  display: grid;
}

.landing .testi-text .s-desc {
  margin-bottom: 0;
}

.landing .testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 48px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px #0f172a0a;
}

.landing .testi-card:hover {
  border-color: #2563eb1f;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px #2563eb14;
}

.landing .testi-card:before {
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--indigo), var(--blue-v), var(--blue));
  background-size: 200% 100%;
  border-radius: 22px 22px 0 0;
  height: 4px;
  animation: 4s linear infinite gradShift;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
}

.landing .testi-card:after {
  content: "“";
  font-family: var(--font-playfair), serif;
  background: linear-gradient(135deg, var(--bg-blue-2), #2563eb14);
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 140px;
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 32px;
}

.landing .testi-sm:after, .landing .testi-sm:before {
  display: none;
}

.landing .testi-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-size: 20px;
}

.landing .testi-card blockquote {
  color: var(--text-2);
  z-index: 1;
  margin-bottom: 28px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  position: relative;
}

.landing .testi-who {
  z-index: 1;
  align-items: center;
  gap: 14px;
  display: flex;
  position: relative;
}

.landing .testi-ava {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
}

.landing .testi-photo {
  object-fit: cover;
  border: 2px solid var(--blue-l);
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.landing .testi-who strong {
  color: var(--text);
  font-size: 14px;
}

.landing .testi-who small {
  color: var(--text-d);
  margin-top: 2px;
  font-size: 12px;
  display: block;
}

.landing .pricing {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 50%, var(--bg) 100%);
  padding: 120px 0 100px;
  position: relative;
}

.landing .pricing-head {
  text-align: center;
  margin-bottom: 56px;
}

.landing .pricing-head .s-label {
  justify-content: center;
}

.landing .pricing-head .s-desc {
  margin: 0 auto;
}

.landing .pricing-grid {
  perspective: 1000px;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.landing .p-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-2);
  transform-style: preserve-3d;
  border-radius: 20px;
  padding: 36px 20px;
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  box-shadow: 0 2px 8px #0f172a08;
}

.landing .p-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px #0f172a1a;
}

.landing .p-card.pop {
  background: linear-gradient(90deg, var(--blue), var(--indigo)) top / 100% 3px no-repeat, linear-gradient(160deg, #0f172a, #1a2744, #162040);
  color: #fff;
  border: 1px solid #2563eb26;
  padding-top: 48px;
  position: relative;
  overflow: visible;
  transform: scale(1.04);
  box-shadow: 0 12px 40px #0f172a24, 0 0 0 1px #2563eb0f;
}

.landing .p-card.pop:hover {
  transform: scale(1.04)translateY(-8px);
  box-shadow: 0 28px 64px #2563eb2e, 0 0 0 1px #2563eb1a;
}

.landing .pop-tag {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  z-index: 10;
  white-space: nowrap;
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 16px #2563eb4d;
}

.landing .p-name {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
}

.landing .p-card:not(.pop) .p-name {
  color: var(--text-d);
}

.landing .p-card.pop .p-name {
  color: var(--blue-v);
}

.landing .p-price {
  letter-spacing: -2.5px;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}

.landing .p-card:not(.pop) .p-price {
  color: var(--text);
}

.landing .p-card.pop .p-price {
  color: #fff;
}

.landing .p-price sup {
  vertical-align: super;
  margin-right: 2px;
  font-size: 20px;
  font-weight: 600;
}

.landing .p-price small {
  margin-left: 4px;
  font-size: 13px;
  font-weight: 400;
}

.landing .p-card:not(.pop) .p-price small {
  color: var(--text-d);
}

.landing .p-card.pop .p-price small {
  color: #ffffff80;
}

.landing .p-desc {
  margin-bottom: 28px;
  font-size: 13px;
}

.landing .p-card:not(.pop) .p-desc {
  color: var(--text-d);
}

.landing .p-card.pop .p-desc {
  color: #ffffff80;
}

.landing .p-feat {
  text-align: left;
  margin-bottom: 32px;
  list-style: none;
}

.landing .p-feat li {
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13.5px;
  display: flex;
}

.landing .p-card:not(.pop) .p-feat li {
  color: var(--text-m);
  border-bottom: 1px solid var(--border);
}

.landing .p-card.pop .p-feat li {
  color: #ffffffb3;
  border-bottom: 1px solid #ffffff0f;
}

.landing .p-feat li:last-child {
  border-bottom: none;
}

.landing .p-feat .ck {
  color: var(--green);
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
}

.landing .p-btn {
  width: 100%;
  font: 600 14px / 1 var(--font-sora), sans-serif;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  padding: 14px;
  transition: all .22s;
}

.landing .p-btn.o {
  background: var(--bg);
  border: 1px solid var(--border-2);
  color: var(--text-m);
}

.landing .p-btn.o:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-u);
}

.landing .p-btn.f {
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: #fff;
  box-shadow: 0 4px 16px #f9731640;
}

.landing .p-btn.f:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px #f973164d;
}

.landing .faq {
  background: var(--white);
  padding: 100px 0;
}

.landing .faq-head {
  text-align: center;
  margin-bottom: 56px;
}

.landing .faq-head .s-label {
  justify-content: center;
}

.landing .faq-grid {
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
}

.landing .faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  background: var(--white);
  transition: all .3s;
  overflow: hidden;
}

.landing .faq-item[open] {
  border-color: #2563eb26;
  box-shadow: 0 4px 16px #2563eb0f;
}

.landing .faq-q {
  color: var(--text);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  transition: color .2s;
  display: flex;
}

.landing .faq-q:hover {
  color: var(--blue);
}

.landing .faq-q:after {
  content: "+";
  color: var(--text-d);
  font-size: 20px;
  font-weight: 400;
  transition: transform .3s;
}

.landing .faq-item[open] .faq-q:after {
  content: "−";
  color: var(--blue);
}

.landing .faq-q::-webkit-details-marker {
  display: none;
}

.landing .faq-a {
  color: var(--text-m);
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
}

.landing .cta {
  text-align: center;
  color: #fff;
  background: linear-gradient(160deg, #0b1120, #0f172a 40%, #162040 70%, #1a2c52);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.landing .cta:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(#2563eb2e 0%, #6366f10f 35%, #0000 60%);
  width: 1100px;
  height: 700px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.landing .cta:after {
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle, #ffffff08 1px, #0000 1px);
  background-size: 32px 32px;
  position: absolute;
  inset: 0;
}

.landing .cta-deco-1 {
  pointer-events: none;
  border: 1px solid #60a5fa14;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 30px;
  left: 8%;
}

.landing .cta-deco-2 {
  pointer-events: none;
  border: 1px solid #6366f10f;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: absolute;
  bottom: 40px;
  right: 10%;
}

.landing .cta-deco-3 {
  pointer-events: none;
  background: #60a5fa33;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 5%;
}

.landing .cta .s-label {
  color: var(--blue-v);
}

.landing .cta .s-label:before {
  background: linear-gradient(90deg, var(--blue-v), #818cf8);
}

.landing .cta h2 {
  letter-spacing: -3px;
  color: #fff;
  z-index: 1;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  position: relative;
}

.landing .cta h2 .bl {
  background: linear-gradient(135deg, #60a5fa, #818cf8, #a78bfa);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.landing .cta > .wrap > p {
  color: #fff9;
  z-index: 1;
  max-width: 420px;
  margin-bottom: 44px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.7;
  position: relative;
}

.landing .cta-btns {
  z-index: 1;
  justify-content: center;
  gap: 12px;
  display: flex;
  position: relative;
}

.landing .cta .btn-outline {
  color: #fffc;
  background: #ffffff0f;
  border-color: #ffffff2e;
}

.landing .cta .btn-outline:hover {
  color: #fff;
  background: #ffffff1a;
  border-color: #ffffff59;
}

.landing footer {
  color: #ffffffb3;
  background: #0b1120;
  padding: 72px clamp(24px, 5vw, 72px) 40px;
}

.landing footer h6, .landing footer .foot-heading {
  color: #ffffff80;
}

.landing footer li {
  color: #ffffff8c;
}

.landing .foot-brand {
  color: #fff !important;
}

.landing .foot-tag {
  color: #ffffff73;
}

.landing .foot-bottom {
  border-top: 1px solid #ffffff14;
}

.landing .foot-copy {
  color: #ffffff59;
}

.landing .foot-b {
  color: #ffffffb3;
  background: #ffffff0f;
  border-color: #ffffff26;
  font-size: 11px;
}

.landing .foot-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.landing .foot-grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  display: grid;
}

.landing .foot-brand {
  color: var(--text);
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
}

.landing .foot-brand b {
  color: var(--blue);
}

.landing .foot-tag {
  color: var(--text-d);
  font-size: 13px;
  line-height: 1.7;
}

.landing footer h6, .landing footer .foot-heading {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-d);
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 700;
}

.landing footer ul {
  list-style: none;
}

.landing footer li {
  color: #ffffff80;
  cursor: pointer;
  padding: 6px 0;
  font-size: 13px;
  transition: color .2s;
}

.landing footer li:hover {
  color: var(--blue-v);
}

.landing .foot-bottom {
  border-top: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  display: flex;
}

.landing .foot-copy {
  color: var(--text-d);
  font-size: 12px;
}

.landing .foot-badges {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.landing .foot-b {
  color: var(--text-d);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 600;
  transition: all .2s;
}

.landing .foot-b:hover {
  color: var(--text-m);
  border-color: #2563eb26;
}

.landing .foot-b.rev {
  color: #d97706;
  background: #fffbeb;
  border-color: #d977061f;
}

.landing .foot-soon {
  opacity: .4;
  cursor: default;
}

@media (max-width: 900px) {
  .landing .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landing .hero-visual {
    order: -1;
  }

  .landing .showcase-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landing .bento {
    grid-template-columns: 1fr;
  }

  .landing .bc-1, .landing .bc-2, .landing .bc-3, .landing .bc-4, .landing .bc-5, .landing .bc-6 {
    grid-column: span 1;
  }

  .landing .bc-1 {
    grid-row: span 1;
  }

  .landing .steps {
    grid-template-columns: 1fr;
  }

  .landing .steps:before {
    display: none;
  }

  .landing .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .landing .p-card.pop {
    transform: none;
  }

  .landing .testi-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .landing .ba-stack {
    flex-direction: column;
    gap: 12px;
    height: auto;
    display: flex;
  }

  .landing .ba-before, .landing .ba-after {
    width: 100%;
    height: 200px;
    position: static;
    transform: none;
  }

  .landing .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .landing .nav-links {
    display: none;
  }
}

/*# sourceMappingURL=apps_web_styles_landing_a8861a6c.css.map*/