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

:root {
  --bg:        #080c12;
  --bg-mid:    #0c1420;
  --bg-hi:     #111c2e;
  --bg-card:   #0f1926;
  --border:    #1a2840;
  --border-hi: #24385a;
  --text:      #e4ecf4;
  --text-sec:  #8796a8;
  --text-dim:  #3d5068;
  --teal:      #40C8E0;
  --teal-dk:   #0C5880;
  --teal-glow: rgba(64,200,224,.18);
  --good:      #3fb950;
  --bad:       #f85149;
  --radius:    10px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}
h1, h2, h3, h4 {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity .15s, transform .1s;
  white-space: nowrap;
}
.btn:hover { opacity: .87; text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #07111e; }
.btn-secondary { background: transparent; border: 1px solid var(--border-hi); color: var(--text); }
.btn-outline { background: transparent; border: 1px solid var(--border-hi); color: var(--text-sec); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-lg { padding: 13px 28px; font-size: 15px; }

/* ── NAV ───────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,12,18,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.04);
  height: 66px;
  padding: 0 28px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .2s, background .2s;
}
nav.nav-scrolled {
  background: rgba(8,12,18,.97);
  border-bottom-color: var(--border);
}

.nav-brand-link { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-brand-link:hover { text-decoration: none; }
.nav-logo-wrap { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-left: 10px; }
.nav-logo { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(2px 3px 4px rgba(0,0,0,.55)) drop-shadow(0 0 6px rgba(34,187,221,.55)) drop-shadow(0 0 14px rgba(34,187,221,.35)); }
.nav-brand-wrap { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.nav-brand {
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  font-size: 22px; font-weight: 800; letter-spacing: 3px;
  color: #eef4fa;
}
.nav-brand .o { color: #44E0FF; }
.nav-brand-sub {
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); margin-top: 2px;
}

.nav-links {
  margin-left: 32px;
  display: flex; align-items: center; gap: 4px;
  flex: 1;
}
.nav-links a {
  color: var(--text-sec); text-decoration: none;
  padding: 6px 12px; border-radius: 6px; font-size: 13px; font-weight: 500;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); text-decoration: none; }

.nav-cta-group { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-demo-link { font-size: 13px; color: var(--text-sec); padding: 6px 12px; }
.nav-demo-link:hover { color: var(--text); text-decoration: none; }
.nav-cta-btn { padding: 8px 18px; font-size: 13px; }

/* Get-started dropdown */
.gs-wrap { position: relative; }
.gs-btn { cursor: pointer; }
.gs-dropdown {
  display: none; position: absolute; right: 0; top: calc(100% + 6px);
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  min-width: 220px; padding: 6px; z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
}
.gs-dropdown.open { display: block; }
.gs-dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 7px; text-decoration: none; color: var(--text);
}
.gs-dropdown a:hover { background: rgba(255,255,255,.07); }
.gs-dropdown a strong { display: block; font-size: 13px; font-weight: 700; }
.gs-dropdown a em { display: block; font-size: 11px; color: var(--text-sec); font-style: normal; }
.gs-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }

.nav-hamburger {
  display: none;
  background: none; border: 1px solid var(--border); border-radius: 6px;
  color: var(--text-sec); font-size: 16px; padding: 6px 10px; cursor: pointer;
  margin-left: auto;
}

.nav-mobile-menu {
  display: none; position: fixed; top: 66px; left: 0; right: 0; z-index: 99;
  background: var(--bg-mid); border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px; flex-direction: column; gap: 4px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { color: var(--text-sec); padding: 10px 12px; border-radius: 6px; font-size: 14px; }
.nav-mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,.05); text-decoration: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta-group { display: none; }
  .nav-hamburger { display: block; }
}

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 140px 32px 100px;
  text-align: center;
  background: radial-gradient(ellipse at 50% -10%, #0a2545 0%, var(--bg) 65%);
}
#particle-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }

.badge-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.badge {
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
  border: 1px solid rgba(64,200,224,.28); color: var(--teal);
  background: rgba(64,200,224,.06);
}

