:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #0f172a;
  --accent: #D97706;
  --border-inactive: rgba(0, 0, 0, 0.05);
  --logo-main: #1f2937; /* Ciemny szary/antracyt */
  --logo-ai: #D97706; /* Amber brand */
}

[data-theme=dark] {
  --bg: #020617;
  --card: #1e293b;
  --text: #f8fafc;
  --accent: #FBBF24;
  --border-inactive: rgba(255, 255, 255, 0.1);
  --logo-main: #f8fafc;
  --logo-ai: #FBBF24;
}

.lp-enter {
  opacity: 0;
  transform: translateY(18px);
  animation: lpEnter 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes lpEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lp-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.lp-section-tag {
  display: inline-block;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8850A;
  margin-bottom: 14px;
}
.lp-section-tag--light {
  color: rgba(255, 255, 255, 0.7);
}

.lp-section-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #151210;
  line-height: 1.2;
  margin: 0;
}

.lp-section-sub {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  color: #6B6560;
  margin-top: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.lp-btn--primary {
  background: #E8850A;
  color: #fff;
}
.lp-btn--primary:hover {
  background: #B45309;
  color: #fff;
}
.lp-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.lp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.lp-btn--outline {
  background: transparent;
  color: #151210;
  border: 1.5px solid #E5E2DD;
}
.lp-btn--outline:hover {
  border-color: #E8850A;
  color: #E8850A;
}
.lp-btn--full {
  width: 100%;
  justify-content: center;
}
.lp-btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.lp-hero {
  position: relative;
  padding: 160px 0 100px;
  background: #FAFAF8;
}
@media (max-width: 768px) {
  .lp-hero {
    padding: 120px 0 72px;
  }
}

.lp-hero__eyebrow {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8850A;
  margin-bottom: 24px;
}

.lp-hero__title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  color: #151210;
  line-height: 1.12;
  margin: 0 0 24px;
}

.lp-hero__accent {
  position: relative;
  color: #E8850A;
}
.lp-hero__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: #E8850A;
  opacity: 0.3;
  border-radius: 2px;
}

.lp-hero__sub {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  color: #6B6560;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 40px;
}

.lp-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.lp-hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: #9A9490;
}

.lp-hero__proof-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9A9490;
}
@media (max-width: 576px) {
  .lp-hero__proof-dot {
    display: none;
  }
}

.lp-types {
  background: #fff;
  border-top: 1px solid #F0EDEA;
  border-bottom: 1px solid #F0EDEA;
  padding: 18px 0;
  overflow: hidden;
}

.lp-types__marquee {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.lp-types__marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  to {
    transform: translateX(-50%);
  }
}
.lp-types__track {
  display: flex;
  gap: 36px;
  padding-right: 36px;
  flex-shrink: 0;
}

.lp-types__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6B6560;
  white-space: nowrap;
}
.lp-types__item i {
  color: #E8850A;
  font-size: 13px;
  opacity: 0.6;
}

.lp-numbers {
  padding: 72px 0;
  background: #FAFAF8;
}
@media (max-width: 768px) {
  .lp-numbers {
    padding: 52px 0;
  }
}

.lp-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #E5E2DD;
  border: 1px solid #E5E2DD;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .lp-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lp-numbers__item {
  text-align: center;
  padding: 36px 20px;
  background: #fff;
}
@media (max-width: 576px) {
  .lp-numbers__item {
    padding: 28px 16px;
  }
}

.lp-numbers__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232, 133, 10, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.lp-numbers__icon i {
  font-size: 16px;
  color: #E8850A;
}

.lp-numbers__value {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  color: #151210;
  line-height: 1.1;
  margin-bottom: 4px;
}

.lp-numbers__label {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: #9A9490;
  line-height: 1.4;
}

.lp-benefits {
  padding: 96px 0;
  background: #fff;
}
@media (max-width: 768px) {
  .lp-benefits {
    padding: 64px 0;
  }
}

.lp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid #E5E2DD;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .lp-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .lp-benefits__grid {
    grid-template-columns: 1fr;
  }
}

.lp-benefit {
  background: #fff;
  padding: 36px 32px;
  border-right: 1px solid #E5E2DD;
  border-bottom: 1px solid #E5E2DD;
}
@media (min-width: 993px) {
  .lp-benefit:nth-child(3n) {
    border-right: 0;
  }
}
@media (max-width: 992px) and (min-width: 577px) {
  .lp-benefit:nth-child(2n) {
    border-right: 0;
  }
}
@media (max-width: 576px) {
  .lp-benefit {
    border-right: 0;
  }
}
.lp-benefit h3 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #151210;
  margin: 14px 0 8px;
}
.lp-benefit p {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: #6B6560;
  line-height: 1.65;
  margin: 0;
}

