/* ============================================
   Network Enterprise Monitor — Marketing Site Styles
   ============================================ */

:root {
  /* Brand palette */
  --teal-950: #04120f;
  --teal-900: #082622;
  --teal-800: #0d3f39;
  --teal-700: #125a50;
  --teal-600: #17766c;
  --accent: #2dd4bf;
  --accent-light: #67e8d4;
  --accent-dark: #06b6a4;
  --accent-cyan: #22d3ee;
  --accent-violet: #818cf8;
  --glow: 0 0 32px rgba(45, 212, 191, 0.35);

  /* Neutrals */
  --ink: #101828;
  --ink-soft: #475467;
  --ink-faint: #667085;
  --bg: #ffffff;
  --bg-tint: #f4faf9;
  --border: #e4e9e8;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 16px 40px rgba(6, 33, 30, 0.16);
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Animated data-flow bar pinned to the very top of the viewport */
.scan-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 999;
  pointer-events: none;
  background: linear-gradient(90deg, var(--teal-800), var(--accent), var(--accent-cyan), var(--accent), var(--teal-800));
  background-size: 200% 100%;
  animation: scan-bar-move 7s linear infinite;
}
@keyframes scan-bar-move {
  to { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal-800);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-accent {
  background: var(--accent);
  color: var(--teal-950);
  box-shadow: 0 6px 18px rgba(45, 212, 191, 0.35);
}
.btn-accent:hover { background: var(--accent-light); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-outline {
  border-color: var(--teal-700);
  color: var(--teal-800);
  background: transparent;
}
.btn-outline:hover { background: var(--teal-800); color: #fff; }

.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--teal-900);
  flex-shrink: 0;
  min-width: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--teal-800), var(--accent-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.logo-word {
  font-size: clamp(0.68rem, 1.6vw, 0.95rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-nav ul {
  display: flex;
  gap: 32px;
}

.main-nav a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-cyan));
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--teal-800); }
.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--teal-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%2322d3ee' stroke-opacity='0.09' stroke-width='1'%3E%3Cpath d='M0 30h20M40 30h20M30 0v20M30 40v20'/%3E%3Ccircle cx='30' cy='30' r='2.5'/%3E%3Ccircle cx='0' cy='30' r='2'/%3E%3Ccircle cx='60' cy='30' r='2'/%3E%3Ccircle cx='30' cy='0' r='2'/%3E%3Ccircle cx='30' cy='60' r='2'/%3E%3C/g%3E%3C/svg%3E") repeat,
    radial-gradient(circle at 15% 0%, var(--teal-700), var(--teal-950) 65%);
  color: #fff;
  padding: 88px 0 100px;
  overflow: hidden;
  position: relative;
}

.network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-block;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.15rem);
  color: #fff;
  margin-bottom: 22px;
}