.hero h1 {
  font-size: 54px; font-weight: 800; letter-spacing: -1px; line-height: 1.08;
  margin-bottom: 20px;
}
.grad {
  background: linear-gradient(100deg, var(--teal) 0%, #0fa0c0 28%, #8be9ff 50%, #0fa0c0 72%, var(--teal) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShimmer 6s linear infinite;
}
@keyframes gradShimmer { to { background-position: 250% 0; } }
.hero-sub {
  font-size: 18px; color: var(--text-sec); max-width: 600px; margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-social-proof { font-size: 12px; color: var(--text-dim); letter-spacing: 0.5px; }

@media (max-width: 640px) {
  .hero { padding: 120px 20px 80px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
}

/* ── HERO animation layer ──────────────────────────────────────────────── */
/* Slow-drifting blurred gradient orbs behind the constellation + content. */
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: 0; border-radius: 50%;
  filter: blur(80px); opacity: .5; pointer-events: none;
}
.hero::before {
  width: 460px; height: 460px; top: -130px; left: -90px;
  background: radial-gradient(circle, rgba(64,200,224,.38), transparent 70%);
  animation: orbDrift1 19s ease-in-out infinite;
}
.hero::after {
  width: 380px; height: 380px; top: 30px; right: -70px;
  background: radial-gradient(circle, rgba(15,160,192,.30), transparent 70%);
  animation: orbDrift2 23s ease-in-out infinite;
}
@keyframes orbDrift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(70px,46px); } }
@keyframes orbDrift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-56px,34px); } }

/* Headline word rotator — sits on its own centered line, so width changes
   don't shift layout. Fades/slides out, swaps text, fades back in. */
.rotator { display: inline-block; transition: opacity .38s ease, transform .38s ease; }
.rotator.swap { opacity: 0; transform: translateY(12px); }

/* Staggered entrance for the hero content on first paint. */
.hero-inner > * { opacity: 0; transform: translateY(18px); animation: heroRise .7s cubic-bezier(.2,.7,.3,1) forwards; }
.hero-inner > .badge-row        { animation-delay: .05s; }
.hero-inner > h1                { animation-delay: .18s; }
.hero-inner > .hero-sub         { animation-delay: .32s; }
.hero-inner > .hero-cta         { animation-delay: .46s; }
.hero-inner > .hero-social-proof{ animation-delay: .60s; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

/* Light sweep across the primary CTA buttons on hover. */
.hero-cta .btn-primary { position: relative; overflow: hidden; }
.hero-cta .btn-primary::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.hero-cta .btn-primary:hover::after { animation: btnShine .75s ease; }
@keyframes btnShine { to { left: 150%; } }

/* Respect users who prefer reduced motion — freeze everything to a static state. */
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .grad { animation: none; }
  .hero-inner > * { opacity: 1; transform: none; animation: none; }
  .rotator, .rotator.swap { transition: none; opacity: 1; transform: none; }
  .hero-cta .btn-primary:hover::after { animation: none; }
}

/* ── STATS BAR ─────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 32px;
  display: flex; justify-content: center; gap: 56px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-size: 30px; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

/* ── SECTIONS ──────────────────────────────────────────────────────────── */
.section { padding: 80px 32px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-title {
  font-size: 38px; font-weight: 800; line-height: 1.1;
  letter-spacing: -0.5px; margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--text-sec); max-width: 600px;
  line-height: 1.65; margin-bottom: 48px;
}

@media (max-width: 640px) {
  .section { padding: 60px 20px; }
  .section-title { font-size: 28px; }
}

/* ── PRODUCT TABS ──────────────────────────────────────────────────────── */
.product-tabs {
  display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap;
}
.product-tab {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-mid); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 22px;
  cursor: pointer; transition: border-color .2s, background .2s;
  text-align: left; min-width: 220px;
}
.product-tab:hover { border-color: var(--border-hi); }
.product-tab.active { border-color: var(--teal); background: rgba(64,200,224,.05); }
.tab-icon { font-size: 24px; flex-shrink: 0; }
.tab-label { font-size: 15px; font-weight: 700; color: var(--text); display: block; line-height: 1.2; }
.tab-desc { font-size: 12px; color: var(--text-sec); display: block; margin-top: 2px; }