.lp-benefit__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.lp-benefit__icon--amber {
  background: rgba(232, 133, 10, 0.08);
  color: #E8850A;
}
.lp-benefit__icon--blue {
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
}
.lp-benefit__icon--green {
  background: rgba(92, 122, 94, 0.08);
  color: #5C7A5E;
}
.lp-benefit__icon--rose {
  background: rgba(164, 85, 58, 0.07);
  color: #a4553a;
}
.lp-benefit__icon--violet {
  background: rgba(139, 92, 246, 0.06);
  color: #8b5cf6;
}
.lp-benefit__icon--teal {
  background: rgba(61, 122, 106, 0.07);
  color: #3d7a6a;
}

.lp-how {
  padding: 96px 0;
  background: #FAFAF8;
}
@media (max-width: 768px) {
  .lp-how {
    padding: 64px 0;
  }
}

.lp-how__steps,
.lp-how__timeline {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.lp-how__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.lp-how__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #151210;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-how__content {
  padding-top: 4px;
}
.lp-how__content h3 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #151210;
  margin: 0 0 6px;
}
.lp-how__content p {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: #6B6560;
  line-height: 1.6;
  margin: 0;
}

.lp-how__connector {
  width: 1px;
  height: 28px;
  background: #E5E2DD;
  margin-left: 23px;
}

.lp-demo {
  padding: 96px 0;
  background: #fff;
}
@media (max-width: 768px) {
  .lp-demo {
    padding: 64px 0;
  }
}

.lp-demo__card {
  background: #151210;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
  .lp-demo__card {
    grid-template-columns: 1fr;
  }
}

.lp-demo__left {
  padding: 48px 44px;
}
@media (max-width: 768px) {
  .lp-demo__left {
    padding: 36px 28px 28px;
  }
}

.lp-demo__label {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.lp-demo__title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 26px;
  color: #fff;
  margin: 12px 0 20px;
}

.lp-demo__query {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.lp-demo__query i {
  color: #F5A623;
  margin-top: 3px;
  flex-shrink: 0;
}
.lp-demo__query span {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  font-style: italic;
}

.lp-demo__explain {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin: 0;
}

.lp-demo__right {
  background: rgba(255, 255, 255, 0.03);
  padding: 48px 44px;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 992px) {
  .lp-demo__right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}
@media (max-width: 768px) {
  .lp-demo__right {
    padding: 28px;
  }
}

.lp-demo__result {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  width: 100%;
}

.lp-demo__result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.lp-demo__result-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.lp-demo__result-pct {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #F5A623;
}

.lp-demo__result-match {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp-demo__result-badge {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #E8850A;
  background: rgba(232, 133, 10, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}
.lp-demo__result-badge i {
  margin-right: 3px;
}

.lp-demo__result-name {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.lp-demo__result-summary {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 16px;
}

.lp-demo__result-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lp-demo__result-tags span {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 10px;
  border-radius: 6px;
}
.lp-demo__result-tags span i {
  margin-right: 4px;
  opacity: 0.6;
}

.lp-quote {
  padding: 80px 0;
  background: #FAFAF8;
}
@media (max-width: 768px) {
  .lp-quote {
    padding: 56px 0;
  }
}

.lp-quote__card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.lp-quote__icon {
  margin-bottom: 24px;
}
.lp-quote__icon i {
  font-size: 28px;
  color: #E5E2DD;
}

.lp-quote__text {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(18px, 2.5vw, 23px);
  font-weight: 400;
  color: #151210;
  line-height: 1.55;
  margin: 0 0 28px;
  font-style: normal;
}

.lp-quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.lp-quote__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5F2ED;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-quote__avatar i {
  font-size: 16px;
  color: #9A9490;
}

.lp-quote__name {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #151210;
  text-align: left;
}

.lp-quote__role {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: #9A9490;
  text-align: left;
}

.lp-why {
  padding: 96px 0;
  background: #fff;
}
@media (max-width: 768px) {
  .lp-why {
    padding: 64px 0;
  }
}

.lp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #E5E2DD;
  border: 1px solid #E5E2DD;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .lp-why__grid {
    grid-template-columns: 1fr;
  }
}

.lp-why__item {
  background: #fff;
  padding: 40px 32px;
  text-align: center;
}
.lp-why__item h3 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #151210;
  margin: 16px 0 8px;
}
.lp-why__item p {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: #6B6560;
  line-height: 1.65;
  margin: 0;
}

.lp-why__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #151210;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.lp-why__item-icon i {
  font-size: 18px;
  color: #fff;
}

.lp-faq {
  padding: 96px 0;
  background: #FAFAF8;
}
@media (max-width: 768px) {
  .lp-faq {
    padding: 64px 0;
  }
}

.lp-faq__list {
  max-width: 640px;
  margin: 0 auto;
}

