.landing-page {
  margin: 0;
  min-height: 100vh;
  background: #0f172a;
  color: #e2e8f0;
  overflow-x: hidden;
}

.landing-page a {
  text-decoration: none;
}

.landing-skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #0f172a;
}

.landing-skip:focus {
  left: 1rem;
  top: 1rem;
}

.landing-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 120;
  background: var(--project-gradient);
  pointer-events: none;
}

.landing-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.landing-pointer {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 77, 255, 0.16) 0%, transparent 68%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 0.4s ease;
}

.landing-page main,
.landing-page footer {
  position: relative;
  z-index: 1;
}

.landing-wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.85rem 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.landing-nav.is-scrolled {
  background: rgba(15, 23, 42, 0.92);
  border-bottom-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.landing-nav__inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-nav__brand img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.landing-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.7);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.landing-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-nav.is-open .landing-nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.landing-nav.is-open .landing-nav__toggle span:nth-child(2) {
  opacity: 0;
}

.landing-nav.is-open .landing-nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.landing-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.landing-nav__menu a {
  color: #cbd5e1;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.landing-nav__menu a:hover,
.landing-nav__menu a:focus-visible {
  color: #fff;
}

.landing-nav__ghost {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  color: #fff !important;
}

.landing-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  color: #fff !important;
  background: var(--project-gradient);
  box-shadow: 0 8px 24px rgba(91, 77, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-nav__cta:hover,
.landing-nav__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.42);
}

.landing-hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  isolation: isolate;
}

.landing-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  animation: landing-grid 22s linear infinite;
  z-index: 0;
}

.landing-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.landing-hero__glow--1 {
  width: 420px;
  height: 420px;
  top: -80px;
  right: 8%;
  background: rgba(91, 77, 255, 0.28);
  animation: landing-float 9s ease-in-out infinite;
}

.landing-hero__glow--2 {
  width: 280px;
  height: 280px;
  bottom: 0;
  left: 4%;
  background: rgba(37, 99, 235, 0.22);
  animation: landing-float 11s ease-in-out infinite reverse;
}

.landing-hero__grid-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.8rem 0.35rem 0.45rem;
  border: 1px solid rgba(91, 77, 255, 0.35);
  border-radius: 999px;
  background: rgba(91, 77, 255, 0.12);
  color: #c7d2fe;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.landing-kicker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: landing-pulse 1.8s ease-out infinite;
}

.landing-hero__copy h1,
.landing-section__head h2,
.landing-monitor__copy h2,
.landing-cta__box h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.landing-hero__copy h1 {
  font-size: clamp(2.15rem, 5vw, 3.6rem);
}

.landing-hero__copy h1 span {
  display: block;
  background: var(--project-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-hero__lead,
.landing-section__head p,
.landing-monitor__copy p {
  margin: 0 0 1.5rem;
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.landing-hero__actions--center {
  justify-content: center;
  margin-bottom: 0;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.landing-btn--primary {
  color: #fff;
  background: var(--project-gradient);
  box-shadow: 0 10px 28px rgba(91, 77, 255, 0.38);
}

.landing-btn--primary:hover,
.landing-btn--primary:focus-visible {
  transform: translateY(-2px);
  color: #fff;
}

.landing-btn--ghost {
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.4);
}

.landing-btn--ghost:hover,
.landing-btn--ghost:focus-visible {
  color: #fff;
  border-color: rgba(91, 77, 255, 0.6);
}

.landing-btn--light {
  color: #1e293b;
  background: #fff;
}

.landing-btn--light:hover,
.landing-btn--light:focus-visible {
  color: #0f172a;
  transform: translateY(-2px);
}

.landing-btn--ghost-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.landing-btn--ghost-light:hover,
.landing-btn--ghost-light:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.landing-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: #cbd5e1;
  font-size: 0.8125rem;
}

.landing-hero__pills i {
  color: #818cf8;
}

.landing-hero__visual {
  position: relative;
  min-height: 420px;
}

.landing-orbit {
  position: absolute;
  inset: 8% 6%;
  pointer-events: none;
}

.landing-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(91, 77, 255, 0.22);
  border-radius: 50%;
  animation: landing-spin 18s linear infinite;
}

.landing-orbit span:nth-child(2) {
  inset: 12%;
  animation-duration: 24s;
  animation-direction: reverse;
}

.landing-orbit span:nth-child(3) {
  inset: 24%;
  animation-duration: 14s;
}

.landing-panel {
  position: relative;
  z-index: 1;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  animation: landing-card 7s ease-in-out infinite;
}

.landing-panel__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  background: rgba(30, 41, 59, 0.85);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: #94a3b8;
  font-size: 0.75rem;
}

