@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&family=DM+Mono:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0f1115;
  --bg2: #121216;
  --sur: #1a1a1f;
  --sur2: #222228;
  --sur3: #2a2a31;
  --bdr: #2a2d36;
  --bdr2: #3a3d46;
  --txt: #f0f0f4;
  --txt2: #a0a0ab;
  --txt3: #6a6a75;
  --dim: #70707a;
  --primary: #8b5cf6;
  --primary-h: #7c3aed;
  --primary-glow: rgba(139, 92, 246, 0.15);
  --primary-muted: rgba(139, 92, 246, 0.08);
  --r: 12px;
  --r-sm: 8px;
  --r-lg: 16px;
  --transition: 0.2s ease;
  --font: 'DM Sans', 'Inter', system-ui, sans-serif;
  --mono: 'DM Mono', 'SF Mono', 'Fira Code', monospace;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}

.n-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--bdr2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dim);
}

.n-banner {
  background: var(--primary);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.n-banner a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  font-weight: 700;
  margin-left: 8px;
  transition: color var(--transition);
}

.n-banner a:hover {
  color: #fff;
}

.n-topbar {
  position: relative;
  z-index: 130;
  height: 28px;
  display: flex;
  align-items: center;
  background: #050506;
  color: var(--txt3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  overflow: hidden;
}

.n-topbar-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.n-topbar-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  animation: n-topbar-scroll 18s linear infinite;
  will-change: transform;
}

.n-topbar-group {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding-right: 24px;
}

.n-topbar a {
  color: var(--txt);
  font-weight: 600;
  text-decoration: none;
}

.n-topbar a:hover {
  color: var(--primary);
}

.n-topbar-dot {
  color: var(--dim);
}

@keyframes n-topbar-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.n-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(15, 17, 21, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--bdr);
}

.n-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.n-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.n-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.n-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: -0.02em;
}

.n-logo-accent {
  color: var(--primary);
}

.n-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.n-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt2);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.n-nav-link:hover {
  color: var(--txt);
  background: var(--sur);
}

.n-nav-link.active {
  color: var(--primary);
}

.n-dropdown {
  position: relative;
}

.n-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--txt2);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.n-dropdown-btn:hover {
  color: var(--txt);
  background: var(--sur);
}

.n-dropdown-btn i,
.n-dropdown-btn svg {
  width: 14px;
  height: 14px;
  color: var(--txt3);
  transition: transform 0.25s ease;
}

.n-dropdown:hover .n-dropdown-btn i,
.n-dropdown:hover .n-dropdown-btn svg {
  transform: rotate(180deg);
}

.n-dropdown-panel {
  position: absolute;
  top: 100%;
  left: -12px;
  padding-top: 8px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.2s ease-out;
}

.n-dropdown:hover .n-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.n-dropdown-card {
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  padding: 8px;
  min-width: 340px;
  display: grid;
  gap: 2px;
}

.n-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--r-sm);
  transition: background var(--transition);
}

.n-dropdown-item:hover {
  background: var(--sur2);
}

.n-dropdown-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--sur2);
  border: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.n-dropdown-item-icon i,
.n-dropdown-item-icon svg {
  width: 18px;
  height: 18px;
}

.n-dropdown-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 3px;
}

.n-dropdown-item p {
  font-size: 11px;
  color: var(--txt3);
  line-height: 1.5;
}

.n-dropdown-footer {
  padding: 12px 14px;
  margin-top: 4px;
  background: var(--bg2);
  border-radius: var(--r-sm);
  border: 1px solid var(--bdr);
  position: sticky;
  bottom: 0;
}

.n-dropdown-footer a {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition);
}

.n-dropdown-footer a:hover {
  color: #a78bfa;
}

.n-dropdown-footer a i,
.n-dropdown-footer a svg {
  width: 14px;
  height: 14px;
}

.n-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.n-lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.n-lang-switch a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--txt3);
  transition: color var(--transition);
}

.n-lang-switch a:hover,
.n-lang-switch a.active {
  color: var(--txt);
}

.n-lang-switch img {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  opacity: 0.8;
}

.n-lang-divider {
  width: 1px;
  height: 16px;
  background: var(--bdr);
}

.n-nav-sep {
  width: 1px;
  height: 24px;
  background: var(--bdr);
  margin: 0 4px;
}

.n-auth-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.n-auth-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt2);
  padding: 7px 16px;
  border-radius: var(--r-sm);
  transition: all var(--transition);
}

.n-auth-links a:hover {
  color: var(--txt);
}

