:root {
  --navy: 222 57% 8%;
  --surface: 224 61% 11%;
  --surface-2: 222 61% 13%;
  --inlock-primary: 217 100% 54%;
  --inlock-royal: 224 74% 46%;
  --inlock-border: 219 61% 26%;
  --inlock-text: 223 100% 97%;
  --inlock-muted: 220 23% 64%;
  --lowify-primary: var(--inlock-primary);
  --lowify-primary-dark: var(--inlock-royal);
  --lowify-text: var(--inlock-text);
  --lowify-surface: var(--surface);
  --lowify-surface-subtle: var(--surface-2);
  --lowify-border: var(--inlock-border);
  --muted-foreground: var(--inlock-muted);
  --background: var(--navy);
  --foreground: var(--inlock-text);
  --primary: var(--inlock-primary);
  --primary-foreground: 0 0% 100%;
  --primary-dark: var(--inlock-royal);
  --muted: var(--surface-2);
  --border: var(--inlock-border);
  --success: 151 77% 44%;
  --radius: 1.15rem;
  --radius-lg: 1.25rem;
  --radius-pill: 9999px;
  --shadow-elegant: 0 8px 24px rgba(0, 0, 0, 0.22);
  --shadow-card: none;
  --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.18);
  --gradient-hero: linear-gradient(180deg, #091021 0%, #0b142d 52%, #091021 100%);
  --gradient-cta: linear-gradient(135deg, #146bff 0%, #008cff 100%);
  --gradient-card: linear-gradient(135deg, #173fad 0%, #12308c 50%, #0d1935 100%);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --container: 80rem;
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  font-family: var(--font);
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary));
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 3rem, var(--container));
  }
}

.section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section--tight {
  padding-top: 2rem;
}

.section--muted {
  background: linear-gradient(180deg, hsl(var(--muted) / 0.55) 0%, hsl(var(--background)) 100%);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsl(var(--border) / 0.7) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--border) / 0.7) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 70%);
  pointer-events: none;
  opacity: 0.45;
}

.text-gradient {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: hsl(var(--background) / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #162747;
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.logo__mark {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.nav a:hover {
  color: hsl(var(--foreground));
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

@media (max-width: 480px) {
  .header__actions .btn--ghost {
    display: none;
  }

  .header__actions .btn--cta-sm {
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--lowify-surface));
  color: hsl(var(--foreground));
}

.nav-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

.nav--open {
  display: flex;
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(var(--header-h) + 0.5rem);
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--lowify-surface));
  box-shadow: var(--shadow-elegant);
}

.nav--open a {
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
}

.nav--open a:hover {
  background: hsl(var(--muted));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--surface-2));
  color: hsl(var(--foreground));
}

.btn--ghost:hover {
  background: hsl(var(--primary) / 0.12);
  border-color: hsl(var(--primary) / 0.45);
}

.btn--cta {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  color: #fff;
  background: var(--gradient-cta);
  box-shadow: var(--shadow-elegant);
}

.btn--cta:hover {
  box-shadow: var(--shadow-hover);
}

.btn--cta-sm {
  padding: 0.7rem 1.2rem;
  font-size: 0.95rem;
  color: #fff;
  background: var(--gradient-cta);
}

.btn--block {
  width: 100%;
}

.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  background: var(--gradient-hero);
}

@media (min-width: 768px) {
  .hero {
    padding: 5.5rem 0 6rem;
  }
}

.hero__inner {
  position: relative;
  text-align: center;
  max-width: 54rem;
  margin-inline: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-pill);
  background: hsl(var(--lowify-surface));
  color: hsl(var(--muted-foreground));
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}

.badge__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  box-shadow: 0 0 0 4px hsl(var(--primary) / 0.16);
}

.hero h1,
.section__title {
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  margin-bottom: 1.1rem;
}

.lead {
  color: hsl(var(--muted-foreground));
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
}

.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.92rem;
  font-weight: 600;
}

.trust__item svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
}

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .split {
    grid-template-columns: 1fr 1.05fr;
    gap: 4.5rem;
  }

  .split--reverse {
    grid-template-columns: 1.05fr 1fr;
  }

  .split--reverse .split__copy {
    order: 2;
  }
}

.kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: hsl(var(--primary));
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}

.section__lead {
  color: hsl(var(--muted-foreground));
  font-size: 1.1rem;
  max-width: 36rem;
}

.center {
  text-align: center;
}

.center .section__lead {
  margin-inline: auto;
}

.checks {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 1.75rem;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 600;
}

.check svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  color: hsl(var(--primary));
}

.check span {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.preview {
  position: relative;
  border: 1px solid hsl(var(--border));
  border-radius: 1.5rem;
  background: hsl(var(--lowify-surface));
  box-shadow: var(--shadow-elegant);
  overflow: hidden;
}

.preview__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--muted));
}

.preview__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #566580;
}

.preview__url {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-weight: 600;
}

.dash {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  min-height: 22rem;
  background: #091021;
  color: #f1f5ff;
}

.dash__side {
  padding: 0.9rem 0.55rem;
  border-right: 1px solid #162747;
  background: #091021;
}