.landing-panel__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #64748b;
}

.landing-panel__bar span:nth-child(1) { background: #f87171; }
.landing-panel__bar span:nth-child(2) { background: #fbbf24; }
.landing-panel__bar span:nth-child(3) { background: #34d399; }

.landing-panel__bar strong {
  margin-left: 0.5rem;
  color: #e2e8f0;
  font-weight: 600;
}

.landing-panel__body {
  padding: 1.25rem;
}

.landing-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 77, 255, 0.18), rgba(37, 99, 235, 0.1));
  border: 1px solid rgba(91, 77, 255, 0.28);
}

.landing-shield {
  position: relative;
  width: 64px;
  height: 72px;
  flex-shrink: 0;
}

.landing-shield svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(91, 77, 255, 0.55));
}

.landing-shield__pulse {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(91, 77, 255, 0.25);
  animation: landing-pulse 2.2s ease-out infinite;
}

.landing-status__label {
  margin: 0;
  color: #94a3b8;
  font-size: 0.8rem;
}

.landing-status__value {
  margin: 0.15rem 0 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.landing-feed {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.landing-feed li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.1);
  font-size: 0.875rem;
  color: #cbd5e1;
  animation: landing-in 0.45s ease;
}

.landing-feed i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-feed .is-ok i {
  background: rgba(16, 185, 129, 0.16);
  color: #34d399;
}

.landing-feed .is-warn i {
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
}

.landing-feed .is-crit i {
  background: rgba(239, 68, 68, 0.16);
  color: #f87171;
}

.landing-stats {
  padding: 0 0 1rem;
}

.landing-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 20px;
  background: rgba(30, 41, 59, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.landing-stat {
  text-align: center;
  padding: 1rem 0.5rem;
}

.landing-stat strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  background: var(--project-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-stat span {
  display: block;
  margin-top: 0.35rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.landing-section,
.landing-hero,
.landing-cta {
  scroll-margin-top: 88px;
}

.landing-section {
  padding: 5rem 0;
}

.landing-section--alt {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.35), transparent);
}

.landing-section__head {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.landing-section__head h2,
.landing-monitor__copy h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.landing-section__head p {
  margin-left: auto;
  margin-right: auto;
}

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

.landing-card {
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.14);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.landing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 77, 255, 0.45);
  box-shadow: 0 18px 40px rgba(91, 77, 255, 0.16);
}

.landing-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: #fff;
  background: var(--project-gradient);
}

.landing-card h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.05rem;
}

.landing-card p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.landing-step {
  position: relative;
  padding: 1.6rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.landing-step__num {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--project-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-step h3 {
  margin: 0 0 0.5rem;
  color: #fff;
}

.landing-step p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.65;
}

.landing-monitor {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.landing-checks {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.landing-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
  color: #cbd5e1;
}

.landing-checks i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  background: var(--project-gradient);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.landing-monitor__visual {
  display: grid;
  gap: 0.85rem;
}

.landing-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.14);
  animation: landing-float 6s ease-in-out infinite;
}

.landing-tile:nth-child(2) { animation-delay: 0.4s; }
.landing-tile:nth-child(3) { animation-delay: 0.8s; }

