body {
  font-family: 'Inter', sans-serif;
}

.focus-ring:focus-visible {
  outline: 3px solid rgba(99, 102, 241, .35);
  outline-offset: 3px;
}

.soft-grid {
  background-image:
    linear-gradient(to right, rgba(99, 102, 241, .10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99, 102, 241, .10) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 0%, #000 44%, transparent 78%);
}

.serpvision-initials-avatar {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  width: var(--avatar-size, 48px);
  height: var(--avatar-size, 48px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #6366f1;
  color: #fff;
  font-size: var(--avatar-font-size, 1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(15, 23, 42, .28);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000),
    inset 0 1px 0 rgba(255, 255, 255, .36);
}

.serpvision-initials-avatar-guest {
  background: #e2e8f0;
  color: #334155;
  text-shadow: none;
}

.serpvision-initials-avatar-team {
  color: #fff;
}

.orb {
  filter: blur(64px);
}

.gradient-border {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(99, 102, 241, .45), rgba(14, 165, 233, .22), rgba(16, 185, 129, .16), rgba(255, 255, 255, .14)) border-box;
}

.gradient-border:before {
  display: none;
}

.gradient-border-red {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, rgba(239,68,68,.58), rgba(254,226,226,.5), rgba(255,255,255,.14)) border-box;
}

.gradient-border-amber {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, rgba(245,158,11,.62), rgba(254,243,199,.55), rgba(255,255,255,.14)) border-box;
}

.gradient-border-emerald {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, rgba(16,185,129,.6), rgba(209,250,229,.55), rgba(255,255,255,.14)) border-box;
}

.gradient-border-indigo {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, rgba(79,70,229,.6), rgba(224,231,255,.55), rgba(255,255,255,.14)) border-box;
}

.gradient-border-purple {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, rgba(147,51,234,.6), rgba(243,232,255,.55), rgba(255,255,255,.14)) border-box;
}

.brand-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brand-marquee:before,
.brand-marquee:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 4rem;
  pointer-events: none;
}

.brand-marquee:before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, rgba(248, 250, 252, 0));
}

.brand-marquee:after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, rgba(248, 250, 252, 0));
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brand-marquee 34s linear infinite;
}

.brand-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 3rem;
  padding-right: 3rem;
}

.brand-marquee-group span {
  color: #cbd5e1;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {

  .brand-marquee-track,
  .hero-animate,
  .hero-animate-2,
  .hero-animate-3,
  .hero-animate-4,
  .hero-animate-5 {
    animation: none;
  }
}

.site-header {
  padding-top: .75rem;
  transition: padding .26s ease;
}

.site-header,
.site-header * {
  box-sizing: border-box;
}

.site-nav {
  width: min(calc(100vw - 2rem), 80rem);
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    background-color .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    backdrop-filter .28s ease;
}

.site-header.is-scrolled {
  padding-top: .75rem;
}

.site-header.is-scrolled .site-nav {
  background: rgba(255, 255, 255, .75);
  border-color: rgba(226, 232, 240, .75);
  box-shadow: 0 18px 60px -34px rgba(15, 23, 42, .7);
  backdrop-filter: blur(18px);
}

.site-nav-links,
.site-nav-actions {
  display: none;
}

.site-nav-toggle {
  display: inline-flex;
}

.site-mobile-drawer {
  display: block;
  position: fixed;
  top: 5.25rem;
  right: .75rem;
  z-index: 60;
  width: min(20rem, calc(100vw - 1.5rem));
  max-width: none;
  max-height: calc(100vh - 6rem);
  margin: 0;
  overflow-y: auto;
}

.nav-drawer {
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 1rem));
  transition:
    opacity .24s ease,
    transform .32s cubic-bezier(.22, 1, .36, 1);
}

.nav-drawer.open,
.nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

@media (min-width: 1024px) {

  .site-nav-links,
  .site-nav-actions {
    display: flex;
  }

  .site-nav-toggle,
  .site-mobile-drawer {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-left: .75rem;
    padding-right: .75rem;
    padding-top: .75rem;
  }

  .site-nav {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .site-mobile-drawer {
    right: 1rem;
    width: calc(100vw - 2rem);
  }
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .25s ease;
}

.faq-body.is-open {
  max-height: 300px;
  opacity: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  transition: transform .22s ease;
}

[data-role="pricing-calculator"] input[type="range"] {
  width: 100%;
  height: 2.75rem;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}

[data-role="pricing-calculator"] input[type="range"]::-webkit-slider-runnable-track {
  height: .5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, .08);
}

