/* [project]/apps/web/src/styles/landing.css [app-client] (css) */
.landing-root {
  color: #fff;
  background: #0a0a0f;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

.landing-splitter {
  aspect-ratio: 16 / 9;
  border: 1px solid #ffffff14;
  border-radius: 16px;
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px #6d28d940, 0 0 0 1px #ffffff0a;
}

.ba-splitter {
  -webkit-user-select: none;
  user-select: none;
  background: #111;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ba-before {
  position: absolute;
  inset: 0;
}

.ba-before img {
  object-fit: cover;
  object-position: center;
  filter: grayscale(80%) brightness(.75);
  width: 100%;
  height: 100%;
  display: block;
}

.ba-after {
  position: absolute;
  inset: 0;
}

.ba-after img {
  object-fit: cover;
  object-position: center;
  filter: saturate(160%) contrast(110%);
  width: 100%;
  height: 100%;
  display: block;
}

.ba-label {
  letter-spacing: .05em;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  border-radius: 9999px;
  padding: .25rem .875rem;
  font-size: .72rem;
  font-weight: 700;
  position: absolute;
  bottom: 1rem;
}

.ba-label--before {
  color: #d1d5db;
  background: #0009;
  border: 1px solid #ffffff14;
  left: 1rem;
}

.ba-label--after {
  color: #d8b4fe;
  background: #0009;
  border: 1px solid #a855f74d;
  right: 1rem;
  box-shadow: 0 0 16px #a855f726;
}

.ba-handle {
  z-index: 20;
  cursor: col-resize;
  touch-action: none;
  flex-direction: column;
  align-items: center;
  width: 48px;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
}

.ba-handle:focus {
  outline: none;
}

.ba-line {
  pointer-events: none;
  background: linear-gradient(#0000 0%, #ffffffb3 15% 85%, #0000 100%);
  width: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px #ffffff40;
}

.ba-play-ring {
  backdrop-filter: blur(12px);
  z-index: 30;
  pointer-events: none;
  background: #0a0a0fd9;
  border: 1px solid #ffffff1f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  transition: border-color .25s, box-shadow .25s;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ba-handle:hover .ba-play-ring, .ba-handle.active .ba-play-ring {
  border-color: #a855f78c;
  box-shadow: 0 0 35px -5px #a855f780;
}

.ba-play-btn {
  color: #0a0a0f;
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  padding-left: 3px;
  transition: background .15s, transform .25s;
  display: flex;
}

.ba-handle:hover .ba-play-btn, .ba-handle.active .ba-play-btn {
  transform: scale(1.06);
}

.landing-glow-top {
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(#6d28d92e 0%, #0000 70%);
  width: 900px;
  height: 700px;
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
}

.landing-glow-bottom {
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(#4c1d951a 0%, #0000 70%);
  width: 700px;
  height: 700px;
  position: fixed;
  bottom: -15%;
  right: -10%;
}

.landing-nav {
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  position: relative;
}

.landing-logo {
  color: #fff;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  display: flex;
}

.landing-logo-icon {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.landing-logo-text {
  letter-spacing: -.02em;
  font-size: 1.2rem;
  font-weight: 700;
}

.landing-logo-text span {
  color: #9ca3af;
  font-weight: 400;
}

.landing-nav-links {
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.landing-nav-links a {
  color: #9ca3af;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}

.landing-nav-links a:hover {
  color: #fff;
}

.landing-nav-actions {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.btn-login {
  color: #9ca3af;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}

.btn-login:hover {
  color: #fff;
}

.btn-get-started {
  color: #fff;
  background: #ffffff14;
  border: 1px solid #ffffff0f;
  border-radius: 9999px;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}

.btn-get-started:hover {
  background: #ffffff24;
}

.landing-hero {
  z-index: 10;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
  display: flex;
  position: relative;
}

.landing-badge {
  color: #c4b5fd;
  background: #a855f71a;
  border: 1px solid #a855f733;
  border-radius: 9999px;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
  padding: .375rem .875rem;
  font-size: .85rem;
  font-weight: 500;
  display: inline-flex;
}

.badge-dot {
  background: #a855f7;
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  animation: 2s ease-in-out infinite pulseDot;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

.landing-headline {
  letter-spacing: -.03em;
  max-width: 900px;
  margin: 0 0 1.5rem;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
}

.landing-headline-gradient {
  background: linear-gradient(135deg, #c084fc 0%, #a78bfa 40%, #818cf8 100%);
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px #a855f74d);
  -webkit-background-clip: text;
  background-clip: text;
}

.landing-subtitle {
  color: #9ca3af;
  max-width: 580px;
  margin: 0 0 2.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
}

.landing-ctas {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4.5rem;
  display: flex;
}

.btn-primary-cta {
  color: #fff;
  background: #7c3aed;
  border: 1px solid #0000;
  border-radius: 9999px;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .2s;
  display: inline-flex;
  box-shadow: 0 0 50px -10px #8b5cf699;
}

.btn-primary-cta:hover {
  background: #6d28d9;
  transform: translateY(-1px);
  box-shadow: 0 0 70px -10px #8b5cf6cc;
}

.btn-primary-cta svg {
  transition: transform .2s;
}

.btn-primary-cta:hover svg {
  transform: translateX(3px);
}

.btn-demo {
  color: #e5e7eb;
  background: none;
  border: 1px solid #ffffff26;
  border-radius: 9999px;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  display: inline-flex;
}

.btn-demo:hover {
  background: #ffffff0a;
  border-color: #ffffff59;
}

.landing-mockup {
  aspect-ratio: 16 / 9;
  background: #111;
  border: 1px solid #ffffff14;
  border-radius: 16px;
  width: 100%;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px #6d28d940, 0 0 0 1px #ffffff0a;
}

.mockup-left {
  width: 50%;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mockup-left img {
  object-fit: cover;
  object-position: center;
  opacity: .65;
  filter: grayscale();
  width: 100%;
  height: 100%;
}

.mockup-label-left {
  backdrop-filter: blur(8px);
  letter-spacing: .05em;
  color: #d1d5db;
  white-space: nowrap;
  background: #000000a6;
  border: 1px solid #ffffff14;
  border-radius: 9999px;
  padding: .3rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.mockup-right {
  width: 50%;
  position: absolute;
  inset: 0 0 0 50%;
  overflow: hidden;
}

.mockup-right img {
  object-fit: cover;
  object-position: center;
  opacity: .9;
  filter: saturate(160%) hue-rotate(210deg) contrast(110%) brightness(.85);
  width: 100%;
  height: 100%;
}

.mockup-label-right {
  backdrop-filter: blur(8px);
  letter-spacing: .05em;
  color: #d8b4fe;
  white-space: nowrap;
  background: #000000a6;
  border: 1px solid #a855f74d;
  border-radius: 9999px;
  padding: .3rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px #a855f733;
}

.mockup-split-line {
  z-index: 10;
  background: linear-gradient(#0000 0%, #ffffff80 30% 70%, #0000 100%);
  width: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px #ffffff4d;
}

.mockup-play-ring {
  backdrop-filter: blur(12px);
  z-index: 20;
  cursor: pointer;
  background: #0a0a0fd9;
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.landing-mockup:hover .mockup-play-ring {
  border-color: #a855f78c;
  transform: translate(-50%, -50%)scale(1.08);
  box-shadow: 0 0 35px -5px #a855f780;
}

.mockup-play-btn {
  color: #0a0a0f;
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  transition: background .15s;
  display: flex;
}

.mockup-play-btn:hover {
  background: #f0f0f0;
}

.landing-stats {
  border-top: 1px solid #ffffff0f;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
  margin-top: 5rem;
  padding-top: 2rem;
  display: flex;
}

.stat-item {
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  display: flex;
}

.stat-value {
  color: #fff;
  letter-spacing: -.02em;
  font-size: 2rem;
  font-weight: 800;
}

.stat-value.purple {
  background: linear-gradient(135deg, #c084fc, #818cf8);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.stat-label {
  color: #6b7280;
  font-size: .8rem;
  font-weight: 500;
}

.stat-divider {
  background: #ffffff0f;
  width: 1px;
  height: 48px;
}

@media (max-width: 600px) {
  .landing-nav-links, .stat-divider {
    display: none;
  }

  .landing-stats {
    gap: 1.5rem;
  }
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  color: #c4b5fd;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #a855f71a;
  border: 1px solid #a855f733;
  border-radius: 9999px;
  margin-bottom: 1rem;
  padding: .3rem .875rem;
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
}

.section-title {
  letter-spacing: -.025em;
  color: #fff;
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
}

.section-subtitle {
  color: #6b7280;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-features {
  z-index: 10;
  border-top: 1px solid #ffffff0a;
  padding: 7rem 0;
  position: relative;
}

.features-grid {
  grid-template-rows: auto auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  display: grid;
}

.feature-card {
  background: #ffffff08;
  border: 1px solid #ffffff0f;
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color .2s, background .2s, transform .2s;
  position: relative;
}

.feature-card:hover {
  background: #a855f70a;
  border-color: #a855f740;
  transform: translateY(-2px);
}

.feature-card--large {
  background: linear-gradient(135deg, #7c3aed14 0%, #4f46e50d 100%);
  border-color: #7c3aed33;
  grid-column: 1 / 3;
}

.feature-icon {
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: flex;
}

.feature-title {
  color: #fff;
  margin: 0 0 .6rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-desc {
  color: #6b7280;
  margin: 0;
  font-size: .9rem;
  line-height: 1.65;
}

.feature-tag {
  color: #a78bfa;
  background: #7c3aed26;
  border-radius: 9999px;
  margin-top: 1rem;
  padding: .2rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  display: inline-block;
}

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

  .feature-card--large {
    grid-column: 1 / -1;
  }
}

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

  .feature-card--large {
    grid-column: 1;
  }
}

.section-howitworks {
  z-index: 10;
  border-top: 1px solid #ffffff0a;
  padding: 7rem 0;
  position: relative;
}

.steps-grid {
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3rem;
  display: flex;
}

.step-card {
  background: #ffffff05;
  border: 1px solid #ffffff0f;
  border-radius: 14px;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  gap: .75rem;
  padding: 2rem;
  transition: border-color .2s, transform .2s;
  display: flex;
}

.step-card:hover {
  border-color: #a855f733;
  transform: translateY(-2px);
}

.step-arrow {
  color: #374151;
  flex-shrink: 0;
  align-self: center;
  padding: 0 1rem;
  font-size: 1.5rem;
}

.step-number {
  letter-spacing: .1em;
  color: #7c3aed;
  font-family: JetBrains Mono, monospace;
  font-size: .75rem;
  font-weight: 700;
}

.step-icon-wrap {
  color: #a78bfa;
  background: #7c3aed1a;
  border: 1px solid #7c3aed33;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
}

.step-title {
  color: #fff;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.step-desc {
  color: #6b7280;
  margin: 0;
  font-size: .875rem;
  line-height: 1.65;
}

.steps-comparison {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.comparison-item {
  background: #ffffff05;
  border: 1px solid #ffffff0d;
  border-radius: 10px;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
}

.comparison-label {
  white-space: nowrap;
  border-radius: 6px;
  flex-shrink: 0;
  padding: .2rem .6rem;
  font-size: .8rem;
  font-weight: 700;
}

.comparison-label--bad {
  color: #fca5a5;
  background: #ef44441a;
}

.comparison-label--good {
  color: #6ee7b7;
  background: #10b9811a;
}

.comparison-text {
  color: #6b7280;
  font-size: .88rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
  }

  .step-arrow {
    align-self: center;
    padding: .5rem 0;
    transform: rotate(90deg);
  }
}

.section-pricing {
  z-index: 10;
  border-top: 1px solid #ffffff0a;
  padding: 7rem 0;
  position: relative;
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
  display: grid;
}

.pricing-card {
  background: #ffffff08;
  border: 1px solid #ffffff12;
  border-radius: 16px;
  flex-direction: column;
  gap: .5rem;
  padding: 2rem 1.5rem;
  display: flex;
  position: relative;
}

.pricing-card--popular {
  background: linear-gradient(160deg, #7c3aed1f 0%, #4f46e50f 100%);
  border-color: #7c3aed59;
  box-shadow: 0 0 50px -15px #7c3aed4d;
}

.pricing-popular-badge {
  color: #fff;
  letter-spacing: .05em;
  white-space: nowrap;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  border-radius: 9999px;
  padding: .2rem .875rem;
  font-size: .7rem;
  font-weight: 700;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-plan-name {
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #9ca3af;
  font-size: .85rem;
  font-weight: 700;
}

.pricing-price {
  color: #fff;
  letter-spacing: -.02em;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
}

.pricing-period {
  color: #6b7280;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 400;
}

.pricing-credits {
  color: #a78bfa;
  background: #a78bfa14;
  border-radius: 6px;
  width: fit-content;
  padding: .35rem .75rem;
  font-size: .8rem;
  font-weight: 600;
}

.pricing-features {
  flex-direction: column;
  flex: 1;
  gap: .55rem;
  margin: .75rem 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.pricing-features li {
  color: #9ca3af;
  font-size: .85rem;
}

.pricing-feature--muted {
  color: #374151 !important;
}

.pricing-cta {
  text-align: center;
  border-radius: 10px;
  margin-top: auto;
  padding: .75rem 1rem;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.pricing-cta--primary {
  color: #fff;
  background: #7c3aed;
  border: 1px solid #0000;
  box-shadow: 0 0 30px -8px #7c3aed99;
}

.pricing-cta--primary:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}

.pricing-cta--outline {
  color: #d1d5db;
  background: none;
  border: 1px solid #ffffff1a;
}

.pricing-cta--outline:hover {
  background: #ffffff0a;
  border-color: #ffffff40;
}

.credit-packs {
  background: #ffffff05;
  border: 1px solid #ffffff0f;
  border-radius: 16px;
  padding: 2.5rem;
}

.credit-packs-title {
  color: #9ca3af;
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.credit-packs-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  display: grid;
}

.credit-pack {
  text-align: center;
  background: #ffffff05;
  border: 1px solid #ffffff0d;
  border-radius: 12px;
  flex-direction: column;
  gap: .25rem;
  padding: 1.25rem;
  display: flex;
}

.credit-pack--featured {
  background: #7c3aed14;
  border-color: #7c3aed33;
}

.credit-pack-name {
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .8rem;
  font-weight: 600;
}

.credit-pack-credits {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.credit-pack-price {
  color: #a78bfa;
  letter-spacing: -.02em;
  font-size: 1.5rem;
  font-weight: 900;
}

.credit-pack-rate {
  color: #6b7280;
  font-size: .75rem;
}

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

  .credit-packs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.section-testimonials {
  z-index: 10;
  border-top: 1px solid #ffffff0a;
  padding: 7rem 0;
  position: relative;
}

.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  display: grid;
}

.testimonial-card {
  background: #ffffff05;
  border: 1px solid #ffffff0f;
  border-radius: 16px;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  transition: border-color .2s, transform .2s;
  display: flex;
}

.testimonial-card:hover {
  border-color: #a855f733;
  transform: translateY(-2px);
}

.testimonial-card--featured {
  background: linear-gradient(135deg, #7c3aed14 0%, #4f46e50a 100%);
  border-color: #7c3aed33;
}

.testimonial-stars {
  color: #f59e0b;
  letter-spacing: .1em;
  font-size: .9rem;
}

.testimonial-text {
  color: #d1d5db;
  flex: 1;
  margin: 0;
  font-size: .925rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.testimonial-avatar {
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
}

.testimonial-name {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}

.testimonial-role {
  color: #6b7280;
  font-size: .78rem;
}

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

.section-faq {
  z-index: 10;
  border-top: 1px solid #ffffff0a;
  padding: 7rem 0;
  position: relative;
}

.faq-list {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.faq-item {
  background: #ffffff05;
  border: 1px solid #ffffff0f;
  border-radius: 12px;
  transition: border-color .2s;
  overflow: hidden;
}

.faq-item[open], .faq-item:hover {
  border-color: #a855f733;
}

.faq-question {
  color: #e5e7eb;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  list-style: none;
  display: flex;
}

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

.faq-question:after {
  content: "+";
  color: #6b7280;
  flex-shrink: 0;
  margin-left: 1rem;
  font-size: 1.25rem;
  transition: transform .2s;
}

.faq-item[open] .faq-question:after {
  content: "−";
  color: #a78bfa;
}

.faq-answer {
  color: #6b7280;
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  font-size: .875rem;
  line-height: 1.7;
}

.section-finalcta {
  z-index: 10;
  border-top: 1px solid #ffffff0a;
  padding: 7rem 0;
  position: relative;
}

.finalcta-box {
  text-align: center;
  background: #ffffff05;
  border: 1px solid #7c3aed33;
  border-radius: 24px;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.finalcta-glow {
  pointer-events: none;
  background: radial-gradient(#7c3aed26 0%, #0000 70%);
  width: 700px;
  height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.finalcta-title {
  color: #fff;
  letter-spacing: -.025em;
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
}

.finalcta-subtitle {
  color: #6b7280;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.finalcta-note {
  color: #4b5563;
  margin-top: 1.25rem;
  font-size: .85rem;
}

.landing-footer {
  z-index: 10;
  border-top: 1px solid #ffffff0a;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-top {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  display: flex;
}

.footer-brand {
  max-width: 260px;
}

.footer-desc {
  color: #4b5563;
  margin: .75rem 0 0;
  font-size: .875rem;
  line-height: 1.7;
}

.footer-links-group {
  flex-wrap: wrap;
  gap: 3rem;
  display: flex;
}

.footer-col {
  flex-direction: column;
  gap: .6rem;
  display: flex;
}

.footer-col-title {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: .25rem;
  font-size: .8rem;
  font-weight: 700;
}

.footer-col a {
  color: #4b5563;
  font-size: .875rem;
  text-decoration: none;
  transition: color .15s;
}

.footer-col a:hover {
  color: #9ca3af;
}

.footer-bottom {
  color: #374151;
  border-top: 1px solid #ffffff0a;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  padding-top: 2rem;
  font-size: .8rem;
  display: flex;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-brand {
    max-width: 100%;
  }
}

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