.n-auth-links .n-btn-register {
  background: var(--primary);
  color: #fff;
  border: 1px solid transparent;
}

.n-auth-links .n-btn-register:hover {
  background: var(--primary-h);
}

.n-mobile-toggle {
  display: none;
  padding: 8px;
  color: var(--txt2);
  transition: color var(--transition);
}

.n-mobile-toggle:hover {
  color: var(--txt);
}

.n-mobile-toggle i {
  width: 22px;
  height: 22px;
}

@media (max-width: 1023px) {

  .n-nav-links,
  .n-nav-right {
    display: none;
  }

  .n-mobile-toggle {
    display: flex;
  }
}

/* ══════════════════════════════════════════
   MOBILE MENU
   ══════════════════════════════════════════ */
.n-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.n-mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.n-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.n-mobile-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  background: var(--sur);
  border-left: 1px solid var(--bdr);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  overflow-y: auto;
}

.n-mobile-menu.open .n-mobile-content {
  transform: translateX(0);
}

.n-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.n-mobile-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: var(--sur2);
  border: 1px solid var(--bdr);
  color: var(--txt2);
  transition: all var(--transition);
}

.n-mobile-close:hover {
  color: var(--txt);
  border-color: var(--bdr2);
}

.n-mobile-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--txt2);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  transition: all var(--transition);
  margin-bottom: 12px;
}

.n-mobile-link:hover,
.n-mobile-link.active {
  background: var(--sur2);
  color: var(--txt);
}

.n-mobile-link.active {
  color: var(--primary);
}

.n-mobile-section-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--mono);
  padding: 0 2px 10px;
}

.n-mobile-block {
  margin-bottom: 14px;
  padding: 14px;
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--bdr);
}

.n-mobile-sub-link {
  display: block;
  font-size: 13px;
  color: var(--txt2);
  padding: 11px 12px;
  border-radius: var(--r-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.n-mobile-sub-link:hover {
  background: var(--sur2);
  color: var(--txt);
  border-color: var(--bdr);
}

.n-mobile-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--bdr);
}

.n-mobile-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.n-mobile-lang a {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt3);
  transition: color var(--transition);
}

.n-mobile-lang a.active {
  color: var(--txt);
}

.n-mobile-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.n-mobile-auth a {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 11px;
  border-radius: var(--r-sm);
  transition: all var(--transition);
}

.n-mobile-auth .n-mob-login {
  background: var(--sur2);
  color: var(--txt);
  border: 1px solid var(--bdr);
}

.n-mobile-auth .n-mob-login:hover {
  border-color: var(--bdr2);
}

.n-mobile-auth .n-mob-register {
  background: var(--primary);
  color: #fff;
}

.n-mobile-auth .n-mob-register:hover {
  background: var(--primary-h);
}


/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.n-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.n-btn i,
.n-btn svg {
  width: 16px;
  height: 16px;
}

.n-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 0 var(--primary-glow);
}

.n-btn-primary:hover {
  background: var(--primary-h);
  box-shadow: 0 0 24px var(--primary-glow);
}

.n-btn-ghost {
  background: var(--sur2);
  color: var(--txt);
  border: 1px solid var(--bdr);
}

.n-btn-ghost:hover {
  border-color: var(--bdr2);
  background: var(--sur3);
}

.n-btn-outline {
  background: transparent;
  color: var(--txt2);
  border: 1px solid var(--bdr);
}

.n-btn-outline:hover {
  color: var(--txt);
  border-color: var(--bdr2);
}


/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.n-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.n-section-alt {
  background: var(--bg2);
}

.n-section-border {
  border-top: 1px solid var(--bdr);
}

.n-label {
  font-size: 10px;
  font-weight: 400;
  color: var(--txt3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--mono);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.n-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--bdr) 0%, transparent 80%);
}

.n-heading {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--txt);
  margin-bottom: 12px;
}

.n-heading em {
  font-style: italic;
  color: var(--txt2);
}

.n-heading .accent {
  color: var(--primary);
}

.n-subheading {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--txt2);
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
}

.n-section-header {
  margin-bottom: 48px;
}

.n-section-header.center {
  text-align: center;
}

.n-section-header.center .n-subheading {
  margin: 0 auto;
}

.n-section-header.center .n-label {
  justify-content: center;
}

.n-section-header.center .n-label::after {
  display: none;
}


/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.n-hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.n-hero-bg {
  position: absolute;
  pointer-events: none;
}

