/* ============================================================
   HX DESIGN SYSTEM
   Hexa IT — Master Stylesheet
   Single source of truth for all pages
   Bricks Builder / WPCodeBox2 compatible
   ============================================================ */


/* ========================================================
   HX: TOKENS
   ======================================================== */

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

:root {
  --primary: #0A6EFF;
  --primary-dark: #0050CC;
  --primary-light: #EEF4FF;
  --text-primary: #0D0D0D;
  --text-secondary: #4A5568;
  --text-light: #6B7280;
  --bg-white: #FFFFFF;
  --bg-soft: #F7F9FC;
  --bg-dark: #0B0F1A;
  --bg-mid: #0D1120;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --green: #10B981;
  --amber: #F59E0B;
  --red: #EF4444;
  --violet: #8B5CF6;
  --teal: #06B6D4;
}


/* ========================================================
   HX: Layout
   ======================================================== */

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


SERVICES ── */ .hx-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

ABOUT ── */ .hx-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

WHY CHOOSE US ── */ .hx-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

PROCESS ── */ .hx-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}


.hx-process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 44px);
  right: calc(16.66% + 44px);
  height: 2px;
  background: linear-gradient(90deg, rgba(10,110,255,0.6), rgba(10,110,255,0.1));
}


SERVICES GRID ══════════════════════════════ */ .hx-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

ABOUT ══════════════════════════════ */ .hx-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

WHY CHOOSE US ══════════════════════════════ */ .hx-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}


.hx-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}


SERVICE OVERVIEW ══════════════════════════════ */ .hx-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

KEY FEATURES GRID ══════════════════════════════ */ .hx-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

BENEFITS ══════════════════════════════ */ .hx-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

OVERVIEW ══════════════════════════════ */ .hx-overview-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}

KEY FEATURES ══════════════════════════════ */ .hx-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

BENEFITS ══════════════════════════════ */ .hx-benefits-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}


.hx-stat-row {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hx-stat-row__val {
  font-family: var(--font);
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
}

.hx-stat-row__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hx-stat-row__text {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.hx-stat-row__text strong {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}


OVERVIEW ══════════════════════════════ */ .hx-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}


.hx-lifecycle-row {
  display: flex;
  gap: 0;
  position: relative;
  margin-bottom: 0;
}


.hx-lifecycle-stages {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  width: 100%;
}

.hx-lifecycle-stages::before {
  content: '';
  position: absolute;
  left: 19px; top: 20px; bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(10,110,255,0.06));
  z-index: 0;
}


Overview stats */ .hx-overview-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 32px;
}


.hx-ov-stat {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px;
}

.hx-ov-stat__val {
  font-family: var(--font); font-size: 28px; font-weight: 800; color: var(--primary); letter-spacing: -0.04em; line-height: 1; margin-bottom: 5px;
}

.hx-ov-stat__label {
  font-family: var(--font); font-size: 13px; color: var(--text-light); line-height: 1.4;
}


KEY FEATURES ══════════════════════════════ */ /* Top row: 3 cards */ .hx-features-row-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

Bottom row: 2 wider cards */ .hx-features-row-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

Deployment split */ .hx-deploy-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 36px;
}

Overview stats */ .hx-ov-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px;
}

KEY FEATURES ══════════════════════════════ */ /* 2-col + 3-col stacked */ .hx-feat-row-a {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px;
}


.hx-feat-row-b {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}


.hx-stat-rows {
  display: flex; flex-direction: column; gap: 14px;
}


.hx-stat-row-item {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.hx-stat-row-item:hover {
  box-shadow: var(--shadow-md); border-color: rgba(10,110,255,0.15);
}

.hx-stat-row-item__icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hx-stat-row-item__icon svg {
  width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.hx-stat-row-item__divider {
  width: 1px; height: 36px; background: var(--border); flex-shrink: 0;
}

.hx-stat-row-item__val {
  font-family: var(--font); font-size: 26px; font-weight: 800; color: var(--primary); letter-spacing: -0.04em; line-height: 1; min-width: 60px;
}

.hx-stat-row-item__body h4 {
  font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px;
}

.hx-stat-row-item__body p {
  font-family: var(--font); font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin: 0;
}


.hx-health-rings {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}


.hx-ring-cell {
  padding: 22px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,0.05);
}

.hx-ring-cell:last-child {
  border-right: none;
}

.hx-ring-cell__val {
  font-family: var(--font); font-size: 16px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.02em; margin-bottom: 3px;
}

.hx-ring-cell__label {
  font-family: var(--font); font-size: 10px; color: #475569; text-transform: uppercase; letter-spacing: 0.06em;
}


KEY AREAS — two pillars ══════════════════════════════ */ .hx-areas-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}


/* ========================================================
   HX: Sections
   ======================================================== */

SECTION SHARED ── */ .hx-section {
  padding: 90px 24px;
}


.hx-section--soft {
  background: var(--bg-soft);
}

.hx-section--dark {
  background: var(--bg-dark);
}


.hx-section-label {
  font-family: var(--font); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px;
}


.hx-section-title {
  font-family: var(--font); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--text-primary); letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 18px;
}

.hx-section-title--light {
  color: #FFFFFF;
}


.hx-section-sub {
  font-family: var(--font); font-size: 17px; color: var(--text-secondary); line-height: 1.7; max-width: 580px;
}

.hx-section-sub--light {
  color: #94A3B8;
}


.hx-section-header {
  margin-bottom: 60px;
}

.hx-section-header--center {
  text-align: center;
}

.hx-section-header--center .hx-section-sub {
  margin: 0 auto;
}


.hx-section--mid {
  background: var(--bg-mid);
}


.hx-section-label--light {
  color: #60A5FA;
}


PROCESS ══════════════════════════════ */ .hx-process-outer {
  padding: 90px 24px;
  background: var(--bg-dark);
}

SHARED ── */ .hx-section {
  padding: 90px 24px;
}


.hx-section-label--red {
  color: #F87171;
}


/* ========================================================
   HX: Text
   ======================================================== */

.hx-hero__h1 {
  font-family: var(--font);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin: 0 auto 24px;
}

.hx-hero__h1 span {
  color: var(--primary);
}

.hx-hero__sub {
  font-family: var(--font); font-size: 17px; color: #94A3B8; line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}


.hx-cta h2 {
  font-family: var(--font); font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; color: #FFFFFF; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 14px;
}


.hx-hero h1 {
  font-family: var(--font); font-size: clamp(34px, 4.6vw, 54px); font-weight: 700; color: #FFFFFF; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px;
}

.hx-hero h1 em {
  font-style: normal; color: #F87171;
}

.hx-hero h1 .hx-hero__h1-muted {
  color: #475569;
}

.hx-hero h1 span {
  color: var(--primary);
}


/* ========================================================
   HX: Buttons
   ======================================================== */

.hx-btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hx-btn--primary {
  background: var(--primary); color: #fff; box-shadow: 0 4px 18px rgba(10,110,255,0.35);
}

.hx-btn--primary:hover {
  background: var(--primary-dark); box-shadow: 0 6px 24px rgba(10,110,255,0.45); transform: translateY(-1px);
}

.hx-btn--ghost {
  background: transparent; color: #CBD5E1; border: 1px solid rgba(255,255,255,0.15);
}

.hx-btn--ghost:hover {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3);
}

.hx-btn--outline {
  background: transparent; color: var(--primary); border: 1.5px solid var(--primary);
}

.hx-btn--outline:hover {
  background: var(--primary); color: #fff; transform: translateY(-1px);
}


BUTTONS ── */ .hx-btn {
  display: inline-block; font-family: var(--font); font-size: 15px; font-weight: 600; padding: 14px 32px; border-radius: 8px; text-decoration: none; transition: all 0.2s ease; cursor: pointer; border: none;
}


.hx-btn--white {
  background: #fff; color: var(--primary); box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.hx-btn--white:hover {
  background: #f0f4ff; transform: translateY(-1px);
}

