@charset "UTF-8";
.billing-toggle-wrap {
  text-align: center;
  margin: 6.5% auto 5%;
}
.billing-toggle-wrap .billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.billing-toggle-wrap .pricing-toggle__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: transparent;
  color: #334155;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.billing-toggle-wrap .pricing-toggle__btn:hover {
  color: #0f172a;
}
.billing-toggle-wrap .pricing-toggle__btn.is-active {
  background: var(--sl-blue);
  color: var(--sl-white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
}
.billing-toggle-wrap .pricing-toggle__btn:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 4px;
}
.billing-toggle-wrap .pricing-toggle__save {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.billing-toggle-wrap .pricing-toggle__btn:not(.is-active) .pricing-toggle__save {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}
@media (max-width: 480px) {
  .billing-toggle-wrap .billing-toggle {
    width: 100%;
    display: flex;
  }
  .billing-toggle-wrap .pricing-toggle__btn {
    flex: 1;
    padding-inline: 0.75rem;
  }
  .billing-toggle-wrap .pricing-toggle__save {
    font-size: 0.68rem;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .pricing-grid {
    width: 80%;
    margin: 0 auto;
    gap: 50px;
  }
}

.pc {
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.25s;
  position: relative;
}

.pc.hot {
  background: var(--sl-navy);
  border-color: var(--sl-navy);
  transform: scale(1.025);
}

.pc:not(.hot):hover {
  border-color: var(--sl-blue);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
}

.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sl-blue);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.pc-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.hot .pc-tier {
  color: rgba(255, 255, 255, 0.45);
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.pc-cur {
  font-size: 20px;
  font-weight: 600;
  color: var(--sl-navy);
  margin-top: 6px;
}

.hot .pc-cur {
  color: white;
}

.pc-amt {
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--sl-navy);
  transition: all 0.3s;
}

.hot .pc-amt {
  color: var(--sl-white);
}

.pc-per {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 3px;
}

.hot .pc-per {
  color: rgba(255, 255, 255, 0.4);
}

.pc-annual {
  font-size: 11.5px;
  color: var(--gray-400);
  min-height: 18px;
  margin-bottom: 20px;
}

.hot .pc-annual {
  color: rgba(255, 255, 255, 0.38);
}

.pc-desc {
  font-size: 13.5px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.62;
}
@media screen and (max-width: 768px) {
  .pc-desc {
    font-size: calc(15px + 0.35vw);
  }
}

.hot .pc-desc {
  color: rgba(255, 255, 255, 0.55);
}

.pc-div {
  height: 1px;
  background: var(--gray-200);
  margin-bottom: 22px;
}

.hot .pc-div {
  background: rgba(255, 255, 255, 0.09);
}

.pc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .pc-feats {
    display: block;
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}

.pc-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .pc-feats li {
    font-size: calc(13px + 0.25vw);
  }
}

.hot .pc-feats li {
  color: rgba(255, 255, 255, 0.72);
}

.chk {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sl-blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.chk svg {
  width: 10px;
  height: 10px;
  color: var(--sl-blue);
}

.hot .chk {
  background: rgba(37, 99, 235, 0.28);
}

.hot .chk svg {
  color: #93c5fd;
}

.pc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease);
  border: 1.5px solid var(--sl-blue);
  color: var(--sl-blue);
  background: transparent;
  font-family: inherit;
}

.pc-btn:hover {
  background: var(--sl-blue);
  color: var(--sl-white);
}

.hot .pc-btn {
  background: var(--sl-blue);
  border-color: var(--sl-blue);
  color: white;
}

.hot .pc-btn:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.hot .pc-best-for,
.hot .pc-why {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-footnote {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--gray-400);
}

@media (max-width: 800px) {
  .steps,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .browser-body {
    grid-template-columns: 1fr;
  }
  .b-sidebar {
    display: none;
  }
  .pc.hot {
    transform: none;
  }
  .nav-links {
    display: none;
  }
  .logos-row {
    gap: 28px;
  }
}
.hero {
  padding: 158px 28px 0px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  color: var(--sl-blue);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sl-blue);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.hero h1 {
  font-size: clamp(46px, 7.5vw, 92px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--sl-navy);
  max-width: 840px;
  margin: 0 auto 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--sl-blue);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--gray-600);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--gray-400);
}

.hero-note span {
  margin: 0 7px;
  opacity: 0.4;
}

