:root {
  --c-bg: #101010;
  --c-bg-2: #161616;
  --c-bg-card: #1a1a1a;
  --c-border: rgba(245,245,240,.07);
  --c-border-md:rgba(245,245,240,.13);
  --c-primary: #6c63ff;
  --c-primary-d:#5a52e0;
  --c-off-white:#F5F5F0;
  --c-muted: #6b6b7a;
  --c-muted-2: #3d3d4a;
  --ff-title: 'Krona One', sans-serif;
  --ff-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --r: .875rem;
  --r-lg: 1.25rem;
  --border-radius: 10px;
}

::selection {
  color: #3d3d4a;
  background: #161616;
}

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

html {
  scroll-behavior: auto;
}

::-webkit-scrollbar {
  display: none;
}

.landing-grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 9997;
  pointer-events: none;
  opacity: .042;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grain .35s steps(1) infinite;
}

@keyframes grain {
  0% {
    transform:translate(0,0)
  }

  10% {
    transform:translate(-1%,-2%)
  }

  20% {
    transform:translate(2%,1%)
  }

  30% {
  transform:translate(-1%,2%)
  }

  40% {
    transform:translate(2%,-1%)
  }

  50% {
    transform:translate(-2%,2%)
  }

  60% {
    transform:translate(1%,-1%)
  }

  70% {
    transform:translate(-2%,1%)
  }

  80% {
  transform:translate(1%,2%)
  }

  90% {
    transform:translate(-1%,-1%)
  }

  100% {
    transform:translate(0,0)
  }
}

.landing-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease .1s, visibility .5s ease .1s;
  animation: loader-auto-dismiss .01s ease 4s forwards;
}

@keyframes loader-auto-dismiss {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.landing-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.landing-loader__logo {
  font-family: var(--ff-title);
  font-size: 2rem;
  color: var(--c-primary);
  letter-spacing: -.02em;
  animation: loader-in 1.4s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes loader-in {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(.97);
  }

  40% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-6px) scale(.98);
  }
}

.landing-page {
  background: var(--c-bg);
  color: var(--c-off-white);
  font-family: var(--ff-body);
  line-height: 1.65;
  overflow-x: clip;
}

.rv,
.rv.in {
  opacity: 1;
  transform: none;
  filter: none;
}

.l-section {
  position: relative;
  z-index: 2;
  padding: 7rem 2.5rem;
  background: var(--c-bg);
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-section > .l-inner {
  width: 100%;
}

.l-section--alt {
  background: var(--c-bg-2);
}

.l-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.l-header {
  margin-bottom: 4rem;
}

.l-eyebrow {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: .875rem;
}

.l-title {
  font-family: var(--ff-title);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--c-off-white);
  margin-bottom: .875rem;
}

.l-subtitle {
  font-size: 1rem;
  color: var(--c-muted);
  max-width: 520px;
  line-height: 1.7;
}

.l-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 0;
}

.l-hero {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 2.5rem 5rem;
  background: var(--c-bg);
  overflow: hidden;
}

.l-hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
}

.l-hero__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 1.75rem;
}

.l-hero__label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
  0%,100% {
    opacity:1
  }

  50% {
    opacity:.2
  }
}

.l-hero h1 {
  font-family: var(--ff-title);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--c-off-white);
  margin-bottom: 1.5rem;
}

.l-hero h1 em {
  font-style: normal;
  color: var(--c-primary);
}

.l-hero__sub {
  font-size: 1.05rem;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.l-hero__ctas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.l-hero__stats {
  margin-top: 2.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: .5rem;
}

.l-hero__stats-bar {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: .75rem 1.25rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border-md);
  border-radius: var(--border-radius);
}

.l-hero__stats-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .15rem;
}

.l-hero__stats-n {
  font-family: var(--ff-title);
  font-size: 1.375rem;
  color: var(--c-primary);
  letter-spacing: -.03em;
  line-height: 1;
}

.l-hero__stats-lbl {
  font-size: .7rem;
  color: var(--c-muted);
  line-height: 1.35;
  max-width: 130px;
}

.l-hero__stats-sep {
  width: 1px;
  height: 2.25rem;
  background: var(--c-border-md);
  flex-shrink: 0;
}

.l-hero__stats-status {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: auto;
}

.l-hero__stats-stxt {
  font-size: .8125rem;
  color: var(--c-muted);
}