.n-hero-bg-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-glow);
  border-radius: 50%;
  filter: blur(120px);
  top: -100px;
  right: -200px;
}

.n-hero-bg-2 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(100px);
  bottom: -150px;
  left: -200px;
}

.n-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.n-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 11px;
  color: var(--txt2);
  font-family: var(--mono);
  letter-spacing: 0.06em;
  background: var(--sur);
  border: 1px solid var(--bdr);
  padding: 6px 14px;
  border-radius: 999px;
}

.n-hero-dot {
  width: 6px;
  height: 6px;
  background: #4d9e5a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(77, 158, 90, 0.3);
  animation: pulse-green 2.5s ease infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(77, 158, 90, 0.3);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(77, 158, 90, 0);
  }
}

.n-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--txt);
  margin-bottom: 20px;
}

.n-hero h1 .accent {
  color: var(--primary);
}

.n-hero-desc {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 520px;
}

.n-hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.n-hero-image {
  position: relative;
}

.n-hero-image img {
  border-radius: var(--r-lg);
  border: 1px solid var(--bdr);
  object-fit: cover;
  width: 100%;
  opacity: 0.8;
  filter: saturate(0.3);
  transition: all 0.5s ease;
}

.n-hero-image:hover img {
  opacity: 1;
  filter: saturate(0.6);
}

.n-hero-image-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(15, 17, 21, 0.7), transparent 60%, rgba(139, 92, 246, 0.06));
  pointer-events: none;
}

.n-hero-float {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--sur);
  border: 1px solid var(--bdr);
  padding: 14px 18px;
  border-radius: var(--r);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float-gentle 3s ease-in-out infinite;
}

@keyframes float-gentle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.n-hero-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.n-hero-float-icon i,
.n-hero-float-icon svg {
  width: 22px;
  height: 22px;
}

.n-hero-float-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.2;
}

.n-hero-float-lbl {
  font-size: 10px;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}


.n-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--bdr);
}

.n-mini-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.n-mini-stat-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.n-mini-stat-icon i,
.n-mini-stat-icon svg {
  width: 22px;
  height: 22px;
}

.n-mini-stat h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 4px;
}

.n-mini-stat p {
  font-size: 13px;
  color: var(--txt3);
  line-height: 1.5;
}


/* ══════════════════════════════════════════
   STATS GRID
   ══════════════════════════════════════════ */
.n-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
}

.n-stat {
  padding: 36px 24px;
  background: var(--sur);
  border-right: 1px solid var(--bdr);
  transition: background var(--transition);
}

.n-stat:last-child {
  border-right: none;
}

.n-stat:hover {
  background: var(--sur2);
}

.n-stat-value {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--txt);
  margin-bottom: 6px;
  font-family: var(--mono);
}

.n-stat-label {
  font-size: 12px;
  color: var(--txt2);
}


/* ══════════════════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════════════════ */
.n-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.n-product {
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.n-product:hover {
  border-color: var(--bdr2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.n-product h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
}

.n-product-desc {
  font-size: 13px;
  color: var(--txt3);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}

.n-product-price {
  margin-bottom: 24px;
}

.n-product-price-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--txt);
  letter-spacing: -0.03em;
}

.n-product-price-unit {
  font-size: 14px;
  color: var(--txt3);
  font-weight: 400;
  margin-left: 4px;
}

.n-product .n-btn {
  width: 100%;
  justify-content: center;
}


/* ══════════════════════════════════════════
   FEATURE BLOCKS (image + text side by side)
   ══════════════════════════════════════════ */
.n-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.n-feature-row:last-child {
  margin-bottom: 0;
}

.n-feature-row.reverse {
  direction: rtl;
}

.n-feature-row.reverse>* {
  direction: ltr;
}

.n-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  margin-bottom: 20px;
}

.n-feature-badge i,
.n-feature-badge svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.n-feature-badge span {
  font-size: 10px;
  font-weight: 700;
  color: var(--txt2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.n-feature-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--txt);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.n-feature-title .accent {
  color: var(--primary);
}

.n-feature-text {
  font-size: 15px;
  color: var(--txt2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.n-feature-list {
  margin-bottom: 24px;
}

.n-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--txt2);
  padding: 8px 0;
}

.n-feature-list li i,
.n-feature-list li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.n-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}

.n-feature-link:hover {
  color: #a78bfa;
}

.n-feature-link i,
.n-feature-link svg {
  width: 16px;
  height: 16px;
}

.n-feature-image {
  position: relative;
}

