/*
Theme Name: RouterStatus
Theme URI: https://routerstatus.com
Author: RouterStatus
Description: Official marketing theme for RouterStatus.com — unified router fleet management.
Version: 1.0.0
License: Proprietary
Text Domain: routerstatus
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy:       #2c3e50;
  --navy-dark:  #1a2634;
  --navy-mid:   #34495e;
  --blue:       #3498db;
  --blue-dark:  #2980b9;
  --blue-light: #eaf4fb;
  --green:      #2ecc71;
  --red:        #e74c3c;
  --amber:      #f1c40f;
  --gray-light: #f0f4f8;
  --gray-mid:   #ecf0f1;
  --text-dark:  #2c3e50;
  --text-mid:   #5d6d7e;
  --text-muted: #95a5a6;
  --white:      #ffffff;
  --border:     #dde4ec;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 8px rgba(44,62,80,.08);
  --shadow-md:  0 8px 30px rgba(44,62,80,.12);
  --transition: all .2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo svg { width: 36px; height: 36px; }
.logo-wordmark {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--navy);
  line-height: 1;
}
.logo-wordmark span { color: var(--blue); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--navy); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 4px;
  transition: var(--transition);
}
.btn-login:hover { color: var(--navy); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(52,152,219,.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--gray-light);
}
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-md); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gray-light);
  color: var(--navy);
  transform: translateY(-1px);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.8px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title span { color: var(--blue); }
.section-desc {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #f0f4f8 0%, #f8fafc 60%, #eaf4fb 100%);
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--blue); }
.hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-note svg { display: inline; vertical-align: middle; margin-right: 4px; }

/* Hero dashboard mockup */
.hero-visual { position: relative; }
.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mockup-bar {
  background: var(--navy);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dots .d1 { background: var(--red); }
.mockup-dots .d2 { background: var(--amber); }
.mockup-dots .d3 { background: var(--green); }
.mockup-url {
  flex: 1;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  color: rgba(255,255,255,.6);
  font-family: monospace;
}
.mockup-body { padding: 16px; }
.mockup-cve-alert {
  background: #fdedec;
  border: 1px solid #f1948a;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #922b21;
}
.mockup-cve-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.mockup-stat {
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}
.mockup-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.mockup-stat-num.online { color: var(--green); }
.mockup-stat-num.offline { color: var(--red); }
.mockup-stat-label { font-size: 10px; color: var(--text-muted); margin-top: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.mockup-devices { display: flex; flex-direction: column; gap: 8px; }
.mockup-device {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
}
.mockup-device-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mockup-device-dot.on { background: var(--green); }
.mockup-device-dot.off { background: var(--red); }
.mockup-device-name { font-weight: 600; color: var(--navy); flex: 1; }
.mockup-device-vendor {
  background: var(--gray-mid);
  color: var(--text-mid);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.mockup-device-renewal {
  font-size: 10px;
  color: var(--amber);
  font-weight: 600;
}

/* ============================================================
   PLATFORMS STRIP
   ============================================================ */
.platforms-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.platforms-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.platforms-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.platforms-list {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.platform-badge {
  background: var(--gray-light);
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  letter-spacing: -.1px;
}
.platform-badge.coming-soon {
  background: var(--blue-light);
  color: var(--blue);
  border-color: #b9ddf4;
  font-style: italic;
  font-weight: 600;
}

/* ============================================================
   FEATURES (4 PILLARS)
   ============================================================ */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #c5d8ea;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.feature-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}
.feature-card.highlight {
  background: var(--navy);
  border-color: var(--navy);
}
.feature-card.highlight .feature-icon { background: var(--blue); }
.feature-card.highlight .feature-title { color: var(--white); }
.feature-card.highlight .feature-desc { color: rgba(255,255,255,.72); }

/* ============================================================
   CVE SPOTLIGHT
   ============================================================ */
.cve-spotlight {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.cve-spotlight::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .07;
}
.cve-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cve-content .section-eyebrow { color: var(--blue); }
.cve-content .section-title { color: var(--white); font-size: 36px; }
.cve-content .section-desc { color: rgba(255,255,255,.72); }
.cve-bullets { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.cve-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.cve-bullet-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.cve-bullet-icon svg { width: 11px; height: 11px; }

/* CVE panel mockup */
.cve-panel {
  background: #1a2634;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}
.cve-panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cve-panel-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cve-live-badge {
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
}
.cve-updated { font-size: 11px; color: rgba(255,255,255,.35); }
.cve-list { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.cve-item {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border-left: 3px solid var(--red);
}
.cve-item.medium { border-left-color: var(--amber); }
.cve-item.low { border-left-color: var(--green); }
.cve-item-id {
  font-size: 11px;
  font-weight: 800;
  font-family: monospace;
  color: var(--red);
  margin-bottom: 3px;
}
.cve-item.medium .cve-item-id { color: var(--amber); }
.cve-item.low .cve-item-id { color: var(--green); }
.cve-item-desc {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  margin-bottom: 6px;
  line-height: 1.4;
}
.cve-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: rgba(255,255,255,.4);
}
.cve-score {
  background: rgba(231,76,60,.2);
  color: var(--red);
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 700;
}
.cve-item.medium .cve-score { background: rgba(241,196,15,.2); color: var(--amber); }
.cve-item.low .cve-score { background: rgba(46,204,113,.2); color: var(--green); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--gray-light); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--blue);
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -.2px;
}
.step-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--white); }

/* Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 32px 0 52px;
}
.toggle-label { font-size: 14px; font-weight: 600; color: var(--text-mid); }
.toggle-label.active { color: var(--navy); }
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--blue);
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch.monthly::after { left: 3px; }
.toggle-switch.annual::after { left: 25px; }
.save-badge {
  background: #eafaf1;
  color: #1e8449;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  border: 1px solid #a9dfbf;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pricing-card.popular {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: 0 0 0 4px var(--blue-light);
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.plan-tagline {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.4;
  min-height: 37px; /* reserve 2 lines so the price row aligns across cards */
}
.plan-price {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
  min-height: 58px; /* match .plan-price-custom so the divider aligns */
}
.plan-price sup { font-size: 22px; vertical-align: top; margin-top: 8px; font-weight: 700; }
.plan-price .price-mo { font-size: 16px; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.plan-period { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; min-height: 36px; /* reserve 2 lines (Enterprise period wraps) */ }
.plan-annual-note {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
  min-height: 18px;
}
.plan-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 20px;
}
.plan-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
}
.check-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 9px; height: 9px; }
.check-icon--blue { background: var(--blue); }
.plan-cta { width: 100%; justify-content: center; margin-top: auto; }