.l-hero__stats-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-muted-2);
  flex-shrink: 0;
  transition: background .3s;
}

.l-hero__stats-pulse.is-ok {
  background: #6ee7b7;
  animation: hero-pulse 2.4s ease infinite;
}

.l-hero__stats-pulse.is-warn {
  background: #fbbf24;
  animation: hero-pulse 1.6s ease infinite;
}

.l-hero__stats-pulse.is-err {
  background: #f87171;
}

@keyframes hero-pulse {
  0%,100% {
    box-shadow: 0 0 0 0 rgba(110,231,183,.6);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(110,231,183,0);
  }
}

.l-hero__stats-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
}

.l-hero__stats-chip {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .7rem;
  color: var(--c-muted);
  padding: .25rem .625rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: calc(var(--border-radius) / 2);
}

.l-hero__stats-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.l-hero__stats-chip-dot.ok {
  background: #6ee7b7;
}

.l-hero__stats-chip-dot.warn {
  background: #fbbf24;
}

.l-hero__stats-chip-dot.err {
  background: #f87171;
}

@keyframes card-shimmer {
  0%,100% {
    border-color: rgba(245,245,240,.06);
  }

  50% {
    border-color: rgba(108,99,255,.22);
  }
}

@keyframes wave-bar {
  0%,100% {
    height: 4px;
  }

  50% {
    height: 20px;
  }
}

.l-features__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.image-iphone-macbok {
  width: 400px;
  height: auto;
}

.l-feat {
  padding: 2.25rem 2rem;
  background: var(--c-bg-2);
  transition: background .2s;
}

.l-feat:hover {
  background: var(--c-bg-card);
}

.l-feat__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--c-border-md);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: border-color .2s;
}

.l-feat:hover .l-feat__icon {
  border-color: var(--c-primary);
}

.l-feat__title {
  font-family: var(--ff-title);
  font-size: .875rem;
  letter-spacing: -.01em;
  color: var(--c-off-white);
  margin-bottom: .5rem;
}

.l-feat__text {
  font-size: .875rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.l-screens__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: visible;
  padding: .5rem .25rem 1.5rem;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.l-screens__track::-webkit-scrollbar {
  display: none;
}

.l-screens__track:active {
  cursor: grabbing;
}

.l-screen {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
}

.l-screen__label {
  font-size: .75rem;
  color: var(--c-muted);
  text-align: center;
  margin-top: 1rem;
  font-weight: 500;
}

.l-poss__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.l-poss__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.625rem 1.75rem;
  background: var(--c-bg-2);
  transition: background .2s;
}

.l-poss__item:hover {
  background: var(--c-bg-card);
}

.l-poss__icon {
  flex-shrink: 0;
  margin-top: .1rem;
  display: flex;
}

.l-poss__title {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--c-off-white);
  margin-bottom: .25rem;
}

.l-poss__text {
  font-size: .8375rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.l-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.l-testi {
  padding: 2rem 1.75rem;
  background: var(--c-bg-2);
  display: flex;
  flex-direction: column;
}

.l-testi__quote {
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--c-off-white);
  flex: 1;
  margin-bottom: 1.5rem;
  opacity: .85;
}

.l-testi__quote::before {
  content: '\201C';
  color: var(--c-primary);
  font-size: 1.2em;
}

.l-testi__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.l-testi__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.l-testi__name {
  font-size: .875rem;
  font-weight: 600;
}

.l-testi__role {
  font-size: .75rem;
  color: var(--c-muted);
}

.l-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  align-items: start;
}

.l-plan {
  padding: 2rem 1.5rem;
  background: var(--c-bg-2);
  display: flex;
  flex-direction: column;
  position: relative;
}

.l-plan--featured {
  background: var(--c-bg-card);
  border-left: 1px solid rgba(108,99,255,.35);
  border-right: 1px solid rgba(108,99,255,.35);
}

.l-plan__badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: .5rem;
}

.l-plan__name {
  font-family: var(--ff-title);
  font-size: 1rem;
  letter-spacing: -.01em;
  color: var(--c-off-white);
  margin-bottom: 1.25rem;
}

.l-plan__price {
  font-family: var(--ff-title);
  font-size: 2rem;
  letter-spacing: -.04em;
  color: var(--c-off-white);
  line-height: 1;
}

.l-plan--featured .l-plan__price {
  color: var(--c-primary);
}