.dash__brand {
  width: 2.1rem;
  height: 2.1rem;
  margin: 0 auto 1rem;
  border-radius: 0.55rem;
  background: var(--gradient-cta);
}

.dash__nav {
  display: grid;
  gap: 0.45rem;
}

.dash__nav i {
  display: block;
  height: 1.7rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.06);
}

.dash__nav i.is-on {
  background: hsl(var(--primary) / 0.28);
}

.dash__main {
  padding: 1rem 1.05rem 1.2rem;
}

.dash__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.dash__head strong {
  font-size: 0.95rem;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #19c77a;
  font-size: 0.7rem;
  font-weight: 700;
}

.live::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #19c77a;
  animation: pulse 1.6s ease-in-out infinite;
}

.domain {
  border: 1px solid rgba(38, 83, 150, 0.45);
  border-radius: 0.85rem;
  padding: 0.75rem;
  background: #0b142d;
}

.domain + .domain {
  margin-top: 0.55rem;
}

.domain__top {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
}

.domain__meta {
  margin-top: 0.35rem;
  color: #8d9bb8;
  font-size: 0.7rem;
}

.toggles {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.55rem;
  border-radius: 0.55rem;
  background: rgba(20, 107, 255, 0.06);
  color: #8d9bb8;
  font-size: 0.72rem;
  font-weight: 600;
}

.switch {
  width: 1.7rem;
  height: 0.95rem;
  border-radius: 999px;
  background: #566580;
  position: relative;
}

.switch.is-on {
  background: #146bff;
}

.switch::after {
  content: "";
  position: absolute;
  top: 0.12rem;
  left: 0.12rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: hsl(var(--lowify-surface));
}

.switch.is-on::after {
  left: auto;
  right: 0.12rem;
}

.features-head {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.6rem;
  border: 1px solid rgba(38, 83, 150, 0.28);
  border-radius: var(--radius-lg);
  background: hsl(var(--lowify-surface));
  box-shadow: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.card:hover {
  transform: none;
  border-color: rgba(38, 83, 150, 0.5);
  background: #0c1733;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  background: hsl(var(--muted));
  color: hsl(var(--primary));
  transition: transform 0.25s ease;
}

.card:hover .card__icon {
  transform: none;
  color: #008cff;
}

.card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
}

.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  padding: 1.6rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  background: hsl(var(--lowify-surface));
  box-shadow: var(--shadow-card);
}

.step__n {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: hsl(var(--muted-foreground));
}

.code {
  margin-top: 0.9rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  background: #0d1935;
  color: #8d9bb8;
  border: 1px solid rgba(38, 83, 150, 0.45);
  font-size: 0.72rem;
  line-height: 1.5;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.plans {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 860px) {
  .plans {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.plan {
  position: relative;
  padding: 1.7rem 1.5rem 1.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: 1.4rem;
  background: hsl(var(--lowify-surface));
  box-shadow: var(--shadow-card);
}

.plan--featured {
  border-color: rgba(20, 107, 255, 0.45);
  background: var(--gradient-card);
  box-shadow: none;
  transform: none;
}

@media (min-width: 860px) {
  .plan--featured {
    transform: scale(1.045);
    z-index: 1;
  }
}

.plan__tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: hsl(var(--muted));
  color: hsl(var(--primary));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan--featured .plan__tag {
  color: #fff;
  background: var(--gradient-cta);
}

.plan h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.plan__price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin: 0.4rem 0 0.25rem;
}

.plan__price strong {
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan__cycle {
  color: hsl(var(--muted-foreground));
  padding-bottom: 0.25rem;
  font-weight: 600;
}

.plan__note {
  color: hsl(var(--muted-foreground));
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}

.plan ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
}

.plan li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: hsl(var(--muted-foreground));
}

.plan li svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: hsl(var(--primary));
}

.faq {
  max-width: 46rem;
  margin: 2rem auto 0;
  display: grid;
  gap: 0.7rem;
}

.faq details {
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  background: hsl(var(--lowify-surface));
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq summary::after {
  content: "+";
  color: hsl(var(--primary));
  font-size: 1.3rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  padding: 0 1.2rem 1.15rem;
  color: hsl(var(--muted-foreground));
}

.cta-band {
  border-radius: 1.75rem;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #fff;
  background: var(--gradient-cta);
  box-shadow: var(--shadow-hover);
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.7rem;
}

.cta-band p {
  opacity: 0.86;
  max-width: 34rem;
  margin: 0 auto 1.4rem;
}

.cta-band .btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-band .btn--light {
  background: #f1f5ff;
  color: #146bff;
}

.cta-band .btn--light:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer strong {
  display: block;
  color: hsl(var(--foreground));
  margin-bottom: 0.7rem;
}

.footer a {
  display: block;
  padding: 0.25rem 0;
}

.footer a:hover {
  color: hsl(var(--foreground));
}

.footer__copy {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid hsl(var(--border));
  font-size: 0.88rem;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fade-up {
  animation: fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up,
  .card,
  .btn,
  .live::before,
  .card__icon {
    animation: none !important;
    transition: none !important;
  }
}

.content-vis {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}