.n-feature-image-glow {
  position: absolute;
  inset: -40px;
  background: var(--primary-glow);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.n-feature-image-frame {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--bdr);
  overflow: hidden;
  background: var(--sur);
  padding: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.n-feature-image-frame img {
  border-radius: var(--r);
  width: 100%;
  object-fit: cover;
  filter: saturate(0.3);
  opacity: 0.8;
  border: 1px solid var(--bdr);
  transition: all 0.5s ease;
}

.n-feature-image-frame:hover img {
  filter: saturate(0.6);
  opacity: 1;
}

.n-feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.n-feature-card {
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 18px;
  transition: border-color var(--transition);
}

.n-feature-card:hover {
  border-color: var(--bdr2);
}

.n-feature-card i,
.n-feature-card svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}

.n-feature-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 4px;
}

.n-feature-card p {
  font-size: 11px;
  color: var(--txt3);
  line-height: 1.5;
}

.n-page {
  padding-top: 60px;
}

.n-page-header {
  padding: 80px 0 60px;
  position: relative;
  border-bottom: 1px solid var(--bdr);
  background: var(--bg2);
  overflow: hidden;
}

.n-page-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--txt);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.n-page-title .accent {
  color: var(--primary);
}

.n-page-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--txt2);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.n-page-header.center {
  text-align: center;
}

.n-content-box {
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.n-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.n-plan-card {
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.n-plan-card:hover {
  border-color: var(--bdr2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.n-plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.n-plan-card.highlight {
  border-color: var(--primary);
  box-shadow: 0 8px 32px var(--primary-glow);
}

.n-plan-card.highlight:hover {
  box-shadow: 0 16px 48px var(--primary-glow);
  border-color: var(--primary-h);
}

.n-plan-header {
  border-bottom: 1px solid var(--bdr);
  padding-bottom: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.n-plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--txt);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.n-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.n-plan-price-val {
  font-size: 42px;
  font-weight: 800;
  color: var(--txt);
  line-height: 1;
  font-family: var(--mono);
  letter-spacing: -0.04em;
}

.n-plan-price-unit {
  font-size: 14px;
  color: var(--txt3);
  font-weight: 500;
}

.n-plan-specs {
  margin-bottom: 32px;
  flex: 1;
}

.n-plan-spec {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--bdr);
}

.n-plan-spec:last-child {
  border-bottom: none;
}

.n-plan-spec i,
.n-plan-spec svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.n-plan-spec span {
  font-size: 14px;
  color: var(--txt2);
}

.n-plan-spec span b {
  color: var(--txt);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.n-footer {
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  padding: 64px 0 32px;
}

.n-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.n-footer-brand p {
  font-size: 13px;
  color: var(--txt3);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.n-footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.n-footer-social {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--sur);
  border: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt3);
  transition: all var(--transition);
}

.n-footer-social:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.n-footer-social i,
.n-footer-social svg {
  width: 16px;
  height: 16px;
}

.n-footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--txt);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.n-footer-col a {
  display: block;
  font-size: 13px;
  color: var(--txt3);
  padding: 5px 0;
  transition: color var(--transition);
}

.n-footer-col a:hover {
  color: var(--primary);
}

.n-footer-payment-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--bdr);
  margin-bottom: 10px;
}

.n-footer-payments {
  display: flex;
  gap: 6px;
}

.n-footer-payment-icon {
  width: 44px;
  height: 30px;
  border-radius: 4px;
  background: var(--sur);
  border: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.n-footer-payment-icon img {
  height: 100%;
  opacity: 0.4;
}

.n-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--bdr);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.n-footer-copy {
  font-size: 12px;
  color: var(--txt3);
}

.n-footer-legal {
  display: flex;
  gap: 24px;
}

.n-footer-legal a {
  font-size: 12px;
  color: var(--txt3);
  transition: color var(--transition);
}

.n-footer-legal a:hover {
  color: var(--txt2);
}