/* ── FEATURE PANEL ─────────────────────────────────────────────────────── */
.feature-panel { display: none; }
.feature-panel.active { display: block; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .2s;
}
.feature-card:hover { border-color: var(--border-hi); }
.feature-card-highlight { border-color: rgba(64,200,224,.3); background: rgba(64,200,224,.04); }
.feature-icon { font-size: 26px; margin-bottom: 12px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-sec); line-height: 1.65; }

.feature-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── WHY SECTION ───────────────────────────────────────────────────────── */
.why-section {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}
.why-section .section-inner { text-align: center; }
.why-section .section-title { margin-bottom: 14px; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; max-width: 1000px; margin: 40px auto 0; text-align: left;
}
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .2s;
}
.why-card:hover { border-color: var(--border-hi); }
.why-icon-wrap { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-sec); line-height: 1.65; }

/* ── PRICING ───────────────────────────────────────────────────────────── */
.pricing-section { background: var(--bg); }
.pricing-section .section-sub { margin-bottom: 32px; }

.pricing-toggle-row { display: flex; gap: 0; margin-bottom: 36px; background: var(--bg-mid); border: 1px solid var(--border); border-radius: 8px; padding: 4px; width: fit-content; }
.pricing-toggle {
  background: transparent; border: none; border-radius: 6px;
  padding: 9px 24px; font-size: 14px; font-weight: 600; cursor: pointer;
  color: var(--text-sec); transition: color .15s, background .15s;
}
.pricing-toggle.active { background: var(--teal); color: #07111e; }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start;
}
@media (max-width: 900px) { .pricing-layout { grid-template-columns: 1fr; } }

.pricing-card-main {
  background: var(--bg-card); border: 1px solid var(--teal);
  border-radius: 14px; padding: 36px;
  background: linear-gradient(135deg, rgba(64,200,224,.04) 0%, var(--bg-card) 100%);
}
.price-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.price-display { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 6px; }
.price-amount { font-size: 52px; font-weight: 800; line-height: 1; color: var(--text); }
.price-period { font-size: 16px; color: var(--text-sec); margin-bottom: 8px; }
.price-breakdown { font-size: 13px; color: var(--text-dim); margin-bottom: 28px; }

.price-calc { margin-bottom: 20px; }
.price-calc-label { font-size: 12px; color: var(--text-sec); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 12px; }
.calc-controls { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.calc-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border-hi); background: var(--bg-hi);
  color: var(--text); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, background .15s; line-height: 1; flex-shrink: 0;
}
.calc-btn:hover { border-color: var(--teal); background: rgba(64,200,224,.08); }
.calc-value-wrap { display: flex; align-items: baseline; gap: 8px; }
.calc-value { font-size: 28px; font-weight: 800; color: var(--teal); line-height: 1; }
.calc-unit { font-size: 14px; color: var(--text-sec); }
.calc-sub { font-size: 12px; color: var(--text-dim); }

.price-slider {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 2px;
  background: linear-gradient(to right, var(--teal) 0%, var(--border-hi) 0%);
  outline: none; margin-bottom: 6px;
}
.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal); cursor: pointer;
  border: 2px solid var(--bg);
  box-shadow: 0 0 8px rgba(64,200,224,.5);
}
.price-slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal); cursor: pointer; border: 2px solid var(--bg);
}
.price-slider-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-dim); }

.price-model-note {
  font-size: 12px; color: var(--text-dim); margin-bottom: 24px;
  padding: 10px 14px; background: var(--bg-hi); border-radius: 6px; border: 1px solid var(--border);
}
.price-includes { list-style: none; margin-bottom: 24px; }
.price-includes li {
  font-size: 13px; color: var(--text-sec); padding: 5px 0;
  display: flex; align-items: flex-start; gap: 10px;
}
.price-includes li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; }