.lp-faq__item {
  border-bottom: 1px solid #E5E2DD;
}
.lp-faq__item[open] .lp-faq__question i {
  transform: rotate(45deg);
}
.lp-faq__item[open] .lp-faq__answer {
  animation: faqOpen 0.3s ease forwards;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lp-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}
.lp-faq__question::-webkit-details-marker {
  display: none;
}
.lp-faq__question span {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #151210;
}
.lp-faq__question i {
  flex-shrink: 0;
  font-size: 14px;
  color: #9A9490;
  transition: transform 0.25s ease;
}

.lp-faq__answer {
  padding: 0 0 20px;
}
.lp-faq__answer p {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: #6B6560;
  line-height: 1.65;
  margin: 0;
}

.lp-cta {
  padding: 40px 0 96px;
  background: #FAFAF8;
}
@media (max-width: 768px) {
  .lp-cta {
    padding: 20px 0 64px;
  }
}

.lp-cta__card {
  position: relative;
  overflow: hidden;
  background: #151210;
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .lp-cta__card {
    padding: 56px 24px;
  }
}

.lp-cta__orb {
  display: none;
}

.lp-cta__title {
  position: relative;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px;
}

.lp-cta__sub {
  position: relative;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 32px;
}

.lp-cta__note {
  position: relative;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 16px 0 0;
}

.lp-pricing {
  padding: 96px 0;
  background: #FAFAF8;
}
@media (max-width: 768px) {
  .lp-pricing {
    padding: 64px 0;
  }
}

.lp-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.lp-plan {
  background: #fff;
  border: 1.5px solid #E5E2DD;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
}
.lp-plan--featured {
  border-color: #E8850A;
}

.lp-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E8850A;
  color: #fff;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.lp-plan__badge--promo {
  background: #c24040;
}

.lp-plan__name {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #6B6560;
  margin-bottom: 16px;
  margin-top: 4px;
}

.lp-plan__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 2px;
}

.lp-plan__old {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: #9A9490;
  text-decoration: line-through;
  margin-right: 4px;
}

.lp-plan__amount {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #151210;
  line-height: 1;
}

.lp-plan__currency {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #6B6560;
}

.lp-plan__interval {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: #9A9490;
  margin-bottom: 20px;
}

.lp-plan__desc {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: #6B6560;
  line-height: 1.5;
  margin-bottom: 24px;
  padding: 0 4px;
}

.lp-pricing__note {
  text-align: center;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: #9A9490;
  margin-top: 32px;
}
.lp-pricing__note i {
  margin-right: 4px;
}