.l-plan__period {
  font-size: .8rem;
  color: var(--c-muted);
  margin-top: .25rem;
  margin-bottom: 1.5rem;
}

.l-plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  flex: 1;
  margin-bottom: 1.75rem;
}

.l-plan__features li {
  display: flex;
  gap: .625rem;
  font-size: .8125rem;
  color: var(--c-muted);
  line-height: 1.5;
}

.l-plan__features li::before {
  content: '—';
  color: var(--c-primary);
  flex-shrink: 0;
}

.l-plan__cta {
  display: block;
  text-align: center;
  padding: .65rem 1rem;
  border-radius: var(--border-radius);
  font-size: .8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
  border: 1px solid var(--c-border-md);
  color: var(--c-off-white);
}

.l-plan__cta:hover {
  border-color: rgba(245,245,240,.28);
  background: rgba(245,245,240,.04);
}

.l-plan--featured .l-plan__cta {
  background: var(--c-primary);
  border-color: transparent;
  color: #fff;
}

.l-plan--featured .l-plan__cta:hover {
  background: var(--c-primary-d);
}

.l-pricing__period-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto 2.5rem;
  padding: 4px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius);
  width: fit-content;
}

.l-ptgl {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  border-radius: var(--border-radius);
  font-size: .8125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--c-muted);
  font-family: var(--ff-body);
  transition: background .2s, color .2s;
}

.l-ptgl.is-active {
  background: var(--c-primary);
  color: #fff;
}

.l-ptgl__save {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .05em;
  background: rgba(110,231,183,.15);
  color: #6ee7b7;
  padding: .15rem .4rem;
  border-radius: calc(var(--border-radius) / 2);
}

.l-ptgl.is-active .l-ptgl__save {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.l-plan__yearly-note {
  display: block;
  font-size: .72rem;
  color: #6ee7b7;
  margin-top: .25rem;
}

.l-compare {
  margin-top: 4rem;
}

.l-compare__label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-primary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.l-compare__wrap {
  overflow-x: auto;
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius);
}

.l-compare__table {
  width: 100%; min-width: 520px;
  border-collapse: collapse;
}

.l-compare__table th,
.l-compare__table td {
  padding: .75rem 1.125rem;
  font-size: .8rem;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}

.l-compare__table tr:last-child td {
  border-bottom: none;
}

.l-compare__table thead tr {
  background: var(--c-bg-card);
}

.l-compare__table th {
  font-family: var(--ff-title);
  font-size: .72rem;
  letter-spacing: -.01em;
  color: var(--c-off-white);
  text-align: left;
}

.l-compare__th--featured {
  color: var(--c-primary) !important;
}

.l-compare__table td {
  text-align: left;
  color: var(--c-muted);
}

.l-compare__table th:not(:first-child),
.l-compare__table td:not(:first-child) {
  text-align: center;
}

.l-compare__table td:first-child {
  color: var(--c-off-white);
}

.l-compare__table tbody tr:hover {
  background: rgba(245,245,240,.025);
}

.l-compare__yes {
  color: #6ee7b7 !important;
}

.l-compare__no {
  color: var(--c-muted-2) !important;
}

.l-compare__neutral {
  color: var(--c-muted) !important;
}