/* Enterprise/MSP — section sub-labels within pricing card */
.plan-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 10px;
}
.plan-section-label--msp {
  color: var(--blue);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(44,62,80,.15);
}
/* Only the main feature list grows; the white-label list stays its natural
   height so the white-label + add-on + button stack aligns across all cards. */
.plan-features--msp { flex: 0 0 auto; margin-bottom: 16px; }

/* Enterprise custom pricing block */
.plan-price-custom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 4px;
  min-height: 58px;
}
.custom-price-label {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}
.custom-price-sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.4' opacity='0.07'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.cta-banner-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 96px 24px;
}
.cta-banner h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  line-height: 1.6;
}
.cta-banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  padding: 56px 0 32px;
  color: rgba(255,255,255,.55);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-wordmark { color: var(--white); }
.footer-brand .logo-wordmark span { color: var(--blue); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 220px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.35); text-decoration: none; transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; max-width: 560px; margin: 0 auto; }
  .hero h1 { font-size: 42px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .cve-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-login { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 16px; }
  .section-title { font-size: 28px; }
  .section-pad { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner h2 { font-size: 30px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .mockup-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ----- Hardware add-on (pricing cards) ----- */
.plan-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 4px;
  padding: 12px 14px;
  border: 1px dashed #cdd6dd;
  border-radius: 8px;
  background: #f8fafb;
}
.plan-addon-info { display: flex; flex-direction: column; line-height: 1.3; }
.plan-addon-name { font-weight: 600; font-size: 13px; color: #2c3e50; }
.plan-addon-price { font-size: 12px; color: #7f8c8d; }
.plan-addon-qty { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.plan-addon-qty label { font-size: 12px; color: #7f8c8d; }
.addon-qty-input {
  width: 58px;
  padding: 6px 8px;
  border: 1px solid #cdd6dd;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  background: #fff;
  color: #2c3e50;
}
.addon-qty-input:focus { outline: none; border-color: #3498db; box-shadow: 0 0 0 2px rgba(52,152,219,.15); }

/* ============================================================
   DEEPER NETWORK MONITORING (hardware add-on)
   ============================================================ */
.deep-monitor { background: var(--gray-light); }
.deep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.deep-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: var(--transition);
}
.deep-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #c5d8ea;
}
.deep-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.deep-icon svg { width: 22px; height: 22px; }
.deep-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -.3px;
}
.deep-desc {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
}
.deep-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding: 26px 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.deep-cta-info { display: flex; flex-direction: column; gap: 4px; max-width: 780px; }
.deep-cta-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.16);
  padding: 3px 11px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.deep-cta-name { font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -.3px; }
.deep-cta-sub { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.55; margin-top: 2px; }
.deep-cta-price { display: flex; align-items: baseline; gap: 6px; }
.deep-cta-amount { font-size: 32px; font-weight: 800; color: var(--white); letter-spacing: -.5px; }
.deep-cta-unit { font-size: 15px; color: rgba(255,255,255,.7); }
@media (max-width: 900px) {
  .deep-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .deep-grid { grid-template-columns: 1fr; }
  .deep-cta { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   BETA SIGNUP (replaces pricing section)
   ============================================================ */
.beta-signup { background: var(--gray-light); }
.container-narrow { max-width: 760px; }
.beta-form-card {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}
.beta-form-card iframe { display: block; width: 100%; min-height: 620px; border: 0; }
@media (max-width: 600px) { .beta-form-card { padding: 8px; } }

/* ----- Beta signup modal ----- */
.beta-open-btn { margin-top: 32px; }
.beta-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.beta-modal[hidden] { display: none; }
.beta-modal-overlay { position: absolute; inset: 0; background: rgba(26,38,52,.6); }
.beta-modal-dialog {
  position: relative; z-index: 1; width: 100%; max-width: 680px; max-height: 90vh;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  overflow: hidden; display: flex; flex-direction: column;
}
.beta-modal-close {
  position: absolute; top: 6px; right: 12px; z-index: 2;
  background: transparent; border: none; font-size: 30px; line-height: 1;
  color: var(--text-muted); cursor: pointer; padding: 2px 8px;
}
.beta-modal-close:hover { color: var(--navy); }
.beta-modal-body { overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 14px; }
.beta-modal-body iframe { display: block; width: 100%; min-height: 560px; border: 0; }
@media (max-width: 600px) { .beta-modal { padding: 12px; } .beta-modal-body { padding: 8px; } }

/* =========================================================
   RS NEW FEATURES CSS  (AI Insights · Firmware · Reporting)
   Appended by deploy_marketing_features.sh — safe to re-run.
   ========================================================= */
.section-pad.alt { background: var(--gray-light); }

.ai-inner, .fw-inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ---- AI briefing mockup (dark, echoes the real app) ---- */
.ai-mockup, .fw-mockup { background: #1f2a37; border: 1px solid #2c3a4a; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 20px; color: #cdd9e5; }
.aim-head, .fwm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.aim-title { font-weight: 700; color: #fff; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.aim-spark { color: #3498db; }
.aim-badge { background: #3498db; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 6px; }
.aim-updated, .fwm-link { font-size: 12px; color: #8aa0b4; }
.aim-brief { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 14px; }
.aim-score { flex: 0 0 84px; width: 84px; height: 84px; border-radius: 50%; border: 5px solid #2ecc71; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.aim-score-num { font-size: 28px; font-weight: 800; color: #2ecc71; line-height: 1; }
.aim-score-den { font-size: 11px; color: #8aa0b4; }
.aim-text { font-size: 13.5px; line-height: 1.55; color: #b8c6d4; }
.aim-text b { color: #fff; }
.aim-actions { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0 0 14px; padding: 0; }
.aim-actions li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: #cdd9e5; background: #26323f; border-radius: 8px; padding: 9px 12px; }
.aim-dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 8px; }
.aim-dot.red { background: #e74c3c; } .aim-dot.blue { background: #3498db; } .aim-dot.amber { background: #f1c40f; }
.aim-risk { border-top: 1px solid #2c3a4a; padding-top: 12px; display: flex; flex-direction: column; gap: 9px; }
.aim-risk-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #fff; font-weight: 600; }
.aim-risk-why { color: #8aa0b4; font-size: 11.5px; font-weight: 400; margin-left: auto; }
.aim-pill { min-width: 30px; text-align: center; font-weight: 700; color: #fff; border-radius: 6px; padding: 2px 7px; font-size: 12.5px; }
.aim-pill.crit { background: #e74c3c; } .aim-pill.high { background: #e67e22; }

/* ---- Firmware mockup ---- */
.fwm-title { font-weight: 700; color: #fff; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.fwm-count { background: #e74c3c; color: #fff; font-size: 11px; font-weight: 700; padding: 1px 8px; border-radius: 10px; }
.fwm-rows { display: flex; flex-direction: column; gap: 8px; }
.fwm-row { display: flex; align-items: center; gap: 12px; background: #26323f; border-radius: 8px; padding: 10px 12px; }
.fwm-badge { min-width: 42px; text-align: center; font-size: 12px; font-weight: 700; color: #fff; border-radius: 6px; padding: 3px 6px; }
.fwm-badge.red { background: #e74c3c; } .fwm-badge.amber { background: #e67e22; } .fwm-badge.gray { background: #7f8c9b; }
.fwm-dev { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.fwm-dev b { color: #fff; font-size: 13.5px; }
.fwm-dev span { color: #8aa0b4; font-size: 11.5px; }
.fwm-ver { font-size: 12.5px; color: #9fb0c0; white-space: nowrap; }
.fwm-ver b { color: #fff; }
.fwm-adopt { margin-top: 14px; border-top: 1px solid #2c3a4a; padding-top: 14px; }
.fwm-adopt-top { display: flex; justify-content: space-between; font-size: 12.5px; color: #b8c6d4; margin-bottom: 7px; }
.fwm-adopt-pct { color: #2ecc71; font-weight: 700; }
.fwm-bar { height: 8px; border-radius: 5px; background: #26323f; overflow: hidden; }
.fwm-bar span { display: block; height: 100%; background: #2ecc71; }
.fwm-adopt-sub { font-size: 11.5px; color: #8aa0b4; margin-top: 8px; }

/* ---- Reporting grid ---- */
.rep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.rep-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); }
.rep-ic { width: 46px; height: 46px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.rep-ic svg { width: 22px; height: 22px; }
.rep-title { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.rep-desc { font-size: 14.5px; color: var(--text-mid); }

@media (max-width: 880px) {
  .ai-inner, .fw-inner { grid-template-columns: 1fr; gap: 36px; }
  .fw-mockup { order: -1; }
  .rep-grid { grid-template-columns: 1fr; }
}





/* RS-NF-START — managed block; the deploy replaces everything between these markers. */
/* =========================================================
   RS NEW FEATURES CSS  (AI Insights · Firmware · Reporting)
   Appended by deploy_marketing_features.sh — safe to re-run.
   ========================================================= */
.section-pad.alt { background: var(--gray-light); }

/* Offset in-page nav jumps so the sticky header doesn't cover the target. */
#platforms, #features, #ai-insights, #firmware, #reporting, #how-it-works, #deep-monitor, #beta { scroll-margin-top: 80px; }

.ai-inner, .fw-inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ---- AI briefing mockup (dark, echoes the real app) ---- */
.ai-mockup, .fw-mockup { background: #1f2a37; border: 1px solid #2c3a4a; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 20px; color: #cdd9e5; }
.aim-head, .fwm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.aim-title { font-weight: 700; color: #fff; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.aim-spark { color: #3498db; }
.aim-badge { background: #3498db; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 6px; }
.aim-updated, .fwm-link { font-size: 12px; color: #8aa0b4; }
.aim-brief { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 14px; }
.aim-score { flex: 0 0 84px; width: 84px; height: 84px; border-radius: 50%; border: 5px solid #2ecc71; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.aim-score-num { font-size: 28px; font-weight: 800; color: #2ecc71; line-height: 1; }
.aim-score-den { font-size: 11px; color: #8aa0b4; }
.aim-text { font-size: 13.5px; line-height: 1.55; color: #b8c6d4; }
.aim-text b { color: #fff; }
.aim-actions { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0 0 14px; padding: 0; }
.aim-actions li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: #cdd9e5; background: #26323f; border-radius: 8px; padding: 9px 12px; }
.aim-dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 8px; }
.aim-dot.red { background: #e74c3c; } .aim-dot.blue { background: #3498db; } .aim-dot.amber { background: #f1c40f; }
.aim-risk { border-top: 1px solid #2c3a4a; padding-top: 12px; display: flex; flex-direction: column; gap: 9px; }
.aim-risk-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #fff; font-weight: 600; }
.aim-risk-why { color: #8aa0b4; font-size: 11.5px; font-weight: 400; margin-left: auto; }
.aim-pill { min-width: 30px; text-align: center; font-weight: 700; color: #fff; border-radius: 6px; padding: 2px 7px; font-size: 12.5px; }
.aim-pill.crit { background: #e74c3c; } .aim-pill.high { background: #e67e22; }

/* ---- Firmware mockup ---- */
.fwm-title { font-weight: 700; color: #fff; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.fwm-count { background: #e74c3c; color: #fff; font-size: 11px; font-weight: 700; padding: 1px 8px; border-radius: 10px; }
.fwm-rows { display: flex; flex-direction: column; gap: 8px; }
.fwm-row { display: flex; align-items: center; gap: 12px; background: #26323f; border-radius: 8px; padding: 10px 12px; }
.fwm-badge { min-width: 42px; text-align: center; font-size: 12px; font-weight: 700; color: #fff; border-radius: 6px; padding: 3px 6px; }
.fwm-badge.red { background: #e74c3c; } .fwm-badge.amber { background: #e67e22; } .fwm-badge.gray { background: #7f8c9b; }
.fwm-dev { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.fwm-dev b { color: #fff; font-size: 13.5px; }
.fwm-dev span { color: #8aa0b4; font-size: 11.5px; }
.fwm-ver { font-size: 12.5px; color: #9fb0c0; white-space: nowrap; }
.fwm-ver b { color: #fff; }
.fwm-adopt { margin-top: 14px; border-top: 1px solid #2c3a4a; padding-top: 14px; }
.fwm-adopt-top { display: flex; justify-content: space-between; font-size: 12.5px; color: #b8c6d4; margin-bottom: 7px; }
.fwm-adopt-pct { color: #2ecc71; font-weight: 700; }
.fwm-bar { height: 8px; border-radius: 5px; background: #26323f; overflow: hidden; }
.fwm-bar span { display: block; height: 100%; background: #2ecc71; }
.fwm-adopt-sub { font-size: 11.5px; color: #8aa0b4; margin-top: 8px; }

/* ---- Bullet checklist (own class: dark text on light sections) ---- */
.nf-checks { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.nf-checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--text-mid); }
.nf-check-ic { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.nf-check-ic svg { width: 12px; height: 12px; }

/* ---- "See It in Action" — Coming Soon placeholder page ---- */
.siia-coming { padding: 120px 0 130px; }
.siia-coming .section-title { margin-top: 6px; }
.siia-coming .section-desc { margin-top: 16px; }

/* ---- Reporting grid ---- */
.rep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.rep-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); }
.rep-ic { width: 46px; height: 46px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.rep-ic svg { width: 22px; height: 22px; }
.rep-title { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.rep-desc { font-size: 14.5px; color: var(--text-mid); }

@media (max-width: 880px) {
  .ai-inner, .fw-inner { grid-template-columns: 1fr; gap: 36px; }
  .fw-mockup { order: -1; }
  .rep-grid { grid-template-columns: 1fr; }
}

/* RS-NF-END */




/* RS-SIIA-VIDEO-START — managed block; the deploy replaces everything between these markers. */
/* =========================================================
   "See It in Action" — video embed page
   Appended by deploy_siia_video.sh — safe to re-run.
   ========================================================= */
.siia-video-section { padding: 100px 0 130px; }
.siia-video-section .section-title { margin-top: 6px; }
.siia-video-section .section-desc { margin: 16px auto 0; max-width: 640px; }

.siia-video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 46px auto 0;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: #000;
}
.siia-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.siia-manual-download { margin-top: 22px; }
.siia-manual-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.siia-manual-link:hover { border-bottom-color: var(--blue); }
.siia-manual-link svg { width: 18px; height: 18px; flex: 0 0 18px; }

@media (max-width: 600px) {
  .siia-video-section { padding: 70px 0 90px; }
}
/* RS-SIIA-VIDEO-END */