/* ══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.dropdown-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.2s ease-out;
}

.group:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 1023px) {
  .n-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .n-hero {
    padding: 64px 0 48px;
  }

  .n-hero-image {
    max-width: 480px;
    margin: 0 auto;
  }

  .n-feature-row {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 56px;
  }

  .n-feature-row.reverse {
    direction: ltr;
  }

  .n-feature-image {
    max-width: 480px;
    margin: 0 auto;
  }

  .n-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .n-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .n-stat:nth-child(2) {
    border-right: none;
  }

  .n-stat:nth-child(1),
  .n-stat:nth-child(2) {
    border-bottom: 1px solid var(--bdr);
  }

  .n-products {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .n-mini-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .n-hero h1 {
    font-size: 32px;
  }

  .n-hero-float {
    display: none;
  }

  .n-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .n-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .n-feature-cards {
    grid-template-columns: 1fr;
  }

  .n-section {
    padding: 48px 0;
  }

  .n-heading {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .n-container {
    padding: 0 16px;
  }

  .n-hero-btns {
    flex-direction: column;
  }

  .n-hero-btns .n-btn {
    width: 100%;
    justify-content: center;
  }

  .n-topbar {
    height: 28px;
  }

  .n-topbar-track {
    animation-duration: 18s;
  }
}

/* ══════════════════════════════════════════
   PANEL SCROLL SYSTEM
   ══════════════════════════════════════════ */
html.panel-page,
.panel-page body {
  height: 100%;
  height: 100dvh;
  overflow: hidden;
}

.panel-page main {
  display: contents;
}

.panel-page .n-footer {
  display: none;
}

#wrapper {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

#track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

#track.fast {
  transition-duration: .4s;
}

#track.instant {
  transition-duration: 0s;
}

.sec {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px 24px 0;
}

.sec.scrollable {
  align-items: stretch;
  padding: 0;
}

.si {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  padding: 80px 24px 40px;
  display: flex;
  align-items: center;
}

.si::-webkit-scrollbar {
  display: none;
}

.sw {
  max-width: 1080px;
  width: 100%;
  margin: auto;
}

.sec-bg-1 {
  background: var(--bg);
}

.sec-bg-2 {
  background: linear-gradient(180deg, #111115 0%, #121216 10%, #121216 90%, #0f1013 100%);
}

.sec-bg-3 {
  background: linear-gradient(180deg, #0f1013 0%, var(--bg) 10%, var(--bg) 90%, #101014 100%);
}

.sec-bg-4 {
  background: linear-gradient(180deg, #101014 0%, #0f1113 10%, #0f1113 90%, #0e1012 100%);
}

.sec-bg-5 {
  background: linear-gradient(180deg, #0e1012 0%, #111115 10%, #111115 90%, var(--bg) 100%);
}

.sec-hero-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1.12;
  color: var(--txt);
  margin-bottom: 18px;
}

.sec-hero-title em {
  font-style: italic;
  color: var(--primary);
}

.sec-hero-desc {
  font-size: clamp(13px, 1.3vw, 15px);
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 560px;
}

.lbl {
  font-size: 10px;
  font-weight: 400;
  color: var(--txt3);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--mono);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lbl::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--bdr) 0%, transparent 80%);
}

.sht {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  letter-spacing: -.035em;
  margin-bottom: 8px;
  color: var(--txt);
}

.sst {
  font-size: 13px;
  color: var(--txt2);
  font-weight: 300;
  margin-bottom: 36px;
}

.anim {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}

.anim.in {
  opacity: 1;
  transform: translateY(0);
}

.anim.in:nth-child(1) {
  transition-delay: 0s;
}

.anim.in:nth-child(2) {
  transition-delay: .06s;
}

.anim.in:nth-child(3) {
  transition-delay: .12s;
}

.anim.in:nth-child(4) {
  transition-delay: .18s;
}

.anim.in:nth-child(5) {
  transition-delay: .24s;
}

.anim.in:nth-child(6) {
  transition-delay: .3s;
}

.sh-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--txt3);
  letter-spacing: .1em;
}

.sh-hint.show {
  opacity: 1;
}

.sh-hint .sh-arr {
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--txt3);
  border-bottom: 1px solid var(--txt3);
  transform: rotate(45deg);
  animation: sh-bounce 2s ease infinite;
}

@keyframes sh-bounce {

  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    transform: rotate(45deg) translate(3px, 3px);
  }
}

#page-dim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

#page-dim.active {
  opacity: 1;
  pointer-events: auto;
}

.footer-ov {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--sur);
  border-top: 1px solid var(--bdr);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  max-height: 60vh;
  overflow-y: auto;
}

.footer-ov.open {
  transform: translateY(0);
}

.footer-body {
  padding: 32px 40px 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.fcls {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sur2);
  border: 1px solid var(--bdr);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--txt3);
  transition: all .2s;
  font-size: 0;
}

.fcls:hover {
  background: var(--sur3);
  color: var(--txt);
}

.fw {
  font-size: 22px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.flinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 20px;
}