/* Browser mockup */
.browser {
  margin: 0 auto 0;
  max-width: 880px;
}
@media screen and (max-width: 768px) {
  .browser {
    width: 90%;
    margin: 0 auto;
  }
}
.browser {
  background: var(--sl-navy);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(12, 26, 40, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.browser .browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.browser .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.browser .dot-r {
  background: #ff5f57;
}
.browser .dot-y {
  background: #ffbd2e;
}
.browser .dot-g {
  background: #28c840;
}
.browser .url-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  font-family: monospace;
  margin: 0 8px;
}
.browser .browser-body {
  padding: 28px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  min-height: 300px;
}
.browser .b-sidebar {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.browser .b-nav {
  height: 30px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}
.browser .b-nav.on {
  background: rgba(37, 99, 235, 0.38);
}
.browser .b-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.browser .b-hero-block {
  height: 110px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.28) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
}
.browser .b-hero-block::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 28px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.5);
}
.browser .b-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.browser .b-card {
  height: 58px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.browser .b-line {
  height: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}
.browser .b-line.w80 {
  width: 80%;
}
.browser .b-line.w60 {
  width: 60%;
}
.browser .b-line.w90 {
  width: 90%;
}

#trusted-by-section .logos {
  padding: 44px 28px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
#trusted-by-section .logos .logos-label {
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.165em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 26px;
}
#trusted-by-section .logos .logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
#trusted-by-section .logos .logos-row .logo-item {
  text-align: center;
}
#trusted-by-section .logos .logos-row .logo-item .logo-link {
  color: var(--gray-400);
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--ease);
}
#trusted-by-section .logos .logos-row .logo-item .logo-link:hover {
  color: var(--gray-600);
}
#trusted-by-section .logos .logos-row .logo-item .logo-link img {
  border-radius: 7px;
  max-width: 100%;
  height: auto;
  margin: auto;
  border: solid 1px var(--gray-400);
  transition: border var(--ease) filter var(--ease);
}
#trusted-by-section .logos .logos-row .logo-item .logo-link img:hover {
  filter: saturate(1.75) brightness(1.1);
}
#trusted-by-section .logos .logos-row .logo-item .logo-link .logo-name {
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
#trusted-by-section .logos .logo-co {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  opacity: 0.55;
  transition: opacity var(--ease);
}
#trusted-by-section .logos .logo-co:hover {
  opacity: 0.9;
}

.how {
  background: var(--sl-white);
}

.how-header {
  text-align: center;
  margin-bottom: 68px;
}

.how-header .section-sub {
  max-width: 520px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--gray-200);
  gap: 2px;
  border-radius: 20px;
  overflow: hidden;
}

.step {
  background: white;
  padding: 48px 40px;
  position: relative;
}

.step-num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sl-blue);
  margin-bottom: 20px;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--sl-blue-pale);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--sl-navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.step p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.67;
}

/*  Features  */
.features {
  background: var(--gray-50);
}

.features-header {
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fc {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 18px;
  padding: 36px;
  transition: all 0.25s;
}

.fc:hover {
  border-color: var(--sl-blue);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.09);
  transform: translateY(-2px);
}

.fc-icon {
  width: 46px;
  height: 46px;
  background: var(--sl-blue-pale);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 18px;
}

.fc h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--sl-navy);
  margin-bottom: 9px;
  line-height: 1.3;
}

.fc p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.68;
}

/**
Homepage Slider Cards
**/
.proof-stack-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.proof-stack-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .proof-stack-section {
    padding: 5%;
  }
}
.proof-stack {
  max-width: 920px;
  margin: 0 auto;
}

.proof-stack-cards {
  display: grid;
  gap: 1.25rem;
}

/* Default fallback: no JS = all testimonials show in a clean SEO-friendly stack */
.testi {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 28px;
  background: var(--sl-navy-deep);
  border: 1px solid rgba(20, 20, 40, 0.1);
  box-shadow: 0 24px 70px rgba(20, 20, 40, 0.08);
}
.testi blockquote {
  padding-top: 3.5%;
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: -0.035em;
  color: var(--sl-white);
}
.testi cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.5;
  opacity: 0.82;
  color: var(--sl-white);
}
.testi cite strong {
  opacity: 1;
}

.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--sl-white);
}

.testi-number {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

.testi-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(20, 20, 40, 0.06);
}

.cite-separator {
  margin: 0 0.35rem;
}

/* Enhanced JS version */
/* Enhanced JS version */
.proof-stack[data-enhanced=true] .proof-stack-cards {
  position: relative;
  min-height: 390px;
  display: block;
  perspective: 1200px;
}

.proof-stack[data-enhanced=true] .testi {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(34px, 34px, 0) scale(0.92) rotate(-4deg);
  transform-origin: center center;
  will-change: opacity, transform;
  transition: opacity 620ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 760ms cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(2px);
}

.proof-stack[data-enhanced=true] .testi.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  filter: blur(0);
  z-index: 5;
}

/* Ghost card directly behind active */
.proof-stack[data-enhanced=true] .testi.is-next {
  opacity: 0.32;
  transform: translate3d(28px, 24px, 0) scale(0.955) rotate(4.5deg);
  filter: blur(0.5px);
  z-index: 4;
}

/* Second ghost card */
.proof-stack[data-enhanced=true] .testi.is-after-next {
  opacity: 0.16;
  transform: translate3d(-26px, 48px, 0) scale(0.91) rotate(-5.5deg);
  filter: blur(1px);
  z-index: 3;
}

.proof-stack-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.proof-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 40, 0.14);
  background: #ffffff;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 12px 35px rgba(20, 20, 40, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.proof-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(20, 20, 40, 0.12);
}

.proof-stack-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.proof-dot {
  width: 13px;
  height: 13px;
  border: 0;
  margin: 7px;
  border-radius: 999px;
  background: rgba(20, 20, 40, 0.24);
  cursor: pointer;
  padding: 0;
  transition: width 220ms ease, background 220ms ease;
}

.proof-dot.is-active {
  width: 28px;
  background: rgba(20, 20, 40, 0.82);
}

@media (max-width: 700px) {
  .proof-stack[data-enhanced=true] .proof-stack-cards {
    min-height: 430px;
  }
  .testi blockquote {
    font-size: clamp(1.2rem, 7vw, 1.75rem);
  }
}
/* ── PRICING ─────────────────────────────────── */
.pricing {
  background: white;
}

.pricing-header {
  text-align: center;
  margin-bottom: 0;
}

.pricing-header .section-sub {
  max-width: 480px;
  margin: 0 auto;
}/*# sourceMappingURL=homepage.css.map */