.pricing-compare-side {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; position: sticky; top: 86px;
}
.compare-side-title { font-size: 12px; color: var(--text-dim); margin-bottom: 16px; line-height: 1.4; }
.compare-side-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px;
}
.compare-side-row:last-of-type { border-bottom: none; }
.mantis-row .compare-side-name { color: var(--teal); font-weight: 700; }
.mantis-row .compare-side-price { color: var(--teal); font-weight: 700; }
.compare-side-name { color: var(--text-sec); }
.compare-side-price { color: var(--text-dim); font-size: 12px; }
.compare-side-note { font-size: 11px; color: var(--text-dim); margin-top: 12px; line-height: 1.5; }

.pricing-footer-note { margin-top: 28px; font-size: 13px; color: var(--text-dim); text-align: center; }

/* ── COMPARE SECTION ───────────────────────────────────────────────────── */
.compare-section { background: var(--bg-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.mini-compare-tabs { display: flex; gap: 0; margin-bottom: 28px; border-bottom: 1px solid var(--border); }
.mini-tab {
  padding: 12px 20px; font-size: 13px; font-weight: 600;
  color: var(--text-dim); background: transparent; border: none;
  border-bottom: 2px solid transparent; cursor: pointer;
  transition: color .15s, border-color .15s;
}
.mini-tab:hover { color: var(--text); }
.mini-tab.active { color: var(--teal); border-bottom-color: var(--teal); }

.mini-tab-panel { display: none; }
.mini-tab-panel.active { display: block; }

.mini-compare-wrap { overflow-x: auto; }
.mini-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 560px; }
.mini-table th, .mini-table td {
  padding: 10px 14px; text-align: left;
  border-bottom: 1px solid var(--border); vertical-align: middle;
}
.mini-table thead th {
  background: var(--bg); font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--text-sec); text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
.mini-table tbody tr:hover td { background: rgba(255,255,255,.02); }
.col-mantis-head { background: rgba(64,200,224,.08) !important; color: var(--teal) !important; border-bottom-color: var(--teal) !important; }
.col-mantis { background: rgba(64,200,224,.03) !important; }
.yes { color: var(--good); font-weight: 700; }
.partial { color: #eab308; font-weight: 600; }
.no { color: var(--bad); }
.note { font-size: 11px; color: var(--text-dim); display: block; margin-top: 1px; }

/* ── DOCS SECTION ──────────────────────────────────────────────────────── */
.docs-section { }
.docs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.docs-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .2s;
}
.docs-card:hover { border-color: var(--border-hi); }
.docs-icon { font-size: 26px; margin-bottom: 12px; }
.docs-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.docs-card p { font-size: 13px; color: var(--text-sec); line-height: 1.65; margin-bottom: 14px; }
.docs-links { list-style: none; }
.docs-links li { font-size: 13px; padding: 3px 0; }
.docs-links li a { color: var(--teal); }
.docs-links li a:hover { text-decoration: underline; }

/* ── FAQ SECTION ───────────────────────────────────────────────────────── */
.faq-section { background: var(--bg-mid); border-top: 1px solid var(--border); }
.faq-inner { max-width: 780px; }
.faq-list { margin-top: 16px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; text-align: left; background: none; border: none;
  color: var(--text); font-size: 15px; font-weight: 600;
  cursor: pointer; gap: 16px; line-height: 1.4;
  transition: color .15s;
}
.faq-question:hover { color: var(--teal); }
.faq-arrow {
  font-size: 11px; color: var(--text-dim); flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--teal); }
.faq-item.open .faq-question { color: var(--teal); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 18px; }
.faq-answer p { font-size: 14px; color: var(--text-sec); line-height: 1.7; margin-bottom: 8px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin-left: 4px; }
.faq-answer strong { color: var(--text); }
code {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 12px; background: var(--bg-hi); border: 1px solid var(--border);
  border-radius: 4px; padding: 1px 5px; color: var(--teal);
}