.hx-btn--sm {
  font-size: 13px;
  padding: 9px 20px;
}


/* ========================================================
   HX: Navigation
   ======================================================== */

NAV BAR ══════════════════════════════ */ .hx-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,15,26,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}


.hx-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hx-nav__logo {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.hx-nav__logo span {
  color: var(--primary);
}

.hx-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.hx-nav__links a {
  font-family: var(--font);
  font-size: 14px;
  color: #64748B;
  text-decoration: none;
  transition: color 0.15s;
}

.hx-nav__links a:hover {
  color: #CBD5E1;
}

.hx-nav__cta {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}

.hx-nav__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}


/* ========================================================
   HX: Hero
   ======================================================== */

HERO ── */ .hx-hero {
  background: var(--bg-dark);
  padding: 120px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.hx-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(10,110,255,0.14) 0%, transparent 68%);
  pointer-events: none;
}

.hx-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(239,68,68,0.1); color: #F87171;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(239,68,68,0.2); margin-bottom: 24px;
}

.hx-hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px;
}

.hx-hero__trust {
  display: flex; flex-direction: column; gap: 11px;
}

.hx-hero__trust-text {
  font-family: var(--font); font-size: 13px; color: #64748B;
}

.hx-hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font);
  font-size: 12px;
  color: #94A3B8;
}

.hx-hero__trust-badge svg {
  flex-shrink: 0;
}


HERO ══════════════════════════════ */ .hx-hero {
  background: var(--bg-dark);
  padding: 100px 24px 90px;
  position: relative; overflow: hidden;
}


.hx-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:;
  linear-gradient(rgba(10,110,255,0.045) 1px, transparent 1px),;
  linear-gradient(90deg, rgba(10,110,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, black 20%, transparent 100%);
}

.hx-hero__glow-c {
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(10,110,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hx-hero__content {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 64px;
}

.hx-hero__eyebrow-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,110,255,0.3);
}


Social proof strip */ .hx-hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 0;
}


.hx-hero__proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hx-hero__proof-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hx-hero__proof-icon svg {
  width: 15px; height: 15px;
  stroke: #60A5FA;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hx-hero__proof-text {
  font-family: var(--font);
  font-size: 13px;
  color: #475569;
}

.hx-hero__proof-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.07);
}


Bottom dashboard strip */ .hx-hero__dash-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}


.hx-hero__dash-cell {
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hx-hero__dash-cell:last-child {
  border-right: none;
}

.hx-hero__dash-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(10,110,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hx-hero__dash-icon svg {
  width: 17px; height: 17px;
  stroke: #60A5FA;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hx-hero__dash-val {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hx-hero__dash-label {
  font-family: var(--font);
  font-size: 12px;
  color: #475569;
  margin-top: 3px;
}

.hx-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10,110,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hx-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: var(--container); margin: 0 auto;
  position: relative; z-index: 1;
}

.hx-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 24px;
}

.hx-hero__breadcrumb a {
  font-family: var(--font); font-size: 13px; color: #475569; text-decoration: none; transition: color 0.15s;
}

.hx-hero__breadcrumb a:hover {
  color: #94A3B8;
}

.hx-hero__breadcrumb span {
  font-size: 13px;
  color: #334155;
}

.hx-hero__breadcrumb-sep {
  font-size: 13px; color: #334155;
}

.hx-hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.25);
  animation: hx-pulse 2s ease-in-out infinite;
}

.hx-hero__trust-item {
  display: flex; align-items: center; gap: 10px;
}

.hx-hero__trust-icon {
  width: 20px; height: 20px; background: rgba(16,185,129,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hx-hero__trust-icon svg {
  width: 11px; height: 11px; stroke: #34D399; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; fill: none;
}


Hero right panel */ .hx-hero__panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
}


.hx-hero__panel-title {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hx-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:;
  linear-gradient(rgba(10,110,255,0.04) 1px, transparent 1px),;
  linear-gradient(90deg, rgba(10,110,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 30%, transparent 100%);
}

.hx-hero__glow {
  position: absolute; top: -180px; right: -120px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(10,110,255,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.hx-hero__breadcrumb-current {
  font-size: 13px; color: #64748B;
}

.hx-hero__lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10,110,255,0.05) 1px, transparent 1px),;
  linear-gradient(90deg, rgba(10,110,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 0%, transparent 100%);
}

.hx-hero__glow-left {
  position: absolute;
  top: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10,110,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hx-hero__glow-right {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(10,110,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}


Trust bar */ .hx-hero__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0;
}


.hx-hero__trust-item:last-child {
  border-right: none;
}

.hx-hero__trust-label {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: #E2E8F0;
  line-height: 1.35;
}

.hx-hero__trust-sub {
  font-family: var(--font);
  font-size: 12px;
  color: #475569;
  margin-top: 1px;
}

.hx-hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(10,110,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(10,110,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 75% 80% at 65% 35%, black 25%, transparent 100%);
}

.hx-hero__glow-2 {
  position: absolute; bottom: -160px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,110,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hx-hero__breadcrumb-sep, .hx-hero__breadcrumb-current {
  font-family: var(--font); font-size: 13px; color: #334155;
}

.hx-hero__eyebrow svg {
  width: 14px; height: 14px; stroke: #F87171; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; fill: none;
}


Diagonal stripe texture */ .hx-hero__texture {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(;
  -55deg,;
  transparent,;
  transparent 40px,;
  rgba(10,110,255,0.025) 40px,;
  rgba(10,110,255,0.025) 41px;
  );
  pointer-events: none;
}


.hx-hero__glow-tl {
  position: absolute; top: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,110,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hx-hero__glow-br {
  position: absolute; bottom: -180px; right: -80px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(6,182,212,0.07) 0%, transparent 65%);
  pointer-events: none;
}


Hex grid pattern */ .hx-hero__hex {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z' fill='none' stroke='rgba(10,110,255,0.045)' stroke-width='1'/%3E%3Cpath d='M28 66 L56 82 L56 100' fill='none' stroke='rgba(10,110,255,0.045)' stroke-width='1'/%3E%3Cpath d='M0 50 L0 100 M28 66 L28 100' fill='none' stroke='rgba(10,110,255,0.045)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 40%, black 20%, transparent 100%);
}


.hx-hero__glow-r {
  position: absolute; top: -140px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(239,68,68,0.08) 0%, rgba(10,110,255,0.07) 40%, transparent 70%);
  pointer-events: none;
}

.hx-hero__glow-l {
  position: absolute; bottom: -200px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,110,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}


/* ========================================================
   HX: Service Cards
   ======================================================== */

.hx-service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.hx-service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,110,255,0.18);
  transform: translateY(-4px);
}

.hx-service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.hx-service-card__icon svg {
  width: 23px; height: 23px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-service-card h3 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.hx-service-card p {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.hx-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hx-service-card:hover::after {
  transform: scaleX(1);
}

.hx-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s;
}

.hx-service-card__link:hover {
  gap: 10px;
}

.hx-service-card__link svg {
  width: 14px; height: 14px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.hx-service-card__link:hover svg {
  transform: translateX(3px);
}


Featured card — spans 2 cols */ .hx-service-card--featured {
  grid-column: span 2;
  background: var(--bg-dark);
  border-color: rgba(10,110,255,0.2);
  flex-direction: row;
  gap: 28px;
  align-items: flex-start;
}


.hx-service-card--featured::after {
  top: 0; bottom: auto;
  height: 3px;
}

.hx-service-card--featured h3 {
  color: #FFFFFF; font-size: 17px;
}

.hx-service-card--featured p {
  color: #64748B; font-size: 14px;
}

.hx-service-card--featured .hx-service-card__icon {
  background: rgba(10,110,255,0.15);
  border: 1px solid rgba(10,110,255,0.25);
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin-bottom: 0;
}

.hx-service-card--featured .hx-service-card__link {
  color: #60A5FA;
}

.hx-service-card--featured .hx-service-card__link svg {
  stroke: #60A5FA;
}

.hx-service-card--featured .hx-service-card__body {
  flex: 1;
}


/* ========================================================
   HX: Why Cards
   ======================================================== */

.hx-why-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s ease;
}

.hx-why-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,110,255,0.18);
  transform: translateY(-4px);
}

