/* ═══════════════════════════════════════════════════════
   LimssShield Landing Page, Premium Dark Theme
   ═══════════════════════════════════════════════════════ */

:root {
  --bg: #030303;
  --bg-deep: #000000;
  --bg2: #070b12;
  --surface: rgba(14, 14, 16, 0.75);
  --surface2: rgba(24, 24, 27, 0.55);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text: #f4f4f5;
  --text2: #a1a1aa;
  --muted: #71717a;
  --accent: #e4e4e7;
  --accent-dim: rgba(255, 255, 255, 0.08);
  /* Wordmark : blanc → zinc, sans dominante couleur */
  --brand-hi: #fafafa;
  --brand-mid: #d4d4d8;
  --brand-lo: #a1a1aa;
  --cyan: #a1a1aa;
  --violet: #a78bfa;
  --green: #22c55e;
  --orange: #eab308;
  --pink: #f472b6;
  --red: #ef4444;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --mono: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', 'Roboto Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 16px 48px rgba(0, 0, 0, 0.38);
  --shadow-inset-top: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(255, 255, 255, 0.04), transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 30%, rgba(255, 255, 255, 0.02), transparent 48%),
    radial-gradient(ellipse 60% 45% at 0% 90%, rgba(0, 0, 0, 0.5), transparent 55%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main#main {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg-deep);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: left 0.2s var(--ease);
}
.skip-link:focus {
  left: 1rem;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.88;
}

/* ═══ SCROLL ANIMATIONS ═══ */
.anim-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}
.anim-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ NAVBAR ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  transition: all 0.35s var(--ease);
}

.nav.scrolled {
  background: rgba(3, 5, 8, 0.94);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  z-index: 101;
}

.nav-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  transition: border-color 0.3s var(--ease);
}

.nav-brand:hover .nav-logo-frame {
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s var(--ease);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
  mix-blend-mode: screen;
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.04);
}

.nav-title {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  line-height: 1.1;
}

.brand-wordmark {
  display: inline;
  font-weight: 900;
  font-size: 1.12rem;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.brand-limss {
  color: var(--text);
  font-weight: 900;
}

.brand-shield {
  font-weight: 900;
  background: linear-gradient(118deg, var(--brand-hi) 0%, var(--brand-mid) 45%, var(--brand-lo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-product {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2));
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--text);
}
.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.15rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text2) !important;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text) !important;
  transform: translateY(-1px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-mobile span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-mobile.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-mobile.open span:nth-child(2) {
  opacity: 0;
}
.nav-mobile.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(3, 5, 8, 0.97);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7rem;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-lead {
    max-width: 520px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1rem 0.45rem 0.55rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text2);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-inset-top);
}

.hero-badge-mark {
  width: 9px;
  height: 14px;
  border-radius: 2px 2px 5px 5px;
  background: linear-gradient(180deg, var(--brand-mid), var(--brand-lo));
  flex-shrink: 0;
}

.hero-badge-text {
  text-transform: none;
  letter-spacing: 0.04em;
}

.hero-kicker {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-wordmark {
  font-size: 1em;
  display: inline;
}

.hero-wordmark .brand-limss,
.hero-wordmark .brand-shield {
  font-size: inherit;
}

.grad {
  background: linear-gradient(118deg, var(--brand-hi) 0%, var(--brand-mid) 45%, var(--brand-lo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--text2);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: var(--font);
  position: relative;
  overflow: hidden;
}

.btn.large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn.primary {
  background: linear-gradient(155deg, #27272a 0%, #3f3f46 48%, #27272a 100%);
  color: #fafafa;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}
.btn.primary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  filter: brightness(1.06);
}
.btn.primary:active {
  transform: translateY(0);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn.ghost:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* ═══ HERO TRUST ═══ */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text2);
  font-weight: 500;
}

.trust-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.trust-icon.cyan {
  background: var(--text2);
  box-shadow: none;
}
.trust-icon.violet {
  background: var(--violet);
  box-shadow: 0 0 8px rgba(167, 139, 250, 0.3);
}
.trust-icon.green {
  background: var(--green);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.3);
}
.trust-icon.orange {
  background: var(--orange);
  box-shadow: 0 0 8px rgba(251, 146, 60, 0.3);
}

/* ═══ MOCK WINDOW ═══ */
.hero-visual {
  position: relative;
  z-index: 1;
}

.mock-window {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(22, 22, 28, 0.96), rgba(8, 8, 12, 0.98));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
}