/* ── CTA SECTION ───────────────────────────────────────────────────────── */
.cta-section {
  position: relative; text-align: center; overflow: hidden;
  padding: 100px 32px 90px;
  background: radial-gradient(ellipse at 50% 50%, rgba(12,88,128,.22) 0%, transparent 70%);
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(64,200,224,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-size: 40px; font-weight: 800; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 16px; color: var(--text-sec); max-width: 520px; margin: 0 auto 36px; line-height: 1.65; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

@media (max-width: 640px) { .cta-section h2 { font-size: 28px; } }

/* ── FOOTER ────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-mid); border-top: 1px solid var(--border);
  padding: 48px 32px 36px;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--text-sec); }
.footer-col a:hover { color: var(--text); text-decoration: none; }

/* ── FORM PAGES (rmm.html / ops.html) ─────────────────────────────────── */
.page-hero {
  padding: 120px 32px 60px; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, #0a2540 0%, var(--bg) 65%);
}
.page-hero .eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.page-hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 12px; line-height: 1.15; }
.page-hero h1 span { color: var(--teal); }
.page-hero p { color: var(--text-sec); font-size: 15px; max-width: 540px; margin: 0 auto; line-height: 1.7; }
.form-wrap { display: flex; align-items: flex-start; justify-content: center; padding: 48px 24px 72px; }
.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 40px; width: 100%; max-width: 500px;
}
.form-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-card .sub { color: var(--text-sec); font-size: 13px; margin-bottom: 28px; }
label { display: block; font-size: 12px; color: var(--text-sec); margin-bottom: 5px; margin-top: 16px; font-weight: 600; }
input, select, textarea {
  width: 100%; background: var(--bg-hi); border: 1px solid var(--border);
  border-radius: 7px; color: var(--text); font-size: 14px; padding: 10px 13px; outline: none;
  font-family: inherit;
}
input:focus, select:focus, textarea:focus { border-color: var(--teal); }
textarea { resize: vertical; min-height: 80px; }
.submit-btn { width: 100%; margin-top: 24px; padding: 12px; font-size: 15px; }
.success {
  display: none; background: rgba(63,185,80,.1); border: 1px solid rgba(63,185,80,.3);
  border-radius: 8px; padding: 18px; color: var(--good); font-size: 14px;
  text-align: center; margin-top: 20px;
}
.err-msg { color: var(--bad); font-size: 13px; margin-top: 10px; min-height: 18px; }
.back-link { display: block; text-align: center; margin-top: 18px; font-size: 13px; color: var(--text-sec); }

/* ── COMPARE PAGE ──────────────────────────────────────────────────────── */
.page-header {
  padding: 120px 32px 48px; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, #0a2540 0%, var(--bg) 65%);
}
.page-header .eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.page-header h1 { font-size: 40px; font-weight: 700; margin-bottom: 14px; line-height: 1.15; }
.page-header h1 span { color: var(--teal); }
.page-header p { color: var(--text-sec); font-size: 15px; max-width: 580px; margin: 0 auto; line-height: 1.7; }

.tab-nav {
  display: flex; justify-content: center; gap: 0;
  border-bottom: 1px solid var(--border); background: var(--bg-mid);
  padding: 0 32px; flex-wrap: wrap;
}
.tab-btn {
  padding: 14px 24px; font-size: 13px; font-weight: 600; color: var(--text-dim);
  border: none; background: transparent; cursor: pointer;
  border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
  white-space: nowrap; letter-spacing: 0.3px;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.table-wrap { overflow-x: auto; padding: 40px 24px 56px; max-width: 1200px; margin: 0 auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 640px; }
.compare-table th, .compare-table td {
  padding: 11px 16px; text-align: left;
  border-bottom: 1px solid var(--border); vertical-align: middle;
}
.compare-table thead th {
  background: var(--bg-mid); font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--text-sec); text-transform: uppercase;
  border-bottom: 2px solid var(--border); position: sticky; top: 0; z-index: 10;
}
.compare-table tbody tr:hover td { background: rgba(255,255,255,.02); }
.compare-table .feature-col { color: var(--text); font-size: 13px; max-width: 260px; }
.compare-table .category-row td {
  background: var(--bg-mid); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal);
  padding: 10px 16px; border-bottom: 1px solid var(--border);
}
.col-mantis { background: rgba(64,200,224,.04) !important; }
.col-mantis-head { background: rgba(64,200,224,.1) !important; color: var(--teal) !important; border-bottom-color: var(--teal) !important; }
.badge-mantis {
  display: inline-block; font-size: 10px; padding: 2px 8px; border-radius: 4px;
  background: rgba(64,200,224,.15); color: var(--teal); font-weight: 700;
  margin-left: 6px; vertical-align: middle;
}