.l-newsletter {
  position: relative;
  z-index: 2;
  padding: 7rem 2.5rem;
  text-align: center;
  background: var(--c-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-footer-stage {
  position: relative;
  z-index: 2;
  background: var(--c-bg);
}

.l-footer-pinned {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--c-bg);
}

.l-footer-pinned .l-newsletter {
  flex: 1;
  min-height: unset;
  padding-top: clamp(2rem, 6svh, 7rem);
  padding-bottom: clamp(2rem, 6svh, 7rem);
  transform: translateX(100%);
  will-change: transform;
  overflow: hidden;
}

.l-footer-pinned .l-footer {
  transform: translateY(100%);
  will-change: transform;
  flex-shrink: 0;
  border-top: 1px solid var(--c-border);
  padding: 2.5rem 2.5rem 2rem;
}

@media (max-width: 540px) {
  .l-footer-pinned .l-footer {
    padding: 1.75rem 1.25rem 1.5rem;
  }
}

.l-newsletter__inner {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.l-newsletter__title {
  font-family: var(--ff-title);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}

.l-newsletter__sub {
  font-size: .9375rem;
  color: var(--c-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.l-newsletter__form {
  display: flex;
  gap: .625rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.l-newsletter__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.l-newsletter__input {
  flex: 1 1 240px;
  padding: .75rem 1.125rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border-md);
  border-radius: var(--border-radius);
  color: var(--c-off-white);
  font-size: .875rem;
  font-family: var(--ff-body);
  outline: none;
  transition: border-color .15s;
}

.l-newsletter__input::placeholder {
  color: var(--c-muted);
}

.l-newsletter__input:focus {
  border-color: var(--c-primary);
}

.l-newsletter__btn {
  padding: .75rem 1.5rem;
  background: var(--c-primary);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  font-family: var(--ff-body);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background .15s;
}

.l-newsletter__btn:hover {
  background: var(--c-primary-d);
}

.l-newsletter__btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.l-newsletter__feedback {
  width: 100%;
  margin-top: .75rem;
  font-size: .8125rem;
  padding: .5rem .875rem;
  border-radius: var(--border-radius);
}

.l-newsletter__feedback.ok {
  color: #6ee7b7;
  background: rgba(110,231,183,.08);
}

.l-newsletter__feedback.err {
  color: #fca5a5;
  background: rgba(252,165,165,.08);
}

.l-newsletter__privacy {
  margin-top: 1rem;
  font-size: .75rem;
  color: var(--c-muted-2);
 }

.l-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--c-border);
  padding: 3.5rem 2.5rem 2.5rem;
  background: var(--c-bg);
}

.l-footer__top {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.l-footer__brand-logo {
  font-family: var(--ff-title);
  font-size: 1.125rem;
  color: var(--c-primary);
  text-decoration: none;
  display: block;
  margin-bottom: .5rem;
}

.l-footer__brand-tag {
  font-size: .8125rem;
  color: var(--c-muted);
  max-width: 260px;
  line-height: 1.55;
}

.l-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  list-style: none;
}

.l-footer__links a {
  font-size: .8125rem;
  color: var(--c-muted);
  text-decoration: none;
  transition: color .15s;
}

.l-footer__links a:hover {
  color: var(--c-off-white);
}

.l-footer__bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .75rem;
  color: var(--c-muted-2);
}

.l-footer__socials {
  display: flex;
  gap: 1.25rem;
}

.l-footer__socials a {
  color: var(--c-muted);
  text-decoration: none; 
  font-size: .75rem;
  transition: color .15s;
}

.l-footer__socials a:hover {
  color: var(--c-off-white);
}

.l-hero__status {
  margin-top: 1.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: .625rem;
}

.l-hero__status-main {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .5rem 1rem;
  background: rgba(245,245,240,.04);
  border: 1px solid var(--c-border-md);
  border-radius: var(--border-radius);
  font-size: .8rem; color: var(--c-muted);
  width: fit-content;
  transition: border-color .2s;
}

.l-hero__status-main:has(+ .l-hero__status-services:not([hidden])) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.l-hero__status-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-muted-2);
  flex-shrink: 0;
  transition: background .3s;
}

.l-hero__status-pulse.is-ok {
  background: #6ee7b7;
  animation: hero-pulse 2.4s ease infinite;
}

.l-hero__status-pulse.is-warn {
  background: #fbbf24;
  animation: hero-pulse 1.6s ease infinite;
}

.l-hero__status-pulse.is-err {
  background: #f87171;
}

@keyframes hero-pulse {
  0%,100% {
    box-shadow: 0 0 0 0 currentColor;
  }

  50% {
    box-shadow: 0 0 0 5px transparent;
  }
}

.l-hero__status-label {
  transition: color .2s;
}