[data-role="pricing-calculator"] input[type="range"]::-moz-range-track {
  height: .5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, .08);
}

[data-role="pricing-calculator"] input[type="range"]::-webkit-slider-thumb {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: -.425rem;
  appearance: none;
  -webkit-appearance: none;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #4f46e5;
  box-shadow: 0 8px 18px rgba(79, 70, 229, .28), 0 0 0 1px rgba(79, 70, 229, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}

[data-role="pricing-calculator"] input[type="range"]::-moz-range-thumb {
  width: .85rem;
  height: .85rem;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #4f46e5;
  box-shadow: 0 8px 18px rgba(79, 70, 229, .28), 0 0 0 1px rgba(79, 70, 229, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}

[data-role="pricing-calculator"] input[type="range"]:hover::-webkit-slider-thumb,
[data-role="pricing-calculator"] input[type="range"]:focus-visible::-webkit-slider-thumb {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(79, 70, 229, .35), 0 0 0 5px rgba(79, 70, 229, .12);
}

[data-role="pricing-calculator"] input[type="range"]:hover::-moz-range-thumb,
[data-role="pricing-calculator"] input[type="range"]:focus-visible::-moz-range-thumb {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(79, 70, 229, .35), 0 0 0 5px rgba(79, 70, 229, .12);
}

[data-role="pricing-calculator"] input[type="checkbox"] {
  position: relative;
  width: 2.45rem;
  height: 1.4rem;
  flex: 0 0 auto;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #e2e8f0;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

[data-role="pricing-calculator"] input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: .175rem;
  left: .175rem;
  width: .95rem;
  height: .95rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .18);
  transition: transform .2s ease;
}

[data-role="pricing-calculator"] input[type="checkbox"]:checked {
  border-color: #4f46e5;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  box-shadow: 0 8px 18px rgba(79, 70, 229, .16);
}

[data-role="pricing-calculator"] input[type="checkbox"]:checked::before {
  transform: translateX(1.05rem);
}

[data-role="pricing-calculator"] input[type="checkbox"]:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .16);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-panel.is-open {
  max-height: 520px;
}

.faq-button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(79, 70, 229, .28);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dashboard-grid-bg {
  background-image: radial-gradient(circle at 1px 1px, rgba(99, 102, 241, 0.12) 1px, transparent 0);
  background-size: 20px 20px;
}

/* FAQ accordion */
.faq-panel {
  height: 0;
  max-height: none;
  opacity: 0;
  overflow: hidden;
  transition:
    height 0.4s ease,
    opacity 0.4s ease;
}

.faq-panel.is-open {
  opacity: 1;
}

[data-role="faq-icon"] {
  transition: transform 0.4s ease;
}

[data-action="toggle-faq"][aria-expanded="true"] [data-role="faq-icon"] {
  transform: rotate(180deg);
}

/* Tab Panel */
.tab-panel.is-active {
  display: block;
}

.tab-panel {
  display: none;
}