.flinks a {
  font-size: 13px;
  color: var(--txt2);
  text-decoration: none;
  transition: color .2s;
  font-weight: 400;
}

.flinks a:hover {
  color: var(--txt);
}

.fdes {
  font-size: 11px;
  color: var(--txt3);
  margin-bottom: 8px;
}

.fdes a {
  color: var(--txt2);
  text-decoration: none;
}

.fcopy {
  font-size: 11px;
  color: var(--txt3);
}

.fcopy a {
  color: var(--txt2);
  text-decoration: none;
}

#ndots {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nd {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bdr);
  border: none;
  cursor: pointer;
  transition: all .25s;
  padding: 0;
}

.nd.on {
  background: var(--txt);
  box-shadow: 0 0 6px rgba(240, 240, 244, .3);
}

#ndots-labels {
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nd-label-item {
  height: 18px;
  display: flex;
  align-items: center;
}

.nd-label-item span {
  font-size: 10px;
  font-family: var(--mono);
  color: var(--txt3);
  letter-spacing: .06em;
  opacity: 0;
  transition: opacity .2s;
}

.nd-label-item span.current {
  opacity: 1;
  color: var(--txt2);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.plan {
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
  position: relative;
}

.plan:hover {
  border-color: var(--bdr2);
}

.plan.pop {
  border-color: var(--bdr2);
  background: var(--sur2);
}

.ptag {
  position: absolute;
  top: -9px;
  left: 18px;
  background: var(--sur2);
  border: 1px solid var(--bdr2);
  font-size: 9px;
  font-weight: 500;
  color: var(--txt2);
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--mono);
}

.pn {
  font-size: 11px;
  color: var(--txt2);
  margin-bottom: 8px;
}

.pp {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -.04em;
  margin-bottom: 18px;
  color: var(--txt);
  font-family: var(--mono);
}

.pp sub {
  font-size: 11px;
  font-weight: 300;
  color: var(--txt2);
  vertical-align: baseline;
}

.pf {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  flex: 1;
}

.pf li {
  font-size: 11px;
  color: var(--txt2);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--bdr);
}

.pf li:last-child {
  border-bottom: none;
}

.pf li::before {
  content: '\2014';
  color: var(--txt3);
  font-size: 9px;
  flex-shrink: 0;
}

@media(max-width:740px) {
  .plans {
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--bdr);
    border-radius: var(--r);
    overflow: hidden;
  }

  .plan {
    border: none;
    border-bottom: 1px solid var(--bdr);
    border-radius: 0;
    padding: 22px 18px;
  }

  .plan:last-child {
    border-bottom: none;
  }

  .plan.pop {
    border-color: transparent;
  }
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media(max-width:640px) {
  .info-row {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: border-color .2s;
}

.info-card:hover {
  border-color: var(--bdr2);
}

.info-card-icon {
  font-size: 18px;
  color: var(--dim);
  margin-bottom: 14px;
  display: block;
}

.info-card h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -.01em;
  color: var(--txt);
}

.info-card p {
  font-size: 12px;
  color: var(--txt2);
  line-height: 1.7;
  font-weight: 300;
}

.info-card a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  font-size: 12px;
}

.info-card a:hover {
  color: #a78bfa;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media(max-width:700px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-item {
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
  transition: border-color .2s;
}

.contact-item:hover {
  border-color: var(--primary);
  background: var(--sur2);
}

.cic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--primary-muted);
  margin: 0 auto 14px;
}

.cic .material-symbols-rounded {
  font-size: 18px;
  color: var(--primary);
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--txt);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 12px;
  color: var(--txt3);
  margin-bottom: 10px;
}

.clink {
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  font-family: var(--mono);
  transition: color .2s;
}

.clink:hover {
  color: var(--primary-h);
}

.feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bdr);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
}

@media(max-width:820px) {
  .feats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:500px) {
  .feats {
    grid-template-columns: 1fr;
  }
}

.feat {
  background: var(--sur);
  padding: 26px 22px;
  transition: background .2s;
}

.feat:hover {
  background: var(--sur2);
}

.fic {
  font-size: 16px;
  color: var(--dim);
  margin-bottom: 12px;
  display: block;
  user-select: none;
}

.feat h3 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
  letter-spacing: -.01em;
  color: var(--txt);
}

.feat p {
  font-size: 11px;
  color: var(--txt2);
  line-height: 1.7;
  font-weight: 300;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
}

.stat {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid var(--bdr);
  background: var(--sur);
}

.stat:last-child {
  border-right: none;
}