.page-stats {
  --nav-bg: rgba(12, 10, 9, .85);
  --nav-border: rgba(255, 255, 255, 0.06);
  --nav-text: #FAFAF9;
  --brand-name-color: #FAFAF9;
  --nav-item-color: #A8A29E;
  --biz-trigger-color: #A8A29E;
  --biz-trigger-hover: #FAFAF9;
  --nav-accent: #F5A623;
  --dropdown-bg: #1C1917;
  --dropdown-item-hover: #292524;
}
.page-stats .main-navbar {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.page-stats .nav-link-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.page-stats .nav-link-item.active {
  color: #F5A623;
  background: rgba(245, 166, 35, 0.08);
}
.page-stats .lp-hero {
  background: #0C0A09;
  padding: 140px 0 80px;
}
@media (max-width: 768px) {
  .page-stats .lp-hero {
    padding: 110px 0 60px;
  }
}
.page-stats .lp-hero__bg {
  position: absolute;
  inset: 0;
  background: #0C0A09;
  z-index: 0;
}
.page-stats .lp-hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.04'/%3E%3C/svg%3E");
  background-size: 128px;
  opacity: 0.5;
  pointer-events: none;
}
.page-stats .lp-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.page-stats .lp-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 133, 10, 0.18), transparent 70%);
  top: -120px;
  right: -100px;
}
.page-stats .lp-hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1), transparent 70%);
  bottom: -80px;
  left: -60px;
}
.page-stats .lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.page-stats .lp-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}
.page-stats .lp-hero__title {
  color: #fff;
}
.page-stats .lp-hero__accent {
  background: linear-gradient(135deg, #E8850A, #FBC34D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.page-stats .lp-hero__accent::after {
  display: none;
}
.page-stats .lp-hero__sub {
  color: #A8A29E;
}
.page-stats .lp-section-tag {
  color: #E8850A;
  background: rgba(232, 133, 10, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
}
.page-stats .lp-section-title {
  color: #111827;
}

.ps-hero {
  padding-bottom: 24px;
}

.ps-kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}
@media (max-width: 992px) {
  .ps-kpi {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .ps-kpi {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.ps-kpi__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}
@media (max-width: 576px) {
  .ps-kpi__card {
    padding: 18px 14px;
  }
}

.ps-kpi__value {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.ps-kpi__change {
  font-size: 13px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.ps-kpi__change--up {
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
}
.ps-kpi__change--down {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
}

.ps-kpi__label {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: #A8A29E;
  margin-top: 6px;
}

.ps-section {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  background: #fff;
}
.ps-section--alt {
  background: #FAFAF8;
}
@media (max-width: 768px) {
  .ps-section {
    padding: 48px 0;
  }
}

.ps-chart {
  max-width: 900px;
  margin: 0 auto;
}

.ps-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 200px;
  padding-bottom: 28px;
  position: relative;
}
@media (max-width: 768px) {
  .ps-chart__bars {
    height: 160px;
    gap: 2px;
  }
}

.ps-chart__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  position: relative;
}

.ps-chart__bar {
  width: 100%;
  max-width: 24px;
  background: #E8850A;
  border-radius: 3px 3px 0 0;
  transition: opacity 0.2s ease;
  position: relative;
  cursor: default;
  opacity: 0.65;
}
.ps-chart__bar:hover {
  opacity: 1;
}
.ps-chart__bar:hover .ps-chart__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}
.ps-chart__bar--today {
  opacity: 1;
}
@media (max-width: 768px) {
  .ps-chart__bar {
    max-width: 16px;
  }
}

.ps-chart__tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: #151210;
  color: #fff;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.2s ease;
  pointer-events: none;
  margin-bottom: 4px;
}

.ps-chart__label {
  position: absolute;
  bottom: -24px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  color: #9A9490;
  white-space: nowrap;
}

.ps-card {
  background: #fff;
  border: 1px solid #E5E2DD;
  border-radius: 16px;
  overflow: hidden;
}

.ps-card__header {
  padding: 24px 28px 0;
}
@media (max-width: 576px) {
  .ps-card__header {
    padding: 20px 20px 0;
  }
}

.ps-card__title {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #151210;
  margin: 0 0 4px;
}
.ps-card__title i {
  color: #E8850A;
  margin-right: 6px;
}

.ps-card__sub {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: #9A9490;
  margin: 0;
}

.ps-card__body {
  padding: 20px 28px 28px;
}
@media (max-width: 576px) {
  .ps-card__body {
    padding: 16px 20px 20px;
  }
}

.ps-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #F0EDEA;
}
.ps-bar-row:last-child {
  border-bottom: none;
}

.ps-bar-row__info {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .ps-bar-row__info {
    min-width: 100px;
  }
}

.ps-bar-row__rank {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #9A9490;
  min-width: 22px;
}

.ps-bar-row__name {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #151210;
}

.ps-bar-row__meta {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  color: #9A9490;
  display: none;
}
@media (min-width: 768px) {
  .ps-bar-row__meta {
    display: inline;
  }
}

.ps-bar-row__bar-wrap {
  flex: 1;
  height: 6px;
  background: #FAFAF8;
  border-radius: 3px;
  overflow: hidden;
}

.ps-bar-row__bar {
  height: 100%;
  background: #E8850A;
  border-radius: 3px;
  min-width: 4px;
  opacity: 0.7;
}

.ps-bar-row__value {
  text-align: right;
  min-width: 60px;
  flex-shrink: 0;
}
.ps-bar-row__value strong {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #151210;
}
.ps-bar-row__value small {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  color: #9A9490;
  margin-left: 4px;
}

.ps-query-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #F0EDEA;
}
.ps-query-row:last-child {
  border-bottom: none;
}

.ps-query-row__rank {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #9A9490;
  min-width: 22px;
  flex-shrink: 0;
}

.ps-query-row__text {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: #6B6560;
  flex: 1;
  line-height: 1.4;
}

.ps-query-row__count {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #E8850A;
  flex-shrink: 0;
}

.ps-type-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #F0EDEA;
}
.ps-type-row:last-child {
  border-bottom: none;
}

.ps-type-row__label {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: #6B6560;
}

.ps-type-row__count {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #151210;
}

.page-landing {
  --nav-bg: rgba(250, 250, 248, .92);
  --nav-border: #E5E2DD;
  --nav-text: #151210;
  --brand-name-color: #151210;
  --nav-item-color: #6B6560;
  --biz-trigger-color: #6B6560;
  --biz-trigger-hover: #151210;
  --nav-accent: #E8850A;
  --dropdown-bg: #fff;
  --dropdown-item-hover: #FAFAF8;
}
.page-landing .main-navbar {
  box-shadow: 0 1px 0 #F0EDEA;
}
.page-landing .nav-link-item:hover {
  background: rgba(0, 0, 0, 0.04);
}
.page-landing .nav-link-item.active {
  color: #E8850A;
  background: rgba(232, 133, 10, 0.08);
}

/*# sourceMappingURL=landing.output.css.map */