.hx-why-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.hx-why-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-why-card h3 {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.hx-why-card p {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ========================================================
   HX: Feature Cards
   ======================================================== */

.hx-feature-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: all 0.25s ease; position: relative; overflow: hidden;
}

.hx-feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}

.hx-feature-card:hover::before {
  transform: scaleX(1);
}

.hx-feature-card:hover {
  box-shadow: var(--shadow-lg); border-color: rgba(10,110,255,0.15); transform: translateY(-3px);
}

.hx-feature-card__icon {
  width: 50px; height: 50px; background: var(--primary-light); border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}

.hx-feature-card__icon svg {
  width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}

.hx-feature-card h3 {
  font-family: var(--font); font-size: 17px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; margin-bottom: 9px;
}

.hx-feature-card p {
  font-family: var(--font); font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 18px;
}

.hx-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hx-feature-card:hover::after {
  transform: scaleX(1);
}

.hx-feature-card__num {
  font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); opacity: 0.55; margin-bottom: 16px;
}

.hx-feature-card__tags {
  display: flex; flex-wrap: wrap; gap: 7px;
}


.hx-feature-tag {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  border: 1px solid rgba(10,110,255,0.12);
}


.hx-ftag {
  font-family: var(--font); font-size: 11px; font-weight: 500; padding: 4px 11px; background: var(--primary-light); color: var(--primary); border-radius: 100px; border: 1px solid rgba(10,110,255,0.12);
}


Wide bottom cards get extra detail */ .hx-feature-card--wide .hx-feature-card__body {
  display: flex; gap: 24px; align-items: flex-start;
}


.hx-feature-card--wide .hx-feature-card__icon {
  flex-shrink: 0; margin-bottom: 0;
}

.hx-feature-card--wide h3 {
  margin-top: 4px;
}


Wide two-col cards */ .hx-feature-card--wide {
  padding: 36px 36px;
}


.hx-feature-card--wide .hx-feature-card__inner {
  display: flex; gap: 26px; align-items: flex-start;
}


/* ========================================================
   HX: Benefit Cards
   ======================================================== */

.hx-benefit-card {
  background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; align-items: flex-start; gap: 18px; box-shadow: var(--shadow-sm); transition: all 0.2s ease;
}

.hx-benefit-card:hover {
  box-shadow: var(--shadow-md); border-color: rgba(10,110,255,0.15);
}

.hx-benefit-card__icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hx-benefit-card__icon svg {
  width: 23px; height: 23px; stroke: var(--primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.hx-benefit-card__stat {
  font-family: var(--font); font-size: 22px; font-weight: 800; color: var(--primary); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px;
}

.hx-benefit-card h3 {
  font-family: var(--font); font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; letter-spacing: -0.01em;
}

.hx-benefit-card p {
  font-family: var(--font); font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin: 0;
}


.hx-benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.hx-benefit-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(10,110,255,0.15);
}

.hx-benefit-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hx-benefit-item__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-benefit-item h3 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.hx-benefit-item p {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}


.hx-benefit-cards {
  display: flex; flex-direction: column; gap: 16px;
}


/* ========================================================
   HX: Process Steps
   ======================================================== */

.hx-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.hx-process-step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  box-shadow: 0 0 0 8px rgba(10,110,255,0.06);
  position: relative;
}

.hx-process-step h3 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.hx-process-step p {
  font-family: var(--font);
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.7;
}

.hx-process-step__bubble {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(10,110,255,0.3);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 0 0 8px rgba(10,110,255,0.05);
  position: relative;
}

.hx-process-step__bubble svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-process-step__num {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hx-process-step__label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 10px;
}


PROCESS SECTION ══════════════════════════════ */ .hx-process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}


.hx-process-track::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 44px);
  right: calc(16.66% + 44px);
  height: 2px;
  background: linear-gradient(90deg, rgba(10,110,255,0.5), rgba(10,110,255,0.1));
  pointer-events: none;
}


.hx-process-step__bubble-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ========================================================
   HX: How-It-Works Steps
   ======================================================== */

HOW IT WORKS ══════════════════════════════ */ .hx-how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}


.hx-how-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  position: relative;
}

.hx-how-step:not(:last-child) .hx-how-step__track::after {
  content: '';
  position: absolute;
  top: 72px;
  left: 35px;
  width: 2px;
  height: calc(100% - 32px);
  background: linear-gradient(to bottom, rgba(10,110,255,0.4), rgba(10,110,255,0.05));
}

.hx-how-step__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 48px;
}

.hx-how-step:last-child .hx-how-step__track {
  padding-bottom: 0;
}

.hx-how-step__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid rgba(10,110,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(10,110,255,0.06), var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.hx-how-step__circle svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-how-step__body {
  padding-top: 16px;
  padding-bottom: 48px;
}

.hx-how-step:last-child .hx-how-step__body {
  padding-bottom: 0;
}

.hx-how-step__num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.hx-how-step h3 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.hx-how-step p {
  font-family: var(--font);
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.7;
}

.hx-how-step__tag {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(10,110,255,0.1);
  color: #60A5FA;
  border: 1px solid rgba(10,110,255,0.2);
}


/* ========================================================
   HX: Lifecycle Stages
   ======================================================== */

.hx-lifecycle-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.hx-lifecycle-visual::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(10,110,255,0.08));
  z-index: 0;
}


.hx-lifecycle-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 0 28px 0;
  position: relative;
  z-index: 1;
}

.hx-lifecycle-item:last-child {
  padding-bottom: 0;
}

.hx-lifecycle-item__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(10,110,255,0.07);
}

.hx-lifecycle-item__dot svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-lifecycle-item__content h4 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
  padding-top: 8px;
}

.hx-lifecycle-item__content p {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}


Lifecycle strip */ .hx-lifecycle-strip {
  display: flex; flex-direction: column; gap: 0;
}


.hx-lifecycle-strip__label {
  font-family: var(--font); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 20px;
}