.stat-n {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--txt);
  font-family: var(--mono);
  letter-spacing: -.03em;
  margin-bottom: 4px;
}

.stat-l {
  font-size: 11px;
  color: var(--txt3);
  letter-spacing: .04em;
}

@media (max-width: 900px) {

  #ndots,
  #ndots-labels {
    display: none;
  }

  .sec {
    padding: 60px 16px 0;
  }

  .si {
    padding: 70px 16px 30px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: none;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--bdr);
  }

  .plans {
    grid-template-columns: 1fr;
  }

  .info-row {
    grid-template-columns: 1fr;
  }

  .feats {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-body {
    padding: 24px 20px 16px;
  }
}

#lg-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

#lg-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lg-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lg-dialog {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: calc(100vh - 48px);
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

#lg-modal.open .lg-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lg-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r-sm);
  color: var(--txt2);
  transition: all var(--transition);
  cursor: pointer;
  z-index: 10;
}

.lg-close-btn:hover {
  color: var(--txt);
  border-color: var(--bdr2);
  background: var(--sur2);
  transform: translateY(-1px);
}

.lg-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--bdr);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lg-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--txt);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lg-title i,
.lg-title svg {
  color: var(--primary);
  width: 22px;
  height: 22px;
}

.lg-subtitle {
  font-size: 13px;
  color: var(--txt2);
  font-weight: 300;
}

.lg-content-scroll {
  overflow-y: auto;
  padding: 24px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--bdr2) transparent;
}

.lg-disclaimer-box {
  background: var(--primary-muted);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.lg-disclaimer-icon {
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 1px;
}

.lg-disclaimer-icon i,
.lg-disclaimer-icon svg {
  width: 18px;
  height: 18px;
}

.lg-disclaimer-text {
  font-size: 12px;
  color: var(--txt2);
  line-height: 1.5;
  font-weight: 400;
}

.lg-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.lg-info-card {
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lg-info-label {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--txt3);
  font-family: var(--mono);
  letter-spacing: 0.08em;
}

.lg-info-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lg-node-select-wrap {
  position: relative;
  width: 100%;
}

.lg-select-node {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--txt);
  cursor: pointer;
  padding-right: 18px;
  appearance: none;
  -webkit-appearance: none;
}

.lg-node-select-wrap::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--txt2);
  pointer-events: none;
}

.lg-main-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}

.lg-panel-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lg-panel-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 20px;
}

.lg-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg);
  border: 1px solid var(--bdr);
  border-radius: var(--r-sm);
  padding: 3px;
}

.lg-tab-btn {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 8px;
  border-radius: 6px;
  color: var(--txt2);
  transition: all var(--transition);
  cursor: pointer;
}

.lg-tab-btn:hover {
  color: var(--txt);
  background: rgba(255, 255, 255, 0.02);
}

.lg-tab-btn.active {
  background: var(--sur2);
  color: var(--txt);
  border: 1px solid var(--bdr);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lg-form-row {
  display: flex;
  gap: 8px;
}

.lg-input-host {
  flex: 1;
  background: var(--sur);
  border: 1px solid var(--bdr);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--txt);
  font-family: var(--mono);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lg-input-help {
  font-size: 11px;
  color: var(--txt3);
  margin-top: 6px;
  line-height: 1.45;
  font-weight: 400;
}

.lg-input-host:focus {
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}

.lg-btn-detect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sur2);
  border: 1px solid var(--bdr);
  border-radius: var(--r-sm);
  padding: 0 14px;
  font-size: 11px;
  font-weight: 500;
  transition: all var(--transition);
  color: var(--txt2);
  cursor: pointer;
  white-space: nowrap;
}

.lg-btn-detect:hover {
  color: var(--txt);
  border-color: var(--bdr2);
  background: var(--sur3);
}

.lg-btn-run {
  font-size: 12px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  background: var(--primary);
  color: #fff;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lg-btn-run:hover {
  background: var(--primary-h);
  box-shadow: 0 0 16px var(--primary-glow);
  transform: translateY(-1px);
}