/* Subtle entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  animation: fadeUp 0.55s ease both;
}

.hero-animate-2 {
  animation: fadeUp 0.55s 0.1s ease both;
}

.hero-animate-3 {
  animation: fadeUp 0.55s 0.2s ease both;
}

.hero-animate-4 {
  animation: fadeUp 0.55s 0.32s ease both;
}

.hero-animate-5 {
  animation: fadeUp 0.55s 0.4s ease both;
}

.legal-content h2 {
  font-size: 1.25rem;
  line-height: 1.85rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2.25rem;
  margin-bottom: .85rem;
  letter-spacing: 0;
}

.legal-content h3 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}

.legal-content p {
  color: #475569;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.35rem;
  color: #475569;
  line-height: 1.8;
  margin: .75rem 0 1rem;
}

.legal-content li {
  margin-bottom: .5rem;
}

.legal-content a {
  color: #4f46e5;
  transition: 0.4s;
}
.legal-content a:hover {
  color: #4338ca;
}

.legal-content > :first-child {
  margin-top: 0;
}

.legal-content > :last-child {
  margin-bottom: 0;
}

.serpvision-comment-list,
.serpvision-comment-list .children {
  list-style: none;
  margin: 0;
  padding: 0;
}

.serpvision-comment-list .children {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  margin-left: 1.25rem;
  padding-left: 1rem;
}

.serpvision-comment-content > * + * {
  margin-top: .75rem;
}

.serpvision-comment-content a {
  color: #4f46e5;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.serpvision-comment-content a:hover {
  color: #4338ca;
}

.serpvision-comment.bypostauthor > article {
  border-color: rgba(129, 140, 248, .45);
  box-shadow: 0 18px 50px -30px rgba(79, 70, 229, .4);
}

.serpvision-comment-form {
  display: grid;
  gap: 1rem;
}

.serpvision-respond-card {
  position: relative;
  border: 1px solid rgba(226, 232, 240, .8);
  border-radius: 2rem;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 25px 50px -24px rgba(49, 46, 129, .28);
}

.serpvision-respond-shell > .serpvision-respond-card {
  box-shadow: 0 25px 55px -26px rgba(49, 46, 129, .38);
}

.serpvision-comment-form .comment-notes,
.serpvision-comment-form .logged-in-as,
.serpvision-comment-form .comment-form-comment,
.serpvision-comment-form .comment-form-url,
.serpvision-comment-form .comment-form-captcha,
.serpvision-comment-form .comment-form-cookies-consent,
.serpvision-comment-form .form-submit {
  grid-column: 1 / -1;
}

.serpvision-comment-form p {
  margin: 0;
}

.serpvision-comment-form .serpvision-field > label {
  display: block;
  margin-bottom: .25rem;
  color: #1e293b;
  font-size: .875rem;
  font-weight: 800;
}

.serpvision-comment-form input[type="text"],
.serpvision-comment-form input[type="email"],
.serpvision-comment-form input[type="url"],
.serpvision-comment-form textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #f8fafc;
  padding: .875rem 1rem;
  color: #0f172a;
  font-size: .875rem;
  outline: 0;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.serpvision-comment-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.serpvision-comment-form input[type="text"]::placeholder,
.serpvision-comment-form input[type="email"]::placeholder,
.serpvision-comment-form input[type="url"]::placeholder,
.serpvision-comment-form textarea::placeholder {
  color: #94a3b8;
}

.serpvision-comment-form input[type="text"]:focus,
.serpvision-comment-form input[type="email"]:focus,
.serpvision-comment-form input[type="url"]:focus,
.serpvision-comment-form textarea:focus {
  border-color: #818cf8;
  background: #fff;
  box-shadow: 0 0 0 4px #e0e7ff;
}

.serpvision-comment-form .is-invalid {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
  box-shadow: none !important;
}

.serpvision-comment-form .is-invalid::placeholder {
  color: #ef4444 !important;
  opacity: .72;
}

.serpvision-comment-form [data-role="error-text"] {
  display: block !important;
  min-height: 1rem;
  visibility: hidden;
}

.serpvision-comment-form [data-role="error-text"].hidden {
  display: block !important;
  visibility: hidden;
}

.serpvision-comment-form [data-role="error-text"]:not(.hidden) {
  visibility: visible;
}

.serpvision-comment-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.serpvision-comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  border-radius: 1rem;
  background: #f8fafc;
  padding: .9rem 1rem;
}

.serpvision-comment-form .comment-form-cookies-consent input {
  position: relative;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .2rem;
  flex: 0 0 auto;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #cbd5e1;
  border-radius: .4rem;
  background: #fff;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.serpvision-comment-form .comment-form-cookies-consent input:checked {
  border-color: #4f46e5;
  background: #4f46e5;
  box-shadow: inset 0 0 0 3px #fff;
}

.serpvision-comment-form .comment-form-cookies-consent input:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .14);
}

.serpvision-comment-form .comment-form-cookies-consent label {
  margin: 0;
  color: #64748b;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.6;
}

.serpvision-comment-form .serpvision-comment-captcha-image {
  width: 154px;
}

.serpvision-comment-form .logged-in-as a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
}

#respond {
  scroll-margin-top: 7rem;
}

.serpvision-comment #respond {
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .serpvision-comment-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .serpvision-respond-card {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .serpvision-comment-form .serpvision-comment-captcha-image {
    width: 132px;
  }
}

@media (max-width: 640px) {
  .serpvision-comment-list .children {
    margin-left: .35rem;
    padding-left: .75rem;
  }
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