.pricing-section { padding: 48px 32px 72px; max-width: 1140px; margin: 0 auto; }
.pricing-section h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.pricing-section .sub { color: var(--text-sec); font-size: 14px; margin-bottom: 36px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.price-card {
  background: var(--bg-mid); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; position: relative; transition: border-color .2s;
}
.price-card:hover { border-color: rgba(64,200,224,.4); }
.price-card.featured { border-color: var(--teal); background: rgba(64,200,224,.04); }
.featured-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #07111e; font-size: 10px; font-weight: 700;
  padding: 2px 12px; border-radius: 999px; white-space: nowrap; letter-spacing: 0.5px;
}
.price-product { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.price-name { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.price-main { font-size: 28px; font-weight: 800; color: var(--text); line-height: 1; }
.price-main .price-unit { font-size: 13px; font-weight: 400; color: var(--text-sec); }
.price-note { font-size: 11px; color: var(--text-dim); margin-top: 4px; margin-bottom: 16px; }
.price-features { list-style: none; }
.price-features li { font-size: 12px; color: var(--text-sec); padding: 4px 0; display: flex; gap: 8px; align-items: flex-start; }
.price-features li::before { content: "✓"; color: var(--teal); flex-shrink: 0; }

.verdict-section { background: var(--bg-mid); border-top: 1px solid var(--border); padding: 64px 32px; }
.verdict-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.verdict-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.verdict-vs { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 8px; }
.verdict-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.verdict-card p { font-size: 13px; color: var(--text-sec); line-height: 1.6; }
.verdict-win { color: var(--good); font-weight: 600; }

.cta-banner { text-align: center; padding: 64px 32px; }
.cta-banner h2 { font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.cta-banner p { color: var(--text-sec); font-size: 14px; margin-bottom: 28px; }

/* ── SLIDER TRACK FILL ─────────────────────────────────────────────────── */
.price-slider { cursor: pointer; }

/* ── SITE-WIDE MOTION (scroll reveal · card micro-interactions · page hero) ─ */
/* Scroll reveal — site.js adds .reveal, then .in once the element enters view.
   Class is added by JS, so no-JS users always see content. */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* Card hover micro-interactions — lift + teal glow (overrides the base
   border-only hover defined earlier). */
.feature-card, .feature-col, .price-card, .verdict-card {
  transition: border-color .2s ease, transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, background .2s ease, opacity .55s ease;
}
.feature-card:hover, .feature-col:hover, .price-card:hover, .verdict-card:hover {
  transform: translateY(-4px);
  border-color: rgba(64,200,224,.45);
  box-shadow: 0 14px 32px -14px rgba(0,0,0,.65), 0 0 0 1px rgba(64,200,224,.12);
}

/* Inner-page hero (.page-hero) — drifting orbs + animated gradient + entrance,
   mirroring the homepage hero (reuses the orbDrift/gradShimmer/heroRise keyframes). */
.page-hero { position: relative; overflow: hidden; }
.page-hero::before, .page-hero::after {
  content: ""; position: absolute; z-index: 0; border-radius: 50%;
  filter: blur(80px); opacity: .45; pointer-events: none;
}
.page-hero::before { width: 380px; height: 380px; top: -120px; left: -70px; background: radial-gradient(circle, rgba(64,200,224,.32), transparent 70%); animation: orbDrift1 19s ease-in-out infinite; }
.page-hero::after  { width: 320px; height: 320px; top: 10px; right: -60px; background: radial-gradient(circle, rgba(15,160,192,.26), transparent 70%); animation: orbDrift2 23s ease-in-out infinite; }
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 span {
  background: linear-gradient(100deg, var(--teal) 0%, #0fa0c0 28%, #8be9ff 50%, #0fa0c0 72%, var(--teal) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  color: transparent; animation: gradShimmer 6s linear infinite;
}
.page-hero .eyebrow, .page-hero h1, .page-hero p { opacity: 0; transform: translateY(16px); animation: heroRise .7s cubic-bezier(.2,.7,.3,1) forwards; }
.page-hero h1 { animation-delay: .12s; }
.page-hero p  { animation-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .feature-card:hover, .feature-col:hover, .price-card:hover, .verdict-card:hover { transform: none; }
  .page-hero::before, .page-hero::after, .page-hero h1 span { animation: none; }
  .page-hero .eyebrow, .page-hero h1, .page-hero p { opacity: 1; transform: none; animation: none; }
}

/* ── INTERACTIVE LIVE-DASHBOARD SHOWCASE (homepage) ────────────────────── */
.showcase-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.showcase-copy .section-sub { margin-bottom: 24px; }
.showcase-copy .hero-cta { justify-content: flex-start; margin: 0; }
@media (max-width: 880px) { .showcase-inner { grid-template-columns: 1fr; gap: 32px; } }

.dash {
  background: linear-gradient(180deg, var(--bg-mid), var(--bg-card));
  border: 1px solid var(--border-hi); border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.85), 0 0 0 1px rgba(64,200,224,.06);
  opacity: 0; transform: translateY(26px) scale(.985);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.dash.live { opacity: 1; transform: none; }
.dash-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: rgba(0,0,0,.28); border-bottom: 1px solid var(--border); }
.dash-bar .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dash-bar .dot.r { background: #ff5f56; } .dash-bar .dot.y { background: #ffbd2e; } .dash-bar .dot.g { background: #27c93f; }
.dash-title { font-size: 12px; color: var(--text-sec); margin-left: 6px; }
.dash-live { margin-left: auto; font-size: 11px; color: var(--good); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.dash-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--good); animation: livePulse 1.8s ease-out infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(63,185,80,.5); } 70% { box-shadow: 0 0 0 8px rgba(63,185,80,0); } 100% { box-shadow: 0 0 0 0 rgba(63,185,80,0); } }
.dash-body { padding: 18px; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
@media (max-width: 480px) { .kpis { grid-template-columns: repeat(2, 1fr); } }
.kpi { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 12px 8px; text-align: center; }
.kpi-num { font-size: 23px; font-weight: 800; color: var(--teal); line-height: 1; margin: 0; }
.kpi-label { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }
.dash-scan { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--text-sec); margin-bottom: 16px; }
.dash-scan span { white-space: nowrap; }
.scan-track { flex: 1; height: 6px; background: var(--bg); border-radius: 99px; overflow: hidden; }
.scan-track i { display: block; height: 100%; width: 32%; border-radius: 99px; background: linear-gradient(90deg, transparent, var(--teal), transparent); transform: translateX(-120%); }
.dash.live .scan-track i { animation: scanSweep 1.8s linear infinite; }
@keyframes scanSweep { from { transform: translateX(-120%); } to { transform: translateX(360%); } }
.sev { display: grid; gap: 9px; }
.sev-row { display: grid; grid-template-columns: 62px 1fr 42px; align-items: center; gap: 10px; font-size: 12px; color: var(--text-sec); }
.sev-row b { color: var(--text); text-align: right; font-variant-numeric: tabular-nums; font-weight: 700; }
.sev-bar { height: 8px; background: var(--bg); border-radius: 99px; overflow: hidden; }
.sev-bar i { display: block; height: 100%; width: 0; border-radius: 99px; transition: width 1.1s cubic-bezier(.2,.7,.3,1); }
.dash.live .sev-bar i { width: var(--w); }
.sev-bar i.c { background: #f85149; } .sev-bar i.h { background: #ff8c42; } .sev-bar i.m { background: #d29922; } .sev-bar i.l { background: #3fb950; }

@media (prefers-reduced-motion: reduce) {
  .dash { opacity: 1; transform: none; transition: none; }
  .dash-live i, .dash.live .scan-track i { animation: none; }
  .dash.live .sev-bar i { transition: none; }
}