.lg-btn-run:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.lg-terminal-container {
  position: relative;
  background: #060709;
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lg-terminal-header {
  background: #0b0c0f;
  border-bottom: 1px solid #14161f;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.lg-terminal-dots {
  display: flex;
  gap: 6px;
}

.lg-terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.lg-terminal-dot.red {
  background: #ef4444;
}

.lg-terminal-dot.yellow {
  background: #f59e0b;
}

.lg-terminal-dot.green {
  background: #10b981;
}

.lg-terminal-title {
  font-size: 10px;
  color: var(--txt3);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}

.lg-terminal-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: #34d399;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-all;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

.lg-terminal-body::-webkit-scrollbar {
  width: 4px;
}

.lg-terminal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.lg-terminal-cursor {
  display: inline-block;
  width: 6px;
  height: 12px;
  background: #34d399;
  margin-left: 2px;
  animation: lg-cursor-blink 1s steps(2, start) infinite;
  vertical-align: middle;
}

@keyframes lg-cursor-blink {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.lg-speed-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt);
}

.lg-speed-sub {
  font-size: 11px;
  color: var(--txt2);
  line-height: 1.5;
}

.lg-speed-gauge-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0 0;
  position: relative;
}

.lg-gauge-svg {
  width: 200px;
  height: 165px;
}

.lg-gauge-track {
  fill: none;
  stroke: var(--bdr);
  stroke-width: 8;
  stroke-dasharray: 330;
  stroke-dashoffset: 0;
  stroke-linecap: round;
}

.lg-gauge-progress {
  fill: none;
  stroke: url(#lg-gauge-grad);
  stroke-width: 12;
  stroke-dasharray: 330;
  stroke-dashoffset: 330;
  transition: stroke-dashoffset 0.18s cubic-bezier(0.25, 1, 0.5, 1);
  stroke-linecap: round;
}

.lg-gauge-needle {
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  transform-origin: 100px 100px;
  transform: rotate(-135deg);
  transition: transform 0.18s cubic-bezier(0.25, 1, 0.5, 1);
}

.lg-gauge-center-pin {
  fill: var(--bg2);
  stroke: #fff;
  stroke-width: 2.5;
}

.lg-gauge-label {
  font-size: 8px;
  font-family: var(--mono);
  fill: var(--txt3);
  font-weight: 500;
  text-anchor: middle;
  dominant-baseline: middle;
  user-select: none;
}

.lg-speed-readout {
  margin-top: -22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.lg-gauge-num {
  font-size: 25px;
  font-family: var(--mono);
  font-weight: 300;
  color: var(--txt);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.lg-gauge-unit {
  font-size: 9px;
  color: var(--txt3);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lg-gauge-unit i,
.lg-gauge-unit svg {
  width: 10px;
  height: 10px;
  color: var(--primary);
  stroke-width: 3px;
}

.lg-progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: var(--bg);
  border: 1px solid var(--bdr);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 10px;
}

.lg-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--primary);
  transition: width 0.15s ease-out;
}

.lg-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--txt2);
  margin-top: 5px;
  font-family: var(--mono);
}

.lg-speed-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.lg-btn-speed {
  font-size: 11px;
  font-weight: 600;
  padding: 10px;
  border-radius: var(--r-sm);
  background: var(--sur2);
  border: 1px solid var(--bdr);
  color: var(--txt);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.lg-btn-speed:hover {
  background: var(--sur3);
  border-color: var(--bdr2);
  transform: translateY(-1px);
}

.lg-btn-speed:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.lg-btn-speed-size {
  font-size: 9px;
  color: var(--primary);
  font-family: var(--mono);
}

.lg-manual-downloads {
  margin-top: 12px;
  border-top: 1px solid var(--bdr);
  padding-top: 12px;
}

.lg-manual-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--txt3);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lg-manual-links {
  display: flex;
  gap: 16px;
}

.lg-manual-link {
  font-size: 11px;
  color: var(--primary);
  text-decoration: none;
  font-family: var(--mono);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.lg-manual-link:hover {
  color: #a78bfa;
  text-decoration: underline;
}

.lg-page-body {
  max-width: 960px;
  margin: 110px auto 60px;
  padding: 0 24px;
  width: 100%;
}

.lg-page-body .lg-dialog {
  max-height: none;
  transform: none;
  opacity: 1;
  box-shadow: none;
}

.lg-page-body .lg-close-btn {
  display: none;
}

@media (max-width: 768px) {
  .lg-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lg-main-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lg-dialog {
    max-height: calc(100vh - 32px);
  }

  .lg-content-scroll {
    padding: 16px 20px;
    gap: 16px;
  }

  .lg-header {
    padding: 18px 20px;
  }
}

@media (max-width: 480px) {
  .lg-info-grid {
    grid-template-columns: 1fr;
  }

  .lg-form-row {
    flex-direction: column;
  }

  .lg-btn-run {
    justify-content: center;
  }

  .lg-close-btn {
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
  }
}