.l-hero__status-services {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
  padding: .5rem 1rem;
  background: rgba(245,245,240,.03);
  border: 1px solid var(--c-border-md);
  border-top: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.l-hero__status-chip {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .7rem;
  color: var(--c-muted);
  padding: .2rem .55rem;
  background: rgba(245,245,240,.04);
  border: 1px solid var(--c-border);
  border-radius: calc(var(--border-radius) / 2);
}

.l-hero__status-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.l-hero__status-chip-dot.ok {
  background: #6ee7b7;
}

.l-hero__status-chip-dot.warn {
  background: #fbbf24;
}

.l-hero__status-chip-dot.err {
  background: #f87171;
}

.l-status {
  padding: 0 2.5rem 5rem;
}

.l-status__bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.l-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.l-status__dot--ok {
  background: #6ee7b7;
  box-shadow: 0 0 6px rgba(110,231,183,.5);
}

.l-status__dot--warn {
  background: #fbbf24;
  box-shadow: 0 0 6px rgba(251,191,36,.5);
}

.l-status__dot--err {
  background: #f87171;
  box-shadow: 0 0 6px rgba(248,113,113,.5);
}

.l-status__text {
  font-size: .8125rem;
  color: var(--c-off-white);
  font-weight: 500;
}

.l-status__link {
  font-size: .75rem;
  color: var(--c-muted);
  text-decoration: none;
  margin-left: auto;
  transition: color .15s;
}

.l-status__link:hover {
  color: var(--c-off-white);
}

.l-status__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.l-status__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1.125rem;
  background: var(--c-bg-2);
  font-size: .8125rem;
}

.l-status__item-name {
  color: var(--c-off-white);
  flex: 1;
}

.l-status__item-state {
  font-size: .72rem;
  color: var(--c-muted);
}

.l-changelog__list {
  display: flex;
  flex-direction: column;
  gap: 1px; 
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.l-changelog__item {
  display: grid;
  grid-template-columns: 90px 52px 1fr;
  align-items: start;
  gap: 1.25rem;
  padding: 1.375rem 1.75rem;
  background: var(--c-bg-2);
  transition: background .15s;
}

.l-changelog__item:hover {
  background: var(--c-bg-card);
}

.l-changelog__date {
  font-size: .75rem;
  color: var(--c-muted);
  padding-top: .15rem;
  white-space: nowrap;
}

.l-changelog__badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: calc(var(--border-radius) / 2);
  white-space: nowrap;
  align-self: center;
}

.l-changelog__badge--new {
  background: rgba(108,99,255,.18);
  color: var(--c-primary);
}

.l-changelog__badge--feature {
  background: rgba(110,231,183,.12);
  color: #6ee7b7;
}

.l-changelog__badge--fix  {
  background: rgba(251,191,36,.1); 
  color: #fbbf24;
}

.l-changelog__badge--perf {
  background: rgba(96,165,250,.1);
  color: #60a5fa;
}

.l-changelog__title {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--c-off-white);
  margin-bottom: .3rem;
}

.l-changelog__text {
  font-size: .8125rem;
  color: var(--c-muted);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .l-hero__inner {
    grid-template-columns: 1fr 340px;
    gap: 3rem;
  }

  .image-iphone-macbok {
    width: 340px;
  }
}