.accent-text {
  color: var(--accent-light);
  background: linear-gradient(90deg, var(--accent-light), var(--accent-cyan), var(--accent-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  to { background-position: -200% center; }
}

.hero-subhead {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 28px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.chip {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: var(--accent-light);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topology-art {
  width: 100%;
  max-width: 460px;
}

.pulse-line { animation: pulse-glow 2.4s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

.packet { filter: drop-shadow(0 0 4px currentColor); }
.packet-a {
  offset-path: path('M240,80 L240,180 L270,280');
  animation: travel 3.2s linear infinite;
}
.packet-b {
  offset-path: path('M240,80 L120,180 L60,280');
  animation: travel 3.6s linear infinite;
  animation-delay: 0.7s;
}
.packet-c {
  offset-path: path('M240,80 L360,180 L420,280');
  animation: travel 4s linear infinite;
  animation-delay: 1.4s;
}
@keyframes travel {
  0% { offset-distance: 0%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 33, 30, 0.85);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.hero-card-1 { top: 6%; right: 2%; }
.hero-card-2 { bottom: 10%; left: 0%; }

.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-ok { background: var(--accent); box-shadow: 0 0 0 4px rgba(45,212,191,0.25); }
.dot-warn { background: #fbbf24; box-shadow: 0 0 0 4px rgba(251,191,36,0.25); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}
.trust-item svg {
  width: 17px;
  height: 17px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

/* ---------- Mockup dashboards ---------- */
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mockup-card {
  background: var(--teal-950);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mockup-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 24px -4px rgba(45, 212, 191, 0.3);
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; }
.mockup-dot.r { background: #f87171; }
.mockup-dot.y { background: #fbbf24; }
.mockup-dot.g { background: #34d399; }
.mockup-url {
  margin-left: 8px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'SFMono-Regular', Consolas, monospace;
}

.mockup-body {
  padding: 18px;
  min-height: 190px;
  display: flex;
  align-items: center;
}
.mockup-body > * { width: 100%; }

.mockup-caption {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mockup-caption h3 { color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.mockup-caption p { color: rgba(255, 255, 255, 0.6); font-size: 0.82rem; }

/* Device health list */
.dv-list { display: flex; flex-direction: column; gap: 12px; }
.dv-row { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: rgba(255, 255, 255, 0.85); }
.dv-status { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dv-status.ok { background: #34d399; box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2); }
.dv-status.warn { background: #fbbf24; box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2); }
.dv-status.down { background: #f87171; box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2); }
.dv-name {
  flex: 0 0 92px;
  font-family: 'SFMono-Regular', Consolas, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dv-meta { font-size: 0.64rem; color: rgba(255, 255, 255, 0.4); flex-shrink: 0; }
.dv-bar { width: 36px; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, 0.1); overflow: hidden; flex-shrink: 0; }
.dv-bar span { display: block; height: 100%; background: var(--accent); }

/* NetFlow bars */
.nf-list { display: flex; flex-direction: column; gap: 12px; }
.nf-row { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; color: rgba(255, 255, 255, 0.8); }
.nf-label {
  flex: 0 0 92px;
  font-family: 'SFMono-Regular', Consolas, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nf-track { flex: 1; height: 8px; background: rgba(255, 255, 255, 0.08); border-radius: 4px; overflow: hidden; }
.nf-fill { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--accent-dark), var(--accent-cyan)); }
.nf-val { flex: 0 0 60px; text-align: right; font-family: 'SFMono-Regular', Consolas, monospace; color: var(--accent-light); }

/* Syslog terminal */
.log-lines { font-family: 'SFMono-Regular', Consolas, monospace; font-size: 0.68rem; line-height: 1.9; }
.log-line { display: flex; gap: 8px; white-space: nowrap; overflow: hidden; }
.log-time { color: rgba(255, 255, 255, 0.35); flex-shrink: 0; }
.log-level { font-weight: 700; width: 38px; flex-shrink: 0; }
.log-level.info { color: #5eead4; }
.log-level.warn { color: #fbbf24; }
.log-level.err { color: #f87171; }
.log-src { color: rgba(255, 255, 255, 0.55); flex: 0 0 82px; overflow: hidden; text-overflow: ellipsis; }
.log-msg { color: rgba(255, 255, 255, 0.85); overflow: hidden; text-overflow: ellipsis; }

/* Alerts list */
.al-list { display: flex; flex-direction: column; }
.al-item { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); font-size: 0.75rem; }
.al-item:first-child { padding-top: 0; }
.al-item:last-child { border-bottom: none; padding-bottom: 0; }
.al-badge {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  height: fit-content;
}
.al-badge.crit { background: rgba(248, 113, 113, 0.18); color: #f87171; }
.al-badge.warn { background: rgba(251, 191, 36, 0.18); color: #fbbf24; }
.al-badge.info { background: rgba(45, 212, 191, 0.18); color: var(--accent-light); }
.al-body { flex: 1; color: rgba(255, 255, 255, 0.85); }
.al-time { color: rgba(255, 255, 255, 0.4); font-size: 0.66rem; margin-top: 2px; }

/* Config backup diffs */
.cb-list { display: flex; flex-direction: column; }
.cb-item { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); font-size: 0.72rem; color: rgba(255, 255, 255, 0.85); }
.cb-item:first-child { padding-top: 0; }
.cb-item:last-child { border-bottom: none; padding-bottom: 0; }
.cb-dev { flex: 1; font-family: 'SFMono-Regular', Consolas, monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cb-diff { font-family: 'SFMono-Regular', Consolas, monospace; font-size: 0.68rem; flex-shrink: 0; }
.cb-diff .add { color: #34d399; }
.cb-diff .rem { color: #f87171; }
.cb-link { color: var(--accent-light); font-size: 0.68rem; text-decoration: underline; flex-shrink: 0; }

/* ---------- Section shell ---------- */
.section { padding: 96px 0; }
.section-tint { background: var(--bg-tint); }
.section-dark {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%232dd4bf' stroke-opacity='0.07' stroke-width='1'%3E%3Cpath d='M0 30h20M40 30h20M30 0v20M30 40v20'/%3E%3Ccircle cx='30' cy='30' r='2.5'/%3E%3Ccircle cx='0' cy='30' r='2'/%3E%3Ccircle cx='60' cy='30' r='2'/%3E%3Ccircle cx='30' cy='0' r='2'/%3E%3Ccircle cx='30' cy='60' r='2'/%3E%3C/g%3E%3C/svg%3E") repeat,
    linear-gradient(180deg, var(--teal-900), var(--teal-950));
  color: #fff;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); color: var(--teal-900); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-head-light h2 { color: #fff; }
.section-head-light p { color: rgba(255,255,255,0.75); }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Grid utility ---------- */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Feature cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 16px 34px -12px rgba(34, 211, 238, 0.4);
  border-color: rgba(45, 212, 191, 0.5);
}

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-tint);
  color: var(--teal-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.icon-badge svg { width: 22px; height: 22px; }
.card:hover .icon-badge {
  background: linear-gradient(135deg, var(--teal-800), var(--accent-cyan));
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.feature-card h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Visibility gap ---------- */
.gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.gap-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.gap-col:hover { transform: translateY(-4px); }
.gap-problem:hover { border-color: rgba(248,113,113,0.4); box-shadow: 0 16px 34px -14px rgba(248,113,113,0.35); }
.gap-solution { border-color: rgba(45,212,191,0.35); background: rgba(45,212,191,0.06); }
.gap-solution:hover { border-color: rgba(45,212,191,0.6); box-shadow: 0 16px 34px -14px rgba(45,212,191,0.45); }

.gap-col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: #fff;
}

.gap-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.gap-icon-bad { background: rgba(248, 113, 113, 0.18); color: #f87171; }
.gap-icon-good { background: rgba(45, 212, 191, 0.2); color: var(--accent-light); }

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.check-list-bad li::before { background: #f87171; }
.check-list-good li::before { background: var(--accent); }

/* ---------- How it works ---------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal-800);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 4px; }
.step p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Capabilities ---------- */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 48px;
  margin-bottom: 64px;
}

.capability {
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}
.capability h3 { font-size: 1.02rem; color: var(--teal-900); margin-bottom: 6px; }
.capability p { color: var(--ink-soft); font-size: 0.92rem; }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-left-color 0.25s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent-cyan);
}
.pillar-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.pillar p { font-size: 0.9rem; color: var(--ink-soft); }

.stat-callout {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(120deg, var(--teal-800), var(--teal-700));
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 40px;
  box-shadow: 0 0 0 1px rgba(45,212,191,0.15);
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent-light);
  flex-shrink: 0;
  text-shadow: 0 0 24px rgba(103, 232, 212, 0.55);
}
.stat-callout p { font-size: 1rem; color: rgba(255,255,255,0.9); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.price-card:not(.price-card-featured):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 212, 191, 0.4);
}

.price-card-featured {
  border-color: var(--accent);
  transform: scale(1.03);
  z-index: 1;
  animation: glow-pulse 3.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 20px 45px rgba(15, 76, 70, 0.16), 0 0 0 0 rgba(45, 212, 191, 0); }
  50% { box-shadow: 0 20px 45px rgba(15, 76, 70, 0.16), 0 0 32px 6px rgba(45, 212, 191, 0.3); }
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--teal-950);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.price-card h3 { font-size: 1.2rem; color: var(--teal-900); margin-bottom: 6px; }
.price-scope { color: var(--ink-faint); font-size: 0.88rem; margin-bottom: 18px; }

.price-amount { font-size: 2.1rem; font-weight: 800; color: var(--ink); }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--ink-faint); }
.price-alt { color: var(--ink-faint); font-size: 0.85rem; margin-bottom: 22px; }

.price-features { margin-bottom: 28px; flex-grow: 1; }
.price-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.price-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.8rem;
}

.price-card .btn { width: 100%; }

/* ---------- Comparison table ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

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

.compare-table thead th {
  background: var(--teal-900);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.compare-table tbody th { font-weight: 600; color: var(--ink); }
.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th { border-bottom: none; }

.highlight-row { background: rgba(45, 212, 191, 0.08); }
.highlight-row th, .highlight-row td { color: var(--teal-900); font-weight: 700; }

.table-footnote {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--ink-faint);
  text-align: center;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%2322d3ee' stroke-opacity='0.08' stroke-width='1'%3E%3Cpath d='M0 30h20M40 30h20M30 0v20M30 40v20'/%3E%3Ccircle cx='30' cy='30' r='2.5'/%3E%3Ccircle cx='0' cy='30' r='2'/%3E%3Ccircle cx='60' cy='30' r='2'/%3E%3Ccircle cx='30' cy='0' r='2'/%3E%3Ccircle cx='30' cy='60' r='2'/%3E%3C/g%3E%3C/svg%3E") repeat,
    radial-gradient(circle at 85% 20%, var(--teal-700), var(--teal-950) 70%);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}
.cta-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.cta-inner > p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; }

.mini-path {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.mini-path li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.mini-path span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.16);
  border: 1px solid rgba(45, 212, 191, 0.5);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  animation: mini-path-pulse 2.6s ease-in-out infinite;
}
.mini-path li:nth-child(2) span { animation-delay: 0.3s; }
.mini-path li:nth-child(3) span { animation-delay: 0.6s; }
@keyframes mini-path-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(45, 212, 191, 0); }
}

.cta-band .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-950);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.footer-brand .logo { color: #fff; margin-bottom: 10px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}
.footer-contact a:hover { color: var(--accent-light); }

.footer-bottom {
  padding: 22px 24px 28px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .capabilities-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card-featured { transform: none; order: -1; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto 24px; }
  .gap-grid { grid-template-columns: 1fr; }
  .mockup-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
  }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
  }

  .header-actions .btn-sm { display: none; }

  .section { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }

  .grid-4 { grid-template-columns: 1fr; }
  .stat-callout { flex-direction: column; text-align: center; gap: 14px; }
  .pillars { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .mockup-grid { grid-template-columns: 1fr; }
  .trust-strip .container { gap: 10px 20px; }
  .trust-item { font-size: 0.76rem; }
}

@media (max-width: 480px) {
  .chip-row { gap: 8px; }
  .hero-ctas, .cta-band .hero-ctas { flex-direction: column; }
  .btn { width: 100%; }
  .mini-path { gap: 20px; }
  .logo-word { display: none; }
}