.mock-dots {
  display: flex;
  gap: 6px;
}
.dot-red,
.dot-yellow,
.dot-green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red {
  background: #f87171;
}
.dot-yellow {
  background: #fbbf24;
}
.dot-green {
  background: #34d399;
}

.mock-url {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.mock-content {
  display: flex;
  min-height: 260px;
}

.mock-sidebar {
  width: 50px;
  padding: 0.75rem 0.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.mock-sb-item {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}
.mock-sb-item.active {
  background: var(--accent-dim);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mock-main {
  flex: 1;
  padding: 1rem;
}

.mock-stats {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mock-stat {
  flex: 1;
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  text-align: center;
}

.mock-stat-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
}

.mock-stat-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-chart {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.mock-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}

.mock-bar-v {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08));
  transform-origin: bottom;
  animation: barGrow 1.2s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 0.08s);
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.mock-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-row-h {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  width: 100%;
}

.mock-row-d {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  width: 100%;
}
.mock-row-d:nth-child(3) {
  width: 85%;
}
.mock-row-d:nth-child(4) {
  width: 70%;
}

/* ═══ STATS SECTION ═══ */
.stats-section {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-inset-top), 0 12px 48px rgba(0, 0, 0, 0.22);
}

.stat-block {
  text-align: center;
  min-width: 140px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #e4e4e7, #a1a1aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text2);
  font-weight: 500;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 600px) {
  .stats-row {
    gap: 1.5rem;
    padding: 1.5rem 1.1rem;
    border-radius: 16px;
  }
  .stat-divider {
    display: none;
  }
  .stat-block {
    min-width: 120px;
  }
  .stat-number {
    font-size: 2rem;
  }
}

/* ═══ SECTIONS ═══ */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015) 50%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem 0.35rem 0.75rem;
  border-radius: 6px;
  font-family: var(--mono);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid rgba(255, 255, 255, 0.28);
  color: var(--text2);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.15;
  text-wrap: balance;
}

.section-title.left {
  text-align: left;
}

.section-sub {
  color: var(--text2);
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ═══ FEATURES GRID ═══ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(20, 20, 24, 0.88), rgba(14, 14, 16, 0.72));
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.18);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}
.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
}

.feature-icon-wrap.cyan {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cyan);
}
.feature-icon-wrap.violet {
  background: rgba(167, 139, 250, 0.1);
  color: var(--violet);
}
.feature-icon-wrap.green {
  background: rgba(52, 211, 153, 0.1);
  color: var(--green);
}
.feature-icon-wrap.orange {
  background: rgba(251, 146, 60, 0.1);
  color: var(--orange);
}
.feature-icon-wrap.pink {
  background: rgba(244, 114, 182, 0.1);
  color: var(--pink);
}
.feature-icon-wrap.red {
  background: rgba(248, 113, 113, 0.1);
  color: var(--red);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
}

.feature-card p {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
}

/* ═══ STEPS ═══ */
.steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
}

.step-num {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.step-content p {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.6;
}

.step-content code {
  font-family: var(--mono);
  font-size: 0.82rem;
  padding: 0.15rem 0.4rem;
  border-radius: 5px;
  background: var(--accent-dim);
  color: var(--accent);
}

.step-line {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  margin-left: 21px;
}

/* ═══ ARCHITECTURE ═══ */
.arch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .arch-grid {
    grid-template-columns: 1fr;
  }
}

.arch-text {
  padding-top: 0.5rem;
}

.arch-desc {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.arch-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.arch-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text2);
  font-size: 0.92rem;
}

.arch-list li svg {
  flex-shrink: 0;
  color: var(--accent);
  stroke: var(--accent);
}

.code-window {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(5, 8, 16, 0.9);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.code-titlebar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}

.code-dots {
  display: flex;
  gap: 6px;
}
.code-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334155;
}
.code-dots span:nth-child(1) {
  background: #f87171;
}
.code-dots span:nth-child(2) {
  background: #fbbf24;
}
.code-dots span:nth-child(3) {
  background: #34d399;
}

.code-filename {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.code-body {
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.7;
  color: #c4c4cc;
}

.code-comment {
  color: var(--muted);
}
.code-key {
  color: var(--cyan);
}
.code-str {
  color: var(--green);
}
.code-num {
  color: var(--orange);
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tech-badge {
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text2);
  transition: all 0.2s;
}

.tech-badge:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ═══ COMPARISON TABLE ═══ */
.compare-table {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.2);
}