@media (max-width: 1024px) {
  .l-features__grid {
    grid-template-columns: repeat(2, 1fr);
    border: none;
  }

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

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

  .l-hero__inner {
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
  }

  .image-iphone-macbok {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .l-hero {
    padding: 6.5rem 2rem 4rem;
  }

  .l-hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .image-iphone-macbok {
    display: none;
  }

  .l-hero h1 {
    font-size: clamp(2.25rem, 6vw, 3.25rem);
  }

  .l-hero__sub {
    max-width: 100%;
  }

  .l-section {
    padding: 5rem 2rem;
  }

  .l-header {
    margin-bottom: 2.5rem;
  }

  .l-newsletter {
    padding: 5rem 2rem;
  }

  .l-footer {
    padding: 3rem 2rem 2rem;
  }

  .l-footer__top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .l-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .l-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
}

@media (max-width: 600px) {
  .l-poss__grid {
    grid-template-columns: 1fr;
    border: none;
  }
}

@media (max-width: 540px) {
  .l-hero {
    padding: 5.5rem 1.25rem 3.5rem;
  }

  .l-hero h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .l-hero__label {
    font-size: .7rem;
  }

  .l-section {
    padding: 4rem 1.25rem;
  }

  .l-header {
    margin-bottom: 2rem;
  }

  .l-features__grid {
    grid-template-columns: 1fr;
    border: none;
  }

  .l-feat {
    padding: 1.75rem 1.5rem;
  }

  .l-pricing__grid {
    grid-template-columns: 1fr;
  }

  .l-status__grid {
    grid-template-columns: 1fr;
  }

  .l-poss__grid {
    grid-template-columns: 1fr;
    border: none;
  }

  .l-poss__item {
    padding: 1.25rem 1.25rem;
  }

  .l-changelog__item {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .l-changelog__date {
    display: none;
  }

  .l-status {
    padding: 0 1.25rem 4rem;
  }

  .l-newsletter {
    padding: 4rem 1.25rem;
  }

  .l-newsletter__form {
    flex-direction: column;
    align-items: stretch;
  }

  .l-newsletter__input {
    flex: none;
  }

  .l-newsletter__btn {
    width: 100%;
  }

  .l-footer {
    padding: 3rem 1.25rem 2rem;
  }

  .l-footer__top {
    gap: 1rem;
  }

  .l-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .l-footer__socials {
    flex-wrap: wrap;
    gap: .75rem 1rem;
  }

  .l-screens__track {
    gap: .875rem;
    padding: .25rem 0 1.25rem;
  }

  .l-screen {
    flex: 0 0 175px;
  }
}

@media (max-width: 480px) {
  .l-hero h1 {
    font-size: 2.1rem;
  }

  .l-hero__ctas {
    flex-direction: column;
    gap: .625rem;
  }

  .l-hero__stats {
    width: 100%;
  }

  .l-hero__stats-bar {
    width: 100%;
    justify-content: space-between;
  }

  .l-hero__stats-sep {
    display: none;
  }

  .l-footer__links {
    gap: .5rem 1.25rem;
  }
}

@media (max-width: 360px) {
  .l-hero {
    padding: 5rem 1rem 3rem;
  }

  .l-hero h1 {
    font-size: 1.875rem;
  }

  .l-section {
    padding: 3.5rem 1rem;
  }

  .l-newsletter {
    padding: 3.5rem 1rem;
  }

  .l-footer {
    padding: 2.5rem 1rem 1.5rem;
  }

  .l-feat {
    padding: 1.5rem 1.25rem;
  }
}

.l-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}

.l-hero__orb--a {
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(108,99,255,.3) 0%, rgba(139,92,246,.1) 50%, transparent 70%);
  top: -220px;
  right: -120px;
  animation: orb-drift 12s ease-in-out infinite;
}

.l-hero__orb--b {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(167,139,250,.22) 0%, rgba(108,99,255,.08) 50%, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation: orb-drift 9s ease-in-out infinite reverse;
}

@keyframes orb-drift {
  0%,100% {
    transform: translate(0,0) scale(1);
  }

  40% {
    transform: translate(48px,-60px) scale(1.09);
  }

  70% {
    transform: translate(-32px,38px) scale(.92);
  }
}

.l-svg-icon {
  display: block;
  filter: brightness(0) saturate(100%) invert(42%) sepia(75%) saturate(620%) hue-rotate(220deg) brightness(108%);
  transition: filter .2s;
}

.l-feat:hover .l-svg-icon {
  filter: brightness(0) saturate(100%) invert(50%) sepia(90%) saturate(700%) hue-rotate(220deg) brightness(120%);
}

.l-feat {
  position: relative;
  cursor: default;
  will-change: transform;
  transition: background .2s, transform .45s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .35s;
}

.l-feat:hover {
  box-shadow: 0 0 0 1px rgba(108,99,255,.35), 0 8px 40px rgba(108,99,255,.12), 0 24px 60px rgba(0,0,0,.4);
}

.l-feat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--spot, transparent);
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .25s;
}

.l-feat:hover::before {
  opacity: 1;
}

.l-poss__item {
  position: relative;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.l-poss__item:hover {
  border-color: rgba(108,99,255,.25);
  box-shadow: 0 0 0 1px rgba(108,99,255,.15), 0 4px 24px rgba(108,99,255,.08);
}

.l-poss__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--spot, transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}

.l-poss__item:hover::before {
  opacity: 1;
}

.l-screens__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .875rem;
  margin-top: 1.5rem;
}

.l-screens__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--c-border-md);
  background: transparent;
  color: var(--c-muted);
  cursor: pointer;
  font-size: .875rem;
  line-height: 1;
  transition: color .15s, border-color .15s, background .15s;
}

.l-screens__arrow:hover {
  color: var(--c-off-white);
  border-color: rgba(245,245,240,.28);
  background: rgba(245,245,240,.06);
}

.l-screens__dots {
  display: flex;
  align-items: center;
  gap: .375rem;
}

.l-screens__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--c-muted-2);
  cursor: pointer;
  transition: background .2s, transform .25s;
}