.landing-tile i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.landing-tile strong,
.landing-tile span {
  display: block;
}

.landing-tile strong {
  color: #fff;
}

.landing-tile span {
  color: #94a3b8;
  font-size: 0.875rem;
}

.landing-tile--ok i { background: rgba(16, 185, 129, 0.16); color: #34d399; }
.landing-tile--warn i { background: rgba(245, 158, 11, 0.16); color: #fbbf24; }
.landing-tile--crit i { background: rgba(239, 68, 68, 0.16); color: #f87171; }

.landing-cta {
  padding: 1rem 0 5rem;
}

.landing-cta__box {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.5rem;
  border-radius: 28px;
  text-align: center;
  background: var(--project-gradient);
  color: #fff;
}

.landing-cta__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(8px);
}

.landing-cta__box h2,
.landing-cta__box p {
  position: relative;
  color: #fff;
}

.landing-cta__box p {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  opacity: 0.92;
}

.landing-footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: #0b1220;
}

.landing-footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.landing-footer__logo {
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.landing-footer p {
  margin: 0;
  max-width: 22rem;
  color: #94a3b8;
}

.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.landing-footer nav a {
  color: #cbd5e1;
}

.landing-footer nav a:hover,
.landing-footer nav a:focus-visible {
  color: #fff;
}

.landing-footer__copy {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: #64748b;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="delay"].is-visible {
  transition-delay: 0.15s;
}

.landing-features [data-reveal]:nth-child(2).is-visible { transition-delay: 0.08s; }
.landing-features [data-reveal]:nth-child(3).is-visible { transition-delay: 0.16s; }
.landing-features [data-reveal]:nth-child(4).is-visible { transition-delay: 0.08s; }
.landing-features [data-reveal]:nth-child(5).is-visible { transition-delay: 0.16s; }
.landing-features [data-reveal]:nth-child(6).is-visible { transition-delay: 0.24s; }
.landing-steps [data-reveal]:nth-child(2).is-visible { transition-delay: 0.1s; }
.landing-steps [data-reveal]:nth-child(3).is-visible { transition-delay: 0.2s; }

@keyframes landing-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes landing-pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); opacity: 0.9; }
  100% { box-shadow: 0 0 0 14px rgba(52, 211, 153, 0); opacity: 0; }
}

@keyframes landing-spin {
  to { transform: rotate(360deg); }
}

@keyframes landing-card {
  0%, 100% { transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-8px); }
}

@keyframes landing-grid {
  from { background-position: 0 0; }
  to { background-position: 48px 48px; }
}

@keyframes landing-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 991px) {
  .landing-nav__toggle {
    display: inline-flex;
  }

  .landing-nav__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .landing-nav.is-open .landing-nav__menu {
    display: flex;
  }

  .landing-nav__menu a {
    padding: 0.7rem 0.2rem;
  }

  .landing-nav__ghost,
  .landing-nav__cta {
    justify-content: center;
    text-align: center;
  }

  .landing-hero {
    padding: 2.25rem 0 3rem;
  }

  .landing-hero__grid-layout,
  .landing-monitor,
  .landing-features,
  .landing-steps,
  .landing-stats__grid {
    grid-template-columns: 1fr;
  }

  .landing-hero__visual {
    min-height: 0;
  }

  .landing-panel {
    transform: none;
    animation: none;
  }

  .landing-section {
    padding: 3.25rem 0;
  }

  .landing-cta {
    padding-bottom: 3rem;
  }

  .landing-footer__grid {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .landing-nav__brand img {
    height: 34px;
  }

  .landing-hero__actions,
  .landing-hero__actions--center {
    flex-direction: column;
  }

  .landing-btn {
    width: 100%;
  }

  .landing-cta__box {
    padding: 2.25rem 1.15rem;
  }

  .landing-hero__copy h1 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .landing-canvas,
  .landing-pointer {
    display: none;
  }
}

@media (pointer: coarse) {
  .landing-pointer {
    display: none;
  }
}