.hx-lc-stage {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hx-lc-stage:last-child {
  padding-bottom: 0;
}

.hx-lc-stage__dot {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--bg-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(10,110,255,0.06);
}

.hx-lc-stage__dot svg {
  width: 17px; height: 17px; stroke: var(--primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.hx-lc-stage__body {
  padding-top: 8px;
}

.hx-lc-stage__title {
  font-family: var(--font); font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px;
}

.hx-lc-stage__desc {
  font-family: var(--font); font-size: 13px; color: var(--text-secondary); line-height: 1.6;
}


/* ========================================================
   HX: Overview Layout
   ======================================================== */

.hx-overview__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.hx-overview__list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hx-overview__list-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(10,110,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.hx-overview__list-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-overview__list-text {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hx-overview__list-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hx-overview__copy h2 {
  margin-bottom: 18px;
}

.hx-overview__copy p {
  font-family: var(--font); font-size: 16px; color: var(--text-secondary); line-height: 1.78; margin-bottom: 18px;
}

.hx-overview__copy p:last-of-type {
  margin-bottom: 36px;
}

.hx-overview__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.hx-overview__stat {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.hx-overview__stat-val {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 5px;
}

.hx-overview__stat-label {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}

.hx-overview__body p {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 18px;
}

.hx-overview__body p:last-of-type {
  margin-bottom: 36px;
}

.hx-overview__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}


/* ========================================================
   HX: Benefits Layout
   ======================================================== */

.hx-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


Right side stat panel */ .hx-benefits-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.hx-benefits-panel__heading {
  font-family: var(--font);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hx-benefits-panel__sub {
  font-family: var(--font); font-size: 12px; color: #475569;
}


.hx-benefits-right p {
  font-family: var(--font); font-size: 16px; color: #94A3B8; line-height: 1.78; margin-bottom: 18px;
}

.hx-benefits-right p:last-of-type {
  margin-bottom: 36px;
}


Right: dark stat panel */ .hx-benefits-panel {
  background: var(--bg-dark);
  border: 1px solid rgba(10,110,255,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}


.hx-benefits-panel__header {
  padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hx-benefits-panel__title {
  font-family: var(--font); font-size: 13px; font-weight: 700; color: #FFFFFF; letter-spacing: -0.01em; margin-bottom: 4px;
}

.hx-benefits-panel__divider {
  height: 1px; background: rgba(255,255,255,0.05);
}


Left: headline + stat rows */ .hx-benefits-left h2 {
  margin-bottom: 14px;
}


.hx-benefits-left > p {
  font-family: var(--font); font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 40px;
}


/* ========================================================
   HX: About / Coverage
   ======================================================== */

.hx-about__visual {
  background: linear-gradient(135deg, #EEF4FF 0%, #E8F0FE 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(10,110,255,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hx-about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hx-about__copy p {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 18px;
}

.hx-about__copy p:last-of-type {
  margin-bottom: 36px;
}

.hx-about__commitments {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hx-about__commitment {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hx-about__commitment:hover {
  border-color: rgba(10,110,255,0.2);
  box-shadow: var(--shadow-sm);
}

.hx-about__commitment-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hx-about__commitment-icon svg {
  width: 18px; height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-about__commitment h4 {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.hx-about__commitment p {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}


Right visual panel */ .hx-about__panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.hx-about__panel-header {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}


.hx-coverage-map {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.hx-coverage-map__label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 20px;
}


.hx-coverage-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}


.hx-coverage-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px;
  padding: 12px 14px;
}


.hx-coverage-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hx-coverage-dot--on {
  background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}

.hx-coverage-dot--blue {
  background: var(--primary); box-shadow: 0 0 0 3px rgba(10,110,255,0.2);
}


.hx-coverage-item__text {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: #94A3B8;
}


.hx-about__stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hx-about__stat-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.hx-about__stat-val {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 5px;
}

.hx-about__stat-label {
  font-family: var(--font);
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}


Protection coverage bar */ .hx-coverage-bar {
  padding: 14px 18px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}


/* ========================================================
   HX: Stat Cards
   ======================================================== */

.hx-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
}

.hx-stat-card__num {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.hx-stat-card__label {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}

.hx-stat-card--accent {
  background: var(--primary);
}

.hx-stat-card--accent .hx-stat-card__num {
  color: #fff;
}

.hx-stat-card--accent .hx-stat-card__label {
  color: rgba(255,255,255,0.75);
}


/* ========================================================
   HX: CTA Section
   ======================================================== */

CTA SECTION ── */ .hx-cta {
  padding: 90px 24px;
  text-align: center;
  background: var(--bg-white);
}


.hx-cta__inner {
  background: var(--bg-dark); border-radius: 24px; padding: 80px 60px;
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
  border: 1px solid rgba(10,110,255,0.15);
  position: relative; overflow: hidden;
}

.hx-cta__inner::before {
  content: ''; position: absolute; bottom: -120px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(10,110,255,0.14) 0%, transparent 65%); pointer-events: none;
}

.hx-cta__eyebrow {
  display: inline-block; background: rgba(10,110,255,0.12); color: #60A5FA; font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; border: 1px solid rgba(10,110,255,0.22); margin-bottom: 20px;
}

.hx-cta p {
  font-family: var(--font); font-size: 16px; color: #94A3B8; line-height: 1.65; max-width: 440px;
}

.hx-cta__actions {
  display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; align-items: center; position: relative; z-index: 1;
}


CTA BAND ══════════════════════════════ */ .hx-cta {
  padding: 90px 24px;
  background: var(--bg-soft);
}


.hx-cta__inner::after {
  content: ''; position: absolute; top: -100px; left: -60px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(239,68,68,0.05) 0%, transparent 65%); pointer-events: none;
}

.hx-cta__note {
  font-family: var(--font); font-size: 12px; color: #475569; text-align: center;
}


CTA ══════════════════════════════ */ .hx-cta {
  padding: 90px 24px; background: var(--bg-soft);
}


/* ========================================================
   HX: Footer
   ======================================================== */

FOOTER ── */ .hx-footer {
  background: var(--bg-dark);
  padding: 56px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}


.hx-footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: var(--container); margin: 0 auto; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hx-footer__brand-name {
  font-family: var(--font); font-size: 20px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.02em; margin-bottom: 14px;
}

.hx-footer__brand-name span {
  color: var(--primary);
}

.hx-footer__brand-desc {
  font-family: var(--font); font-size: 14px; color: #64748B; line-height: 1.65; max-width: 260px;
}

.hx-footer__col-title {
  font-family: var(--font); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #94A3B8; margin-bottom: 18px;
}

.hx-footer__links {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}

.hx-footer__links a {
  font-family: var(--font); font-size: 14px; color: #64748B; text-decoration: none; transition: color 0.15s;
}

.hx-footer__links a:hover {
  color: #CBD5E1;
}

.hx-footer__bottom {
  max-width: var(--container); margin: 0 auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}

.hx-footer__copy {
  font-family: var(--font); font-size: 13px; color: #475569;
}

.hx-footer__legal {
  display: flex; gap: 20px;
}

.hx-footer__legal a {
  font-family: var(--font); font-size: 13px; color: #475569; text-decoration: none; transition: color 0.15s;
}

.hx-footer__legal a:hover {
  color: #94A3B8;
}


FOOTER ══════════════════════════════ */ .hx-footer {
  background: var(--bg-dark); padding: 56px 24px 32px; border-top: 1px solid rgba(255,255,255,0.05);
}


.hx-footer__logo {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.hx-footer__logo span {
  color: var(--primary);
}

.hx-footer__tagline {
  font-family: var(--font);
  font-size: 14px;
  color: #64748B;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 24px;
}

.hx-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hx-footer__badge {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  color: #475569;
  border: 1px solid rgba(255,255,255,0.07);
}


FOOTER PLACEHOLDER ══════════════════════════════ */ .hx-footer {
  background: var(--bg-dark);
  padding: 56px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}


/* ========================================================
   HX: Utilities & Tags
   ======================================================== */

.hx-pill {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  background: rgba(10,110,255,0.07);
  color: var(--primary);
  border-radius: 100px;
  border: 1px solid rgba(10,110,255,0.15);
}


.hx-response-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hx-response-card:last-of-type {
  margin-bottom: 0;
}

.hx-response-card__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hx-response-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hx-response-card__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hx-response-card__label {
  font-family: var(--font);
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 3px;
}

.hx-response-card__value {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: #E2E8F0;
}

.hx-response-card__badge {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}


.hx-badge--green {
  background: rgba(16,185,129,0.15);
  color: #34D399;
  border: 1px solid rgba(16,185,129,0.2);
}

.hx-badge--blue {
  background: rgba(10,110,255,0.15);
  color: #60A5FA;
  border: 1px solid rgba(10,110,255,0.2);
}

.hx-badge--amber {
  background: rgba(245,158,11,0.12);
  color: #FCD34D;
  border: 1px solid rgba(245,158,11,0.2);
}


Who it's for panel */ .hx-audience-panel {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}


.hx-audience-panel__title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.hx-audience-panel__sub {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 28px;
}


.hx-audience-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}


.hx-audience-tag {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  background: #fff;
  color: var(--text-secondary);
  border-radius: 100px;
  border: 1px solid var(--border);
}


.hx-audience-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}


.hx-audience-cta-text {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}


.hx-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hx-status-dot--green {
  background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
}

.hx-status-dot--amber {
  background: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,0.18);
}

.hx-status-dot--red {
  background: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.18);
}


.hx-pillar {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hx-pillar:hover {
  border-color: rgba(10,110,255,0.2);
  box-shadow: var(--shadow-sm);
}

.hx-pillar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 6px;
}

.hx-pillar__text {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.hx-pillar__sub {
  font-family: var(--font);
  font-size: 12px;
  color: var(--text-light);
  margin-top: 3px;
  line-height: 1.4;
}


.hx-task-badge {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.hx-task-badge--done {
  background: rgba(16,185,129,0.1);
  color: #10B981;
  border: 1px solid rgba(16,185,129,0.2);
}

.hx-task-badge--in-progress {
  background: rgba(10,110,255,0.1);
  color: #60A5FA;
  border: 1px solid rgba(10,110,255,0.2);
}

.hx-task-badge--scheduled {
  background: rgba(148,163,184,0.1);
  color: #94A3B8;
  border: 1px solid rgba(148,163,184,0.2);
}


.hx-delta--up {
  color: #10B981;
}

.hx-delta--down {
  color: #EF4444;
}


.hx-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
}


.hx-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(10,110,255,0.25);
  transition: background 0.2s;
  position: relative;
}

.hx-bar:hover {
  background: rgba(10,110,255,0.5);
}

.hx-bar--active {
  background: var(--primary);
}


.hx-bar-labels {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}


.hx-bar-label {
  flex: 1;
  text-align: center;
  font-family: var(--font);
  font-size: 10px;
  color: #334155;
}


.hx-sla-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hx-sla-row__label {
  font-family: var(--font);
  font-size: 12px;
  color: #64748B;
  width: 110px;
  flex-shrink: 0;
}

.hx-sla-row__bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.hx-sla-row__fill {
  height: 100%;
  border-radius: 100px;
  background: var(--primary);
}

.hx-sla-row__fill--green {
  background: #10B981;
}

.hx-sla-row__fill--amber {
  background: #F59E0B;
}

.hx-sla-row__pct {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: #CBD5E1;
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}


.hx-status-badge {
  font-family: var(--font); font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 100px; white-space: nowrap;
}

.hx-status-badge--secure {
  background: rgba(16,185,129,0.12);  color: #34D399; border: 1px solid rgba(16,185,129,0.2);
}

.hx-status-badge--patching {
  background: rgba(10,110,255,0.12);  color: #60A5FA; border: 1px solid rgba(10,110,255,0.2);
}

.hx-status-badge--warning {
  background: rgba(245,158,11,0.12);  color: #FCD34D; border: 1px solid rgba(245,158,11,0.2);
}

.hx-status-badge--offline {
  background: rgba(239,68,68,0.1);    color: #F87171; border: 1px solid rgba(239,68,68,0.2);
}


.hx-score-row {
  display: flex; align-items: center; gap: 12px;
}

.hx-score-row__label {
  font-family: var(--font); font-size: 12px; color: #64748B; width: 120px; flex-shrink: 0;
}

.hx-score-row__bar {
  flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden;
}

.hx-score-row__fill {
  height: 100%; border-radius: 100px;
}

.hx-score-row__val {
  font-family: var(--font); font-size: 12px; font-weight: 700; color: #CBD5E1; width: 32px; text-align: right; flex-shrink: 0;
}


.hx-console-metric {
  padding: 14px 12px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.hx-console-metric:last-child {
  border-right: none;
}

.hx-console-metric__val {
  font-size: 18px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.03em; line-height: 1;
}

.hx-console-metric__label {
  font-size: 10px; color: #334155; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em;
}


.hx-live-pip {
  width: 6px; height: 6px; border-radius: 50%; background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,0.2); animation: hx-blink 2s ease-in-out infinite;
}


.hx-status-pip {
  width: 6px; height: 6px; border-radius: 50%; background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,0.2); animation: hx-blink 2s ease-in-out infinite;
}


.hx-trend-tag {
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 100px;
}

.hx-trend-tag--up {
  background: rgba(16,185,129,0.1); color: #34D399; border: 1px solid rgba(16,185,129,0.2);
}


Principles list */ .hx-principles {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px;
}


.hx-principle {
  display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color 0.2s, box-shadow 0.2s;
}

.hx-principle:hover {
  border-color: rgba(10,110,255,0.18); box-shadow: var(--shadow-sm);
}

.hx-principle__icon {
  width: 36px; height: 36px; border-radius: 9px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hx-principle__icon svg {
  width: 18px; height: 18px; stroke: var(--primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.hx-principle h4 {
  font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px;
}

.hx-principle p {
  font-family: var(--font); font-size: 13px; color: var(--text-light); line-height: 1.5; margin: 0;
}


.hx-check-row {
  display: flex; align-items: center; gap: 10px;
}


.hx-check-icon {
  width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hx-check-icon--pass {
  background: rgba(16,185,129,0.15);
}

.hx-check-icon--pass svg {
  width: 10px; height: 10px; stroke: #34D399; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; fill: none;
}

.hx-check-icon--warn {
  background: rgba(245,158,11,0.15);
}

.hx-check-icon--warn svg {
  width: 10px; height: 10px; stroke: #FCD34D; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; fill: none;
}


.hx-check-text {
  font-family: var(--font); font-size: 12px; color: #64748B;
}


/* ========================================================
   HX: Page — Hardware & Asset Management
   ======================================================== */

Hero right — asset register visual */ .hx-asset-register {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}


.hx-asset-register__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.hx-asset-register__title {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hx-asset-register__count {
  font-family: var(--font);
  font-size: 12px;
  color: #475569;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 4px 10px;
  border-radius: 100px;
}


.hx-asset-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  margin-bottom: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}

.hx-asset-row:last-of-type {
  margin-bottom: 0;
}

.hx-asset-row:hover {
  background: rgba(255,255,255,0.06);
}

.hx-asset-row__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hx-asset-row__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-asset-row__name {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: #CBD5E1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hx-asset-row__sub {
  font-family: var(--font);
  font-size: 11px;
  color: #475569;
  margin-top: 2px;
}

.hx-asset-row__age {
  font-family: var(--font);
  font-size: 12px;
  color: #475569;
  white-space: nowrap;
}


.hx-asset-register__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}


.hx-asset-summary-item {
  text-align: center;
}

.hx-asset-summary-item__val {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.hx-asset-summary-item__label {
  font-family: var(--font);
  font-size: 11px;
  color: #475569;
  margin-top: 3px;
}


/* ========================================================
   HX: Page — IT Support Management
   ======================================================== */

Manager profile card */ .hx-manager-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}


.hx-manager-card__header {
  background: var(--bg-dark);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hx-manager-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(10,110,255,0.2);
  border: 1px solid rgba(10,110,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hx-manager-card__avatar svg {
  width: 26px;
  height: 26px;
  stroke: #60A5FA;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-manager-card__name {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.hx-manager-card__role {
  font-family: var(--font);
  font-size: 12px;
  color: #60A5FA;
  margin-top: 3px;
}

.hx-manager-card__status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 12px;
  color: #34D399;
}

.hx-manager-card__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  animation: hx-blink 2s ease-in-out infinite;
}

.hx-manager-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.hx-manager-task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.15s;
}

.hx-manager-task:hover {
  box-shadow: var(--shadow-sm);
}

.hx-manager-task__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hx-manager-task__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hx-manager-task__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-manager-task__title {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.hx-manager-task__time {
  font-family: var(--font);
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}


REPORTING SECTION ══════════════════════════════ */ .hx-reporting {
  padding: 90px 24px;
  background: var(--bg-dark);
}


.hx-reporting__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.hx-reporting__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}


Dashboard mock */ .hx-dashboard {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}


.hx-dashboard__topbar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hx-dashboard__topbar-title {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: #94A3B8;
}

.hx-dashboard__topbar-period {
  font-family: var(--font);
  font-size: 11px;
  color: #475569;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 4px 10px;
  border-radius: 100px;
}

.hx-dashboard__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hx-dashboard__kpi {
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.hx-dashboard__kpi:last-child {
  border-right: none;
}

.hx-dashboard__kpi-label {
  font-family: var(--font);
  font-size: 11px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.hx-dashboard__kpi-val {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.hx-dashboard__kpi-delta {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
}


Bar chart area */ .hx-dashboard__chart {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}


.hx-dashboard__chart-label {
  font-family: var(--font);
  font-size: 11px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}


SLA rows */ .hx-dashboard__sla {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.hx-reporting__copy p {
  font-family: var(--font);
  font-size: 16px;
  color: #94A3B8;
  line-height: 1.78;
  margin-bottom: 18px;
}


.hx-cadence-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 36px;
}


.hx-cadence-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.hx-cadence-item__freq {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #60A5FA;
  background: rgba(10,110,255,0.12);
  border: 1px solid rgba(10,110,255,0.2);
  border-radius: 6px;
  padding: 5px 10px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 1px;
}

.hx-cadence-item__title {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 4px;
}

.hx-cadence-item__desc {
  font-family: var(--font);
  font-size: 13px;
  color: #64748B;
  line-height: 1.55;
}


/* ========================================================
   HX: Page — Endpoint & Device Management
   ======================================================== */

Device Fleet Panel ── */ .hx-fleet-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}


.hx-fleet-panel__topbar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}

.hx-fleet-panel__title {
  font-family: var(--font); font-size: 12px; font-weight: 600; color: #64748B; text-transform: uppercase; letter-spacing: 0.07em;
}

.hx-fleet-panel__live {
  display: flex; align-items: center; gap: 7px; font-family: var(--font); font-size: 11px; color: #34D399;
}


.hx-fleet-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,0.2); animation: hx-blink 2s ease-in-out infinite;
}


.hx-fleet-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hx-fleet-summary__cell {
  padding: 16px 18px;
  border-right: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.hx-fleet-summary__cell:last-child {
  border-right: none;
}

.hx-fleet-summary__val {
  font-family: var(--font); font-size: 22px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
}

.hx-fleet-summary__label {
  font-family: var(--font); font-size: 11px; color: #475569;
}


.hx-fleet-devices {
  padding: 14px 16px; display: flex; flex-direction: column; gap: 8px;
}


.hx-device-row {
  display: grid;
  grid-template-columns: 34px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: background 0.15s;
}

.hx-device-row:hover {
  background: rgba(255,255,255,0.06);
}

.hx-device-row__icon {
  width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hx-device-row__icon svg {
  width: 16px; height: 16px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.hx-device-row__name {
  font-family: var(--font); font-size: 13px; font-weight: 600; color: #CBD5E1; line-height: 1.2;
}

.hx-device-row__user {
  font-family: var(--font); font-size: 11px; color: #475569; margin-top: 2px;
}

.hx-device-row__patch {
  font-family: var(--font); font-size: 11px; color: #475569; white-space: nowrap;
}


.hx-fleet-panel__footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}


.hx-fleet-legend {
  display: flex; align-items: center; gap: 7px; justify-content: center;
}

.hx-fleet-legend__dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}

.hx-fleet-legend__text {
  font-family: var(--font); font-size: 11px; color: #475569;
}


.hx-security-scores {
  padding: 20px 28px; display: flex; flex-direction: column; gap: 14px;
}


.hx-fill--green {
  background: #10B981;
}

.hx-fill--blue {
  background: var(--primary);
}

.hx-fill--teal {
  background: #06B6D4;
}

.hx-fill--violet {
  background: #8B5CF6;
}


.hx-device-types {
  padding: 20px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}


.hx-device-type {
  display: flex; align-items: center; gap: 10px;
}

.hx-device-type__icon {
  width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hx-device-type__icon svg {
  width: 15px; height: 15px; fill: none; stroke: #60A5FA; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.hx-device-type__name {
  font-family: var(--font); font-size: 12px; color: #64748B;
}

.hx-device-type__count {
  font-family: var(--font); font-size: 12px; font-weight: 700; color: #94A3B8; margin-top: 1px;
}


.hx-cov-cell {
  text-align: center;
}

.hx-cov-cell__val {
  font-size: 15px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.02em;
}

.hx-cov-cell__label {
  font-size: 10px; color: #334155; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.05em;
}


Left: cards */ .hx-benefit-stack {
  display: flex; flex-direction: column; gap: 16px;
}

Right: dark security posture panel */ .hx-posture-panel {
  background: var(--bg-dark); border: 1px solid rgba(10,110,255,0.14); border-radius: var(--radius-lg); overflow: hidden;
}


.hx-posture-panel__header {
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between;
}

.hx-posture-panel__title {
  font-family: var(--font); font-size: 13px; font-weight: 700; color: #FFFFFF;
}

.hx-posture-panel__badge {
  font-family: var(--font); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; background: rgba(16,185,129,0.1); color: #34D399; border: 1px solid rgba(16,185,129,0.2);
}


Posture score big display */ .hx-posture-score {
  padding: 28px 24px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(10,110,255,0.03); position: relative;
}


.hx-posture-score::before {
  content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 80%, rgba(10,110,255,0.06) 0%, transparent 100%); pointer-events: none;
}

.hx-posture-score__grade {
  font-family: var(--font); font-size: 72px; font-weight: 900; color: #FFFFFF; letter-spacing: -0.05em; line-height: 1; position: relative; z-index: 1;
}

.hx-posture-score__grade span {
  color: var(--primary);
}

.hx-posture-score__label {
  font-family: var(--font); font-size: 14px; color: #34D399; font-weight: 600; margin-top: 6px; position: relative; z-index: 1;
}

.hx-posture-score__sub {
  font-family: var(--font); font-size: 12px; color: #475569; margin-top: 4px; position: relative; z-index: 1;
}


Posture metrics */ .hx-posture-metrics {
  padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.05);
}


.hx-posture-metric {
  display: flex; align-items: center; gap: 10px;
}

.hx-posture-metric__label {
  font-family: var(--font); font-size: 12px; color: #64748B; width: 130px; flex-shrink: 0;
}

.hx-posture-metric__bar {
  flex: 1; height: 5px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden;
}

.hx-posture-metric__fill {
  height: 100%; border-radius: 100px;
}


.hx-fill-green {
  background: #10B981;
}


.hx-fill-blue {
  background: var(--primary);
}


.hx-fill-violet {
  background: var(--violet);
}


.hx-fill-teal {
  background: var(--teal);
}


.hx-posture-metric__val {
  font-family: var(--font); font-size: 12px; font-weight: 700; color: #CBD5E1; width: 32px; text-align: right; flex-shrink: 0;
}


Posture checklist */ .hx-posture-checks {
  padding: 14px 20px; display: flex; flex-direction: column; gap: 8px;
}


/* ========================================================
   HX: Page — Managed Servers & Infrastructure
   ======================================================== */

Infrastructure Console Panel ── */ .hx-infra-console {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font);
}


.hx-infra-console__bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
}

.hx-infra-console__bar-dots {
  display: flex; gap: 6px;
}

.hx-infra-console__bar-dot {
  width: 10px; height: 10px; border-radius: 50%;
}

.hx-infra-console__bar-title {
  font-size: 12px; font-weight: 600; color: #475569; letter-spacing: 0.05em;
}

.hx-infra-console__bar-time {
  font-size: 11px; color: #334155;
}


Uptime row */ .hx-infra-uptime {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}


.hx-infra-uptime__label {
  font-size: 12px; color: #475569; text-transform: uppercase; letter-spacing: 0.07em;
}

.hx-infra-uptime__track {
  flex: 1; display: flex; gap: 2px;
}


.hx-uptime-block {
  height: 18px; flex: 1; border-radius: 2px; background: rgba(16,185,129,0.7);
}

.hx-uptime-block--issue {
  background: rgba(239,68,68,0.6);
}

.hx-uptime-block--partial {
  background: rgba(245,158,11,0.6);
}


.hx-infra-uptime__pct {
  font-size: 13px; font-weight: 700; color: #34D399; white-space: nowrap;
}


Server rows */ .hx-server-list {
  padding: 12px 14px; display: flex; flex-direction: column; gap: 7px;
}


.hx-server-row {
  display: grid;
  grid-template-columns: 28px 1fr 56px 56px 56px 70px;
  align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  transition: background 0.15s;
}

.hx-server-row:hover {
  background: rgba(255,255,255,0.05);
}

.hx-server-row__indicator {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin: auto;
}


.hx-ind--online {
  background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,0.2); animation: hx-pulse-dot 2s ease-in-out infinite;
}

.hx-ind--warn {
  background: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
}

.hx-ind--patching {
  background: #0A6EFF; box-shadow: 0 0 0 3px rgba(10,110,255,0.2);
}


.hx-server-row__info {
  min-width: 0;
}

.hx-server-row__name {
  font-size: 12px; font-weight: 600; color: #CBD5E1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.hx-server-row__type {
  font-size: 10px; color: #475569; margin-top: 2px;
}

.hx-server-row__metric {
  text-align: right;
}

.hx-server-row__metric-val {
  font-size: 12px; font-weight: 700; color: #94A3B8;
}

.hx-server-row__metric-label {
  font-size: 10px; color: #334155; margin-top: 1px;
}


.hx-server-badge {
  font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 100px; white-space: nowrap;
}


.hx-sbadge--ok {
  background: rgba(16,185,129,0.1); color: #34D399; border: 1px solid rgba(16,185,129,0.2);
}

.hx-sbadge--warn {
  background: rgba(245,158,11,0.1); color: #FCD34D; border: 1px solid rgba(245,158,11,0.2);
}

.hx-sbadge--patching {
  background: rgba(10,110,255,0.1); color: #60A5FA; border: 1px solid rgba(10,110,255,0.2);
}


Console footer metrics */ .hx-infra-console__metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.05);
}


.hx-deploy-card {
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hx-deploy-card:hover {
  border-color: rgba(10,110,255,0.2); box-shadow: var(--shadow-sm);
}

.hx-deploy-card--cloud {
  background: linear-gradient(135deg, #F0F7FF 0%, #EEF4FF 100%);
}

.hx-deploy-card--onprem {
  background: linear-gradient(135deg, #F7F9FC 0%, #F1F5F9 100%);
}

.hx-deploy-card__icon {
  width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}

.hx-deploy-card__icon svg {
  width: 20px; height: 20px; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}

.hx-deploy-card__title {
  font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px;
}

.hx-deploy-card__desc {
  font-family: var(--font); font-size: 13px; color: var(--text-secondary); line-height: 1.55;
}

.hx-deploy-card__list {
  list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 5px;
}

.hx-deploy-card__list li {
  font-family: var(--font); font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 7px;
}

.hx-deploy-card__list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); flex-shrink: 0;
}


Right: dark panel */ .hx-infra-health {
  background: var(--bg-dark);
  border: 1px solid rgba(10,110,255,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
}


.hx-infra-health__header {
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}

.hx-infra-health__title {
  font-family: var(--font); font-size: 13px; font-weight: 700; color: #FFFFFF;
}

.hx-infra-health__live {
  display: flex; align-items: center; gap: 7px; font-family: var(--font); font-size: 11px; color: #34D399;
}


SVG ring */ .hx-ring-svg {
  width: 64px; height: 64px; margin: 0 auto 10px;
}


.hx-ring-bg {
  fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 5;
}


.hx-ring-fill {
  fill: none; stroke-width: 5; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%;
}


Alert log */ .hx-alert-log {
  padding: 14px 18px; display: flex; flex-direction: column; gap: 8px;
}


.hx-alert-row {
  display: flex; align-items: flex-start; gap: 12px; padding: 10px 12px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px;
}


.hx-alert-pip {
  width: 8px; height: 8px; border-radius: 50%; margin-top: 4px; flex-shrink: 0;
}

.hx-alert-pip--green {
  background: #10B981;
}

.hx-alert-pip--blue {
  background: var(--primary);
}

.hx-alert-pip--amber {
  background: #F59E0B;
}


.hx-alert-msg {
  font-family: var(--font); font-size: 12px; color: #94A3B8; line-height: 1.45; flex: 1;
}


.hx-alert-time {
  font-family: var(--font); font-size: 11px; color: #334155; white-space: nowrap;
}


/* ========================================================
   HX: Page — Basic Cyber Security
   ======================================================== */

Threat Monitor Panel ── */ .hx-threat-panel {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font);
}


.hx-threat-panel__bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
}

.hx-threat-panel__bar-left {
  display: flex; align-items: center; gap: 10px;
}


.hx-shield-icon {
  width: 26px; height: 26px; background: rgba(16,185,129,0.15); border-radius: 7px; display: flex; align-items: center; justify-content: center;
}

.hx-shield-icon svg {
  width: 14px; height: 14px; stroke: #34D399; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}


.hx-threat-panel__bar-title {
  font-size: 12px; font-weight: 600; color: #64748B; letter-spacing: 0.05em; text-transform: uppercase;
}

.hx-threat-panel__bar-status {
  display: flex; align-items: center; gap: 6px; font-size: 11px; color: #34D399; font-weight: 600;
}


Threat score */ .hx-threat-score {
  padding: 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 20px;
}


.hx-score-dial {
  position: relative; width: 72px; height: 72px; flex-shrink: 0;
}

.hx-score-dial svg {
  width: 72px; height: 72px;
}

.hx-score-dial__bg {
  fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 6;
}

.hx-score-dial__fill {
  fill: none; stroke-width: 6; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%;
}

.hx-score-dial__label {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.hx-score-dial__num {
  font-size: 18px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.03em; line-height: 1;
}

.hx-score-dial__sub {
  font-size: 9px; color: #475569; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.05em;
}


.hx-threat-score__detail {
  flex: 1;
}

.hx-threat-score__heading {
  font-size: 13px; font-weight: 700; color: #E2E8F0; margin-bottom: 4px;
}

.hx-threat-score__sub {
  font-size: 12px; color: #475569; line-height: 1.5;
}

.hx-threat-score__trend {
  margin-top: 8px; display: flex; align-items: center; gap: 6px;
}


Threat events feed */ .hx-threat-feed {
  padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; border-bottom: 1px solid rgba(255,255,255,0.05);
}


.hx-threat-feed__label {
  font-size: 10px; font-weight: 700; color: #334155; text-transform: uppercase; letter-spacing: 0.08em; padding: 0 4px; margin-bottom: 4px;
}


.hx-threat-event {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; transition: background 0.15s;
}

.hx-threat-event:hover {
  background: rgba(255,255,255,0.05);
}

.hx-threat-event__sev {
  width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hx-threat-event__sev svg {
  width: 11px; height: 11px; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}


.hx-sev--blocked {
  background: rgba(16,185,129,0.12);
}

.hx-sev--blocked svg {
  stroke: #34D399;
}

.hx-sev--warn {
  background: rgba(245,158,11,0.12);
}

.hx-sev--warn svg {
  stroke: #FCD34D;
}

.hx-sev--info {
  background: rgba(10,110,255,0.1);
}

.hx-sev--info svg {
  stroke: #60A5FA;
}


.hx-threat-event__msg {
  font-size: 11px; color: #94A3B8; line-height: 1.4; flex: 1;
}

.hx-threat-event__msg strong {
  color: #CBD5E1; font-weight: 600;
}

.hx-threat-event__time {
  font-size: 10px; color: #334155; white-space: nowrap;
}


Risk reality callout */ .hx-risk-callout {
  background: linear-gradient(135deg, rgba(239,68,68,0.06) 0%, rgba(245,158,11,0.04) 100%);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 32px;
  display: flex; gap: 16px; align-items: flex-start;
}


.hx-risk-callout__icon {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(239,68,68,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hx-risk-callout__icon svg {
  width: 20px; height: 20px; stroke: #F87171; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.hx-risk-callout h4 {
  font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 5px;
}

.hx-risk-callout p {
  font-family: var(--font); font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin: 0;
}


.hx-area-pillar {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.hx-area-pillar__header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}

.hx-area-pillar--endpoint .hx-area-pillar__header {
  background: linear-gradient(135deg, #F0F7FF 0%, #EEF4FF 100%); border-color: rgba(10,110,255,0.12);
}

.hx-area-pillar--vuln .hx-area-pillar__header {
  background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 40%, #F7F9FC 100%); border-color: rgba(245,158,11,0.15);
}

.hx-area-pillar__header-top {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px;
}

.hx-area-pillar__icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hx-area-pillar--endpoint .hx-area-pillar__icon {
  background: rgba(10,110,255,0.12);
}

.hx-area-pillar--vuln .hx-area-pillar__icon {
  background: rgba(245,158,11,0.12);
}

.hx-area-pillar__icon svg {
  width: 26px; height: 26px; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}

.hx-area-pillar--endpoint .hx-area-pillar__icon svg {
  stroke: var(--primary);
}

.hx-area-pillar--vuln .hx-area-pillar__icon svg {
  stroke: #D97706;
}

.hx-area-pillar__heading {
  font-family: var(--font); font-size: 20px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; margin-bottom: 5px;
}

.hx-area-pillar__sub {
  font-family: var(--font); font-size: 14px; color: var(--text-secondary); line-height: 1.55;
}

.hx-area-pillar__badge {
  display: inline-block; font-family: var(--font); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px;
}

.hx-area-pillar--endpoint .hx-area-pillar__badge {
  background: rgba(10,110,255,0.1); color: var(--primary); border: 1px solid rgba(10,110,255,0.2);
}

.hx-area-pillar--vuln .hx-area-pillar__badge {
  background: rgba(245,158,11,0.1); color: #D97706; border: 1px solid rgba(245,158,11,0.2);
}


Feature items inside pillar */ .hx-area-pillar__items {
  padding: 24px; display: flex; flex-direction: column; gap: 12px; background: var(--bg-white);
}


.hx-area-item {
  display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-soft); transition: all 0.2s ease;
}

.hx-area-item:hover {
  border-color: rgba(10,110,255,0.18); box-shadow: var(--shadow-sm); background: var(--bg-white); transform: translateX(3px);
}

.hx-area-item__dot-wrap {
  display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
}

.hx-area-item__dot-wrap svg {
  width: 16px; height: 16px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}


.hx-area-pillar--endpoint .hx-area-item__dot-wrap {
  background: var(--primary-light);
}

.hx-area-pillar--endpoint .hx-area-item__dot-wrap svg {
  stroke: var(--primary);
}

.hx-area-pillar--vuln .hx-area-item__dot-wrap {
  background: rgba(245,158,11,0.1);
}

.hx-area-pillar--vuln .hx-area-item__dot-wrap svg {
  stroke: #D97706;
}


.hx-area-item__title {
  font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px;
}

.hx-area-item__desc {
  font-family: var(--font); font-size: 13px; color: var(--text-secondary); line-height: 1.55;
}


/* ========================================================
   HX: Animations & Keyframes
   ======================================================== */

@keyframes hx-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(59,130,246,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(59,130,246,0.1); }
}

@keyframes hx-blink {
  0%,100%{opacity:1} 50%{opacity:0.3}
}

@keyframes hx-pulse-dot {
  0%,100%{ box-shadow: 0 0 0 3px rgba(16,185,129,0.2); } 50%{ box-shadow: 0 0 0 6px rgba(16,185,129,0.07); }
}


/* ========================================================
   HX: Responsive
   ======================================================== */

@media (max-width: 1080px) {
  .hx-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hx-service-card--featured {
    grid-column: span 2;
  }

  .hx-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 960px) {
  .hx-services-grid {
    grid-template-columns: 1fr; gap: 20px;
  }

  .hx-about-grid {
    grid-template-columns: 1fr; gap: 48px;
  }

  .hx-why-grid {
    grid-template-columns: 1fr;
  }

  .hx-process-grid {
    grid-template-columns: 1fr; gap: 40px;
  }

  .hx-process-grid::before {
    display: none;
  }

  .hx-footer__inner {
    grid-template-columns: 1fr 1fr; gap: 36px;
  }

  .hx-nav__links {
    display: none;
  }

  .hx-hero__dash-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hx-cta__inner {
    grid-template-columns: 1fr; text-align: center; padding: 56px 36px;
  }

  .hx-cta p {
    margin: 0 auto;
  }

  .hx-hero__inner {
    grid-template-columns: 1fr; gap: 48px;
  }

  .hx-overview-grid {
    grid-template-columns: 1fr; gap: 48px;
  }

  .hx-features-grid {
    grid-template-columns: 1fr;
  }

  .hx-benefits-grid {
    grid-template-columns: 1fr;
  }

  .hx-overview-layout {
    grid-template-columns: 1fr; gap: 48px;
  }

  .hx-process-track {
    grid-template-columns: 1fr; gap: 40px;
  }

  .hx-process-track::before {
    display: none;
  }

  .hx-benefits-layout {
    grid-template-columns: 1fr; gap: 48px;
  }

  .hx-hero__trust-bar {
    flex-wrap: wrap;
  }

  .hx-hero__trust-item {
    border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); width: 50%;
  }

  .hx-reporting__layout {
    grid-template-columns: 1fr; gap: 48px;
  }

  .hx-features-row-top {
    grid-template-columns: 1fr;
  }

  .hx-features-row-bottom {
    grid-template-columns: 1fr;
  }

  .hx-feature-card--wide .hx-feature-card__body {
    flex-direction: column; gap: 16px;
  }

  .hx-feat-row-a {
    grid-template-columns: 1fr;
  }

  .hx-feature-card--wide .hx-feature-card__inner {
    flex-direction: column; gap: 16px;
  }

  .hx-feat-row-b {
    grid-template-columns: 1fr;
  }

  .hx-areas-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {
  .hx-cta__inner {
    padding: 56px 28px;
  }

  .hx-footer__inner {
    grid-template-columns: 1fr;
  }

  .hx-footer__bottom {
    flex-direction: column; text-align: center;
  }

  .hx-services-grid {
    grid-template-columns: 1fr;
  }

  .hx-service-card--featured {
    grid-column: span 1; flex-direction: column;
  }

  .hx-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hx-hero__dash-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hx-hero__proof {
    gap: 16px;
  }

  .hx-hero__proof-sep {
    display: none;
  }

  .hx-how-step {
    grid-template-columns: 48px 1fr; gap: 20px;
  }

  .hx-how-step__circle {
    width: 48px; height: 48px;
  }

  .hx-how-step:not(:last-child) .hx-how-step__track::after {
    left: 23px;
  }

  .hx-overview__stats {
    grid-template-columns: 1fr 1fr;
  }

  .hx-process-step {
    padding: 0 12px;
  }

  .hx-hero__trust-item {
    width: 100%;
  }

  .hx-overview__pillars {
    grid-template-columns: 1fr;
  }

  .hx-fleet-panel__footer {
    grid-template-columns: 1fr 1fr; gap: 6px;
  }

  .hx-overview-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hx-device-types {
    grid-template-columns: 1fr;
  }

  .hx-deploy-split {
    grid-template-columns: 1fr;
  }

  .hx-ov-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hx-infra-console__metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .hx-health-rings {
    grid-template-columns: repeat(3, 1fr);
  }

  .hx-coverage-bar {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ========================================================
   HX: Structural Container Stubs
   Layout-only wrappers with no decorative styling
   ======================================================== */

/* Footer brand column (first grid cell) */
.hx-footer__brand {
  display: flex;
  flex-direction: column;
}

/* About section copy side */
.hx-about__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