.l-screens__dot.is-active {
  background: var(--c-primary);
  transform: scale(1.6);
}

@media (max-width: 768px) {
  .l-hero__orb--a {
    width: 360px;
    height: 360px;
  }

  .l-hero__orb--b {
    width: 260px;
    height: 260px;
  }
}

#possibilities .l-header .l-eyebrow,
#possibilities .l-header .l-title,
#possibilities .l-header .l-subtitle {
  opacity: 0;
  transform: translateY(36px);
  will-change: transform, opacity;
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}

#possibilities .l-header .l-title {
  transition-delay: .11s;
}

#possibilities .l-header .l-subtitle {
  transition-delay: .22s;
}

#possibilities .l-header.is-vis .l-eyebrow,
#possibilities .l-header.is-vis .l-title,
#possibilities .l-header.is-vis .l-subtitle {
  opacity: 1;
  transform: none;
}

#possibilities .l-poss__item {
  opacity: 0;
  transform: translateY(44px) scale(.95);
  will-change: transform, opacity;
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}

#possibilities .l-poss__item.is-vis {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .l-hero__orb {
    animation: none !important;
  }

  #possibilities .l-header .l-eyebrow,
  #possibilities .l-header .l-title,
  #possibilities .l-header .l-subtitle,
  #possibilities .l-poss__item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.has-custom-cursor * {
  cursor: none !important;
}

.l-cursor-dot,
.l-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  will-change: transform;
}

.l-cursor-dot {
  width: 5px;
  height: 5px;
  background: #fff;
  mix-blend-mode: difference;
  transition: transform .15s cubic-bezier(.22,1,.36,1), opacity .2s;
}

.l-cursor-ring {
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(108,99,255,.55);
  background: rgba(108,99,255,.04);
  transition: width .35s cubic-bezier(.22,1,.36,1), height .35s cubic-bezier(.22,1,.36,1), border-radius .35s cubic-bezier(.22,1,.36,1), border-color .25s, background .25s, opacity .3s;
}

.has-custom-cursor.cursor-hov .l-cursor-dot {
  transform: var(--cur-dot-pos, translate(-50%,-50%)) scale(0);
}
.has-custom-cursor.cursor-hov .l-cursor-ring {
  width: 52px;
  height: 52px;
  border-color: rgba(108,99,255,.9);
  background: rgba(108,99,255,.1);
}

.has-custom-cursor.cursor-down .l-cursor-dot {
  transform: var(--cur-dot-pos, translate(-50%,-50%)) scale(3);
  opacity: .5;
}

.has-custom-cursor.cursor-down .l-cursor-ring {
  width: 16px;
  height: 16px;
  background: rgba(108,99,255,.4);
  border-color: var(--c-primary);
}

.has-custom-cursor.cursor-drag .l-cursor-ring {
  width: 72px;
  height: 30px;
  border-radius: 20px;
  border-color: rgba(108,99,255,.75);
  background: rgba(108,99,255,.1);
}

.has-custom-cursor.cursor-out .l-cursor-dot,
.has-custom-cursor.cursor-out .l-cursor-ring {
  opacity: 0;
}

@media (pointer: coarse) {
  .l-cursor-dot, .l-cursor-ring {
    display: none !important;
  }

  .has-custom-cursor * {
    cursor: auto !important;
  }
}

.l-screens__stage {
  position: relative;
  z-index: 2;
  background: var(--c-bg);
}

.l-screens--pinned {
  position: sticky !important;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 3.5rem 0 0;
  overflow: hidden;
}

.l-screens--pinned .l-inner {
  max-width: 100%;
  margin: 0;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  gap: 2rem;
}

.l-screens__clip {
  flex: 1;
  overflow: hidden;
}

.l-screens--pinned .l-screens__track {
  display: flex;
  height: 100%;
  gap: 0;
  overflow: visible;
  cursor: default;
}

.l-screens--pinned .l-screen {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.l-screen__card {
  width: clamp(280px, 550px, calc(100% - 3rem));
  height: clamp(260px, 500px, calc(100% - 4rem));
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-md);
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.l-screens--pinned .l-screens__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .375rem;
  padding: 1.25rem 0 1.5rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .l-screens--pinned {
    padding: 3rem 0 0;
  }

  .l-screens--pinned .l-inner {
    padding: 0 1rem;
    gap: 1.25rem;
  }
}