.compare-table th.compare-us {
  color: var(--accent);
  background: var(--accent-dim);
}

.compare-table td.compare-us {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr {
  transition: background 0.15s;
}
.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.check {
  color: var(--green);
  font-weight: 700;
}
.cross {
  color: var(--red);
  opacity: 0.6;
}

@media (max-width: 600px) {
  .compare-table th,
  .compare-table td {
    padding: 0.75rem 0.75rem;
    font-size: 0.82rem;
  }
}

/* ═══ FAQ ═══ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item[open] {
  border-color: rgba(255, 255, 255, 0.25);
}

.faq-item summary {
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color 0.2s;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--muted);
  transition:
    transform 0.3s var(--ease),
    color 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-answer code {
  font-family: var(--mono);
  font-size: 0.82rem;
  padding: 0.15rem 0.4rem;
  border-radius: 5px;
  background: var(--accent-dim);
  color: var(--accent);
}

/* ═══ DETECTIONS SHOWCASE ═══ */
.det-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .det-grid {
    grid-template-columns: 1fr;
  }
}

.det-category {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.det-category:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.det-cat-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}

.det-cat-head.critical {
  background: rgba(239, 68, 68, 0.08);
  color: #f87171;
}
.det-cat-head.high {
  background: rgba(251, 146, 60, 0.08);
  color: #fb923c;
}
.det-cat-head.medium {
  background: rgba(234, 179, 8, 0.08);
  color: #facc15;
}
.det-cat-head.low {
  background: rgba(96, 165, 250, 0.08);
  color: #60a5fa;
}

.det-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 1rem 1.25rem;
}

.det-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  font-family: var(--mono);
  transition: all 0.2s var(--ease);
}

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

.det-tag.critical {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}
.det-tag.high {
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.2);
  color: #fdba74;
}
.det-tag.medium {
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.2);
  color: #fde68a;
}
.det-tag.low {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text2);
}

/* ═══ CTA ═══ */
.cta-section {
  padding-bottom: 6rem;
}

.cta-card {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-card > p {
  color: var(--text2);
  max-width: 44ch;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
}

/* ═══ FOOTER ═══ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 720px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-brand {
    justify-content: center;
  }
}

.footer-brand-block {
  max-width: 36ch;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-wordmark-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.footer-wordmark-wrap .brand-wordmark {
  font-size: 1.05rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.55;
}

.footer-logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  mix-blend-mode: screen;
}

.footer-fivem {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: flex-end;
  align-content: start;
}

.footer-nav a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.footer-nav a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

::selection {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ═══ PRICING ═══ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.pricing-card {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(170deg, rgba(22, 22, 28, 0.92), rgba(12, 12, 14, 0.85));
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 55%);
  pointer-events: none;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(170deg, rgba(28, 28, 36, 0.95), rgba(12, 12, 16, 0.98));
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.35);
}

.pricing-card.popular::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  pointer-events: none;
}

.pricing-card.popular:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--accent);
}

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

.pricing-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.pricing-amount {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #fafafa, #a1a1aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-period {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-desc {
  color: var(--text2);
  font-size: 0.88rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text2);
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--green);
}

.pricing-features li.highlight {
  color: var(--text);
  font-weight: 600;
}

.pricing-features li.highlight svg {
  color: var(--accent);
}

.pricing-btn {
  width: 100%;
  padding: 0.9rem;
  font-size: 0.95rem;
  border-radius: 12px;
}

/* ═══ DESIGN POLISH ═══ */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 480px;
  background: radial-gradient(ellipse 55% 45% at 50% 45%, rgba(255, 255, 255, 0.03), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.mock-window {
  transition: all 0.4s var(--ease);
}
.mock-window:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 30px 100px rgba(0, 0, 0, 0.55);
  transform: translateY(-4px);
}

.pricing-card.popular {
  position: relative;
}
.pricing-card.popular::before {
  background: radial-gradient(circle at 50% 0%, rgba(167, 139, 250, 0.06), transparent 55%);
}

.cta-card {
  transition: all 0.35s var(--ease);
}

.cta-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.section[id] {
  scroll-margin-top: 5rem;
}

@media (prefers-reduced-motion: reduce) {
  .anim-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .anim-in.visible {
    transform: none;
  }